fog-openstack 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/CHANGELOG.md +6 -0
- data/docs/workflow.md +3 -3
- data/lib/fog/openstack/orchestration/requests/create_stack.rb +1 -1
- data/lib/fog/openstack/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 60df404a7112f335ae1d54d646cd5b4eeac67bd5c739ffb7bd8fe3403eb23e9c
|
|
4
|
+
data.tar.gz: 9c5f40f90aa76083a071769eb62f6540dee3707a12b594c4d32af6311ede1df9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 717305f84a235ae68b7f0741374d141b6dc924956e5992775ba4bb7658bdc2c5a96a1972962b5528e37bebf744a628e8ede64eec34bfa6d26cdbc5b90bc9ef92
|
|
7
|
+
data.tar.gz: 264fc7d430fe1ecef407959e0463daa07ace4ad86477c1e7f0a3e1c2ef12d43bdc03440ccf46fa49d3a47e1cacf79fc09991206ad660d18ad78ea3a77036730c
|
data/.github/workflows/ci.yml
CHANGED
data/CHANGELOG.md
CHANGED
data/docs/workflow.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
This document explains how to get started using OpenStack Workflow (Mistral) with Fog. It assumes you have read the [Getting Started with Fog and the OpenStack](getting_started.md) document.
|
|
4
4
|
|
|
5
|
-
Fog uses the [OpenStack Mistral API](http://docs.openstack.org/
|
|
5
|
+
Fog uses the [OpenStack Mistral API](http://docs.openstack.org/mistral/latest/user/rest_api_v2.html).
|
|
6
6
|
|
|
7
7
|
## Workflow Service
|
|
8
8
|
|
|
@@ -125,7 +125,7 @@ https://github.com/fog/fog-openstack/tree/master/examples/workflow/workflow-exam
|
|
|
125
125
|
## Additional Resources
|
|
126
126
|
|
|
127
127
|
* [Mistral Wiki](https://wiki.openstack.org/wiki/Mistral)
|
|
128
|
-
* [Mistral DSL v2](http://docs.openstack.org/
|
|
129
|
-
* [Mistral API v2](http://docs.openstack.org/
|
|
128
|
+
* [Mistral DSL v2](http://docs.openstack.org/mistral/ocata/dsl/dsl_v2.html)
|
|
129
|
+
* [Mistral API v2](http://docs.openstack.org/mistral/latest/user/rest_api_v2.html)
|
|
130
130
|
* [Mistral python client](https://github.com/openstack/python-mistralclient) Can be useful to see how to interact with the API.
|
|
131
131
|
* [more resources and feedback](common/resources.md)
|
|
@@ -37,7 +37,7 @@ module Fog
|
|
|
37
37
|
# and replaces it with :template.
|
|
38
38
|
# see https://github.com/openstack-infra/shade/blob/master/shade/openstackcloud.py#L1201
|
|
39
39
|
# see https://developer.openstack.org/api-ref/orchestration/v1/index.html#create-stack
|
|
40
|
-
file_resolver =
|
|
40
|
+
file_resolver = OrchestrationUtil::RecursiveHotFileLoader.new(options[:template] || options[:template_url], options[:files])
|
|
41
41
|
options[:template] = file_resolver.template
|
|
42
42
|
options[:files] = file_resolver.files unless file_resolver.files.empty?
|
|
43
43
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fog-openstack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Darby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fog-core
|
|
@@ -1454,7 +1454,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1454
1454
|
- !ruby/object:Gem::Version
|
|
1455
1455
|
version: '0'
|
|
1456
1456
|
requirements: []
|
|
1457
|
-
rubygems_version: 3.
|
|
1457
|
+
rubygems_version: 3.5.18
|
|
1458
1458
|
signing_key:
|
|
1459
1459
|
specification_version: 4
|
|
1460
1460
|
summary: OpenStack fog provider gem
|