kitchen-vro 1.0.0 → 1.2.2
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 +5 -5
- data/.github/CODEOWNERS +1 -0
- data/.github/workflows/lint.yaml +9 -0
- data/.github/workflows/publish.yaml +32 -0
- data/.markdownlint.yaml +5 -0
- data/.release-please-manifest.json +3 -0
- data/.rubocop.yml +10 -14
- data/CHANGELOG.md +43 -0
- data/Gemfile +11 -1
- data/README.md +24 -18
- data/Rakefile +14 -4
- data/kitchen-vro.gemspec +11 -17
- data/lib/kitchen/driver/{vro_version.rb → version.rb} +1 -1
- data/lib/kitchen/driver/vro.rb +15 -15
- data/release-please-config.json +12 -0
- data/renovate.json +8 -0
- data/spec/vro_spec.rb +4 -3
- metadata +24 -74
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: a1a6899da676fb0df64521fdb9d7cee84203814ee7c39c72fcac972ff560b94b
|
|
4
|
+
data.tar.gz: e657a749324c80812ce60c376105be7466a320b8a048559316685f1b1b770349
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e0ddc75df599792061715375990fbca7a536a6f43daf481282165f877ba7ede51f2d7275a1d7bf646d5d9d4f86d76c7dbce8a75c0ed4d8f15fe10ee8b7995d5
|
|
7
|
+
data.tar.gz: 428309a5ea9fa075bc53c8c93acec33226a0936afcfed0fcd4a46259a8d13535eddde664878174f13e1bf331ac3207de5eab0c4b36ced5b18257624f757d1205
|
data/.github/CODEOWNERS
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@test-kitchen/maintainers
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: release-please
|
|
3
|
+
|
|
4
|
+
"on":
|
|
5
|
+
push:
|
|
6
|
+
branches: [main]
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
release-please:
|
|
10
|
+
runs-on: ubuntu-latest
|
|
11
|
+
steps:
|
|
12
|
+
- uses: googleapis/release-please-action@v4
|
|
13
|
+
id: release
|
|
14
|
+
with:
|
|
15
|
+
token: ${{ secrets.PORTER_GITHUB_TOKEN }}
|
|
16
|
+
|
|
17
|
+
- name: Checkout
|
|
18
|
+
uses: actions/checkout@v4
|
|
19
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
20
|
+
|
|
21
|
+
- name: Build and publish to GitHub Package
|
|
22
|
+
uses: actionshub/publish-gem-to-github@main
|
|
23
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
24
|
+
with:
|
|
25
|
+
token: ${{ secrets.GITHUB_TOKEN }}
|
|
26
|
+
owner: ${{ secrets.OWNER }}
|
|
27
|
+
|
|
28
|
+
- name: Build and publish to RubyGems
|
|
29
|
+
uses: actionshub/publish-gem-to-rubygems@main
|
|
30
|
+
if: ${{ steps.release.outputs.release_created }}
|
|
31
|
+
with:
|
|
32
|
+
token: ${{ secrets.RUBYGEMS_API_KEY }}
|
data/.markdownlint.yaml
ADDED
data/.rubocop.yml
CHANGED
|
@@ -1,14 +1,10 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
Style/SignalException:
|
|
12
|
-
Enabled: false
|
|
13
|
-
Style/SpaceInsideBrackets:
|
|
14
|
-
Enabled: false
|
|
1
|
+
---
|
|
2
|
+
require:
|
|
3
|
+
- chefstyle
|
|
4
|
+
|
|
5
|
+
AllCops:
|
|
6
|
+
Include:
|
|
7
|
+
- "**/*.rb"
|
|
8
|
+
Exclude:
|
|
9
|
+
- "vendor/**/*"
|
|
10
|
+
- "spec/**/*"
|
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# VRO Changelog
|
|
2
|
+
|
|
3
|
+
## [1.2.2](https://github.com/test-kitchen/kitchen-vro/compare/v1.2.1...v1.2.2) (2024-06-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* release please deprecation ([#25](https://github.com/test-kitchen/kitchen-vro/issues/25)) ([2fc4da5](https://github.com/test-kitchen/kitchen-vro/commit/2fc4da56e566b52d631f5ccbf661131f14609c13))
|
|
9
|
+
|
|
10
|
+
## [1.2.1](https://github.com/test-kitchen/kitchen-vro/compare/v1.2.1...v1.2.1) (2024-06-09)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* update workflows ([#15](https://github.com/test-kitchen/kitchen-vro/issues/15)) ([277a0ab](https://github.com/test-kitchen/kitchen-vro/commit/277a0aba28a50b99272962973a589898dd144fad))
|
|
16
|
+
* Workflows ([#10](https://github.com/test-kitchen/kitchen-vro/issues/10)) ([3f51d13](https://github.com/test-kitchen/kitchen-vro/commit/3f51d13a5afc683f6f3c1c4816f37ec0c65c4d63))
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Miscellaneous Chores
|
|
20
|
+
|
|
21
|
+
* bump verion to 1.2.1 ([#22](https://github.com/test-kitchen/kitchen-vro/issues/22)) ([498f90f](https://github.com/test-kitchen/kitchen-vro/commit/498f90ff6618b643795d29adbc120c5b4dc4fb26))
|
|
22
|
+
* release 1.2.0 ([#18](https://github.com/test-kitchen/kitchen-vro/issues/18)) ([3356c6f](https://github.com/test-kitchen/kitchen-vro/commit/3356c6f22b91c02283ec4d31a7ac6179ecd27876))
|
|
23
|
+
|
|
24
|
+
## [1.2.0](https://github.com/test-kitchen/kitchen-vro/compare/v1.2.0...v1.2.0) (2024-04-10)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Miscellaneous Chores
|
|
28
|
+
|
|
29
|
+
* release 1.2.0 ([#18](https://github.com/test-kitchen/kitchen-vro/issues/18)) ([3356c6f](https://github.com/test-kitchen/kitchen-vro/commit/3356c6f22b91c02283ec4d31a7ac6179ecd27876))
|
|
30
|
+
|
|
31
|
+
## [1.2.0](https://github.com/test-kitchen/kitchen-vro/compare/v1.1.0...v1.2.0) (2024-02-28)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* update workflows ([#15](https://github.com/test-kitchen/kitchen-vro/issues/15)) ([277a0ab](https://github.com/test-kitchen/kitchen-vro/commit/277a0aba28a50b99272962973a589898dd144fad))
|
|
37
|
+
|
|
38
|
+
## [1.1.0](https://github.com/test-kitchen/kitchen-vro/compare/v1.0.0...v1.1.0) (2023-11-27)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
### Features
|
|
42
|
+
|
|
43
|
+
* Workflows ([#10](https://github.com/test-kitchen/kitchen-vro/issues/10)) ([3f51d13](https://github.com/test-kitchen/kitchen-vro/commit/3f51d13a5afc683f6f3c1c4816f37ec0c65c4d63))
|
data/Gemfile
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
|
-
# Specify your gem's dependencies in kitchen-vro.gemspec
|
|
4
3
|
gemspec
|
|
4
|
+
|
|
5
|
+
group :test do
|
|
6
|
+
gem 'bundler'
|
|
7
|
+
gem 'rake'
|
|
8
|
+
gem 'rspec', '~> 3.2'
|
|
9
|
+
gem 'webmock', '~> 3.0'
|
|
10
|
+
end
|
|
11
|
+
|
|
12
|
+
group :chefstyle do
|
|
13
|
+
gem 'chefstyle', '~> 2.2', '>= 2.2.3'
|
|
14
|
+
end
|
data/README.md
CHANGED
|
@@ -19,15 +19,21 @@ gem 'kitchen-vro'
|
|
|
19
19
|
|
|
20
20
|
And then execute:
|
|
21
21
|
|
|
22
|
-
|
|
22
|
+
```shell
|
|
23
|
+
bundle
|
|
24
|
+
```
|
|
23
25
|
|
|
24
26
|
Or install it yourself as:
|
|
25
27
|
|
|
26
|
-
|
|
28
|
+
```shell
|
|
29
|
+
gem install kitchen-vro
|
|
30
|
+
```
|
|
27
31
|
|
|
28
32
|
Or even better, install it via ChefDK:
|
|
29
33
|
|
|
30
|
-
|
|
34
|
+
```shell
|
|
35
|
+
chef gem install kitchen-vro
|
|
36
|
+
```
|
|
31
37
|
|
|
32
38
|
## Usage
|
|
33
39
|
|
|
@@ -43,21 +49,21 @@ driver:
|
|
|
43
49
|
|
|
44
50
|
Additionally, the following parameters are required, either globally or per-platform:
|
|
45
51
|
|
|
46
|
-
|
|
47
|
-
|
|
52
|
+
* **create_workflow_name**: The name of the vRO workflow to execute to create a server.
|
|
53
|
+
* **destroy_workflow_name**: The name of the vRO workflow to execute to destroy a server.
|
|
48
54
|
|
|
49
55
|
There are a number of optional parameters you can configure as well:
|
|
50
56
|
|
|
51
|
-
|
|
57
|
+
* **create_workflow_id**: If your create workflow name is not unique within vRO, you can use
|
|
52
58
|
this parameter to specify the workflow unique ID.
|
|
53
|
-
|
|
59
|
+
* **destroy_workflow_id**: If your destroy workflow name is not unique within vRO, you can use
|
|
54
60
|
this parameter to specify the workflow unique ID.
|
|
55
|
-
|
|
61
|
+
* **create_workflow_parameters**: A hash of key-value pairs of parameters to pass to your
|
|
56
62
|
create workflow.
|
|
57
|
-
|
|
63
|
+
* **destroy_workflow_parameters**: A hash of key-value pairs of parameters to pass to your
|
|
58
64
|
destroy workflow.
|
|
59
|
-
|
|
60
|
-
|
|
65
|
+
* **request_timeout**: Number of seconds to wait for a vRO workflow to execute. Default: 300
|
|
66
|
+
* **vro_disable_ssl_verify**: Disable SSL validation. Default: false
|
|
61
67
|
|
|
62
68
|
An example `.kitchen.yml` that uses a combination of global and per-platform
|
|
63
69
|
settings might look like this:
|
|
@@ -93,20 +99,20 @@ they must meet the following requirements.
|
|
|
93
99
|
|
|
94
100
|
### Create Workflow
|
|
95
101
|
|
|
96
|
-
|
|
102
|
+
* Must contain an output parameter called `ip_address` that Test Kitchen can
|
|
97
103
|
connect to in order to bootstrap and test your node.
|
|
98
|
-
|
|
104
|
+
* Must contain an output parameter called `server_id` that is a unique ID of
|
|
99
105
|
the server created. Test Kitchen will provide this value to the Destroy
|
|
100
106
|
Workflow in order to request the destruction of the server once testing is
|
|
101
107
|
complete.
|
|
102
|
-
|
|
108
|
+
* Must end the workflow with a raised exception if the creation did not
|
|
103
109
|
succeed. The workflow status must not be 'completed.'
|
|
104
110
|
|
|
105
111
|
### Destroy Workflow
|
|
106
112
|
|
|
107
|
-
|
|
113
|
+
* Must contain an input parameter called `server_id` that Test Kitchen will
|
|
108
114
|
populate with the unique ID returned from the Create Workflow output.
|
|
109
|
-
|
|
115
|
+
* Must end the workflow with a raised exception if the creation did not
|
|
110
116
|
succeed. The workflow status must not be 'completed.'
|
|
111
117
|
|
|
112
118
|
## License and Authors
|
|
@@ -120,7 +126,7 @@ License:: Apache License, Version 2.0
|
|
|
120
126
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
121
127
|
this file except in compliance with the License. You may obtain a copy of the License at
|
|
122
128
|
|
|
123
|
-
```
|
|
129
|
+
```text
|
|
124
130
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
125
131
|
```
|
|
126
132
|
|
|
@@ -133,7 +139,7 @@ and limitations under the License.
|
|
|
133
139
|
|
|
134
140
|
We'd love to hear from you if this doesn't perform in the manner you expect. Please log a GitHub issue, or even better, submit a Pull Request with a fix!
|
|
135
141
|
|
|
136
|
-
1. Fork it ( https://github.com/chef-partners/kitchen-vro/fork )
|
|
142
|
+
1. Fork it ( <https://github.com/chef-partners/kitchen-vro/fork> )
|
|
137
143
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
138
144
|
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
139
145
|
4. Push to the branch (`git push origin my-new-feature`)
|
data/Rakefile
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
|
-
require
|
|
2
|
-
require
|
|
1
|
+
require "bundler/gem_tasks"
|
|
2
|
+
require "rspec/core/rake_task"
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
begin
|
|
5
|
+
require "chefstyle"
|
|
6
|
+
require "rubocop/rake_task"
|
|
7
|
+
RuboCop::RakeTask.new(:style) do |task|
|
|
8
|
+
task.options += ["--display-cop-names", "--no-color"]
|
|
9
|
+
end
|
|
10
|
+
rescue LoadError
|
|
11
|
+
puts "chefstyle is not available. (sudo) gem install chefstyle to do style checking."
|
|
12
|
+
end
|
|
5
13
|
|
|
6
|
-
|
|
14
|
+
RSpec::Core::RakeTask.new(:test)
|
|
15
|
+
|
|
16
|
+
task default: %i{test style}
|
data/kitchen-vro.gemspec
CHANGED
|
@@ -1,28 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
|
1
|
+
lib = File.expand_path("lib", __dir__)
|
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
-
require
|
|
3
|
+
require "kitchen/driver/version"
|
|
5
4
|
|
|
6
5
|
Gem::Specification.new do |spec|
|
|
7
|
-
spec.name =
|
|
6
|
+
spec.name = "kitchen-vro"
|
|
8
7
|
spec.version = Kitchen::Driver::VRO_VERSION
|
|
9
|
-
spec.authors = [
|
|
10
|
-
spec.email = [
|
|
11
|
-
spec.summary =
|
|
8
|
+
spec.authors = ["Test Kitchen Team"]
|
|
9
|
+
spec.email = ["help@sous-chefs.org"]
|
|
10
|
+
spec.summary = "A Test Kitchen driver for VMware vRealize Orchestrator (vRO)"
|
|
12
11
|
spec.description = spec.summary
|
|
13
|
-
spec.homepage =
|
|
14
|
-
spec.license =
|
|
12
|
+
spec.homepage = "https://https://github.com/test-kitchen/kitchen-vro"
|
|
13
|
+
spec.license = "Apache 2.0"
|
|
15
14
|
|
|
16
15
|
spec.files = `git ls-files -z`.split("\x0")
|
|
17
16
|
spec.executables = []
|
|
18
17
|
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
|
19
|
-
spec.require_paths = [
|
|
18
|
+
spec.require_paths = ["lib"]
|
|
20
19
|
|
|
21
|
-
spec.add_dependency
|
|
22
|
-
spec.add_dependency
|
|
23
|
-
|
|
24
|
-
spec.add_development_dependency 'bundler', '~> 1.7'
|
|
25
|
-
spec.add_development_dependency 'rake', '~> 10.0'
|
|
26
|
-
spec.add_development_dependency 'rspec', '~> 3.2'
|
|
27
|
-
spec.add_development_dependency 'webmock', '~> 1.21'
|
|
20
|
+
spec.add_dependency "test-kitchen", ">= 1.4", "< 4"
|
|
21
|
+
spec.add_dependency "vcoworkflows", "~> 0.2"
|
|
28
22
|
end
|
data/lib/kitchen/driver/vro.rb
CHANGED
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
# limitations under the License.
|
|
17
17
|
#
|
|
18
18
|
|
|
19
|
-
require
|
|
20
|
-
require
|
|
21
|
-
require_relative
|
|
19
|
+
require "kitchen"
|
|
20
|
+
require "vcoworkflows"
|
|
21
|
+
require_relative "version"
|
|
22
22
|
|
|
23
23
|
module Kitchen
|
|
24
24
|
module Driver
|
|
@@ -42,13 +42,13 @@ module Kitchen
|
|
|
42
42
|
default_config :request_timeout, 300
|
|
43
43
|
|
|
44
44
|
def name
|
|
45
|
-
|
|
45
|
+
"vRO"
|
|
46
46
|
end
|
|
47
47
|
|
|
48
48
|
def create(state)
|
|
49
49
|
return unless state[:server_id].nil?
|
|
50
50
|
|
|
51
|
-
info(
|
|
51
|
+
info("Executing the create-server workflow...")
|
|
52
52
|
execute_create_workflow(state)
|
|
53
53
|
|
|
54
54
|
info("Server #{state[:hostname]} (#{state[:server_id]}) created. Waiting for it to be ready...")
|
|
@@ -97,22 +97,22 @@ module Kitchen
|
|
|
97
97
|
execute_workflow
|
|
98
98
|
wait_for_workflow
|
|
99
99
|
|
|
100
|
-
raise
|
|
100
|
+
raise "The workflow did not complete successfully. Check the vRO UI for more info." unless workflow_successful?
|
|
101
101
|
|
|
102
102
|
validate_create_output_parameters!
|
|
103
103
|
|
|
104
|
-
state[:server_id] = output_parameter_value(
|
|
105
|
-
state[:hostname] = output_parameter_value(
|
|
104
|
+
state[:server_id] = output_parameter_value("server_id")
|
|
105
|
+
state[:hostname] = output_parameter_value("ip_address")
|
|
106
106
|
end
|
|
107
107
|
|
|
108
108
|
def execute_destroy_workflow(state)
|
|
109
109
|
set_workflow_vars(config[:destroy_workflow_name], config[:destroy_workflow_id])
|
|
110
110
|
set_workflow_parameters(config[:destroy_workflow_parameters])
|
|
111
|
-
vro_client.parameter(
|
|
111
|
+
vro_client.parameter("server_id", state[:server_id])
|
|
112
112
|
execute_workflow
|
|
113
113
|
wait_for_workflow
|
|
114
114
|
|
|
115
|
-
raise
|
|
115
|
+
raise "The workflow did not complete successfully. Check the vRO UI for more info." unless workflow_successful?
|
|
116
116
|
end
|
|
117
117
|
|
|
118
118
|
def execute_workflow
|
|
@@ -166,15 +166,15 @@ module Kitchen
|
|
|
166
166
|
end
|
|
167
167
|
|
|
168
168
|
def validate_create_output_parameters!
|
|
169
|
-
raise
|
|
170
|
-
output_parameters.key?(
|
|
169
|
+
raise "The workflow output did not contain a server_id and ip_address parameter." unless
|
|
170
|
+
output_parameters.key?("server_id") && output_parameters.key?("ip_address")
|
|
171
171
|
|
|
172
|
-
raise
|
|
173
|
-
raise
|
|
172
|
+
raise "The server_id parameter was empty." if output_parameter_empty?("server_id")
|
|
173
|
+
raise "The ip_address parameter was empty." if output_parameter_empty?("ip_address")
|
|
174
174
|
end
|
|
175
175
|
|
|
176
176
|
def workflow_successful?
|
|
177
|
-
vro_client.token.state ==
|
|
177
|
+
vro_client.token.state == "completed"
|
|
178
178
|
end
|
|
179
179
|
end
|
|
180
180
|
end
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"packages": {
|
|
3
|
+
".": {
|
|
4
|
+
"package-name": "kitchen-vro",
|
|
5
|
+
"changelog-path": "CHANGELOG.md",
|
|
6
|
+
"release-type": "ruby",
|
|
7
|
+
"include-component-in-tag": false,
|
|
8
|
+
"version-file": "lib/kitchen/driver/version.rb"
|
|
9
|
+
}
|
|
10
|
+
},
|
|
11
|
+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
|
12
|
+
}
|
data/renovate.json
ADDED
data/spec/vro_spec.rb
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
# Encoding: UTF-8
|
|
2
|
+
|
|
2
3
|
#
|
|
3
4
|
# Authors:: Chef Partner Engineering (<partnereng@chef.io>)
|
|
4
5
|
# Copyright:: Copyright (c) 2015 Chef Software, Inc.
|
|
@@ -56,8 +57,7 @@ describe Kitchen::Driver::Vro do
|
|
|
56
57
|
logger: logger,
|
|
57
58
|
transport: transport,
|
|
58
59
|
platform: platform,
|
|
59
|
-
to_str: 'instance_str'
|
|
60
|
-
)
|
|
60
|
+
to_str: 'instance_str')
|
|
61
61
|
end
|
|
62
62
|
|
|
63
63
|
before do
|
|
@@ -291,7 +291,8 @@ describe Kitchen::Driver::Vro do
|
|
|
291
291
|
allow(Timeout).to receive(:timeout).and_raise(Timeout::Error)
|
|
292
292
|
expect { driver.wait_for_workflow }.to raise_error(
|
|
293
293
|
Timeout::Error, 'Workflow did not complete in 300 seconds. ' \
|
|
294
|
-
'Please check the vRO UI for more information.'
|
|
294
|
+
'Please check the vRO UI for more information.'
|
|
295
|
+
)
|
|
295
296
|
end
|
|
296
297
|
end
|
|
297
298
|
|
metadata
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kitchen-vro
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
autorequire:
|
|
7
|
+
- Test Kitchen Team
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-06-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: test-kitchen
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - "
|
|
17
|
+
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '1.4'
|
|
20
|
-
- - "
|
|
20
|
+
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version:
|
|
22
|
+
version: '4'
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
29
|
version: '1.4'
|
|
30
|
-
- - "
|
|
30
|
+
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version:
|
|
32
|
+
version: '4'
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: vcoworkflows
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -44,86 +44,38 @@ dependencies:
|
|
|
44
44
|
- - "~>"
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
46
|
version: '0.2'
|
|
47
|
-
- !ruby/object:Gem::Dependency
|
|
48
|
-
name: bundler
|
|
49
|
-
requirement: !ruby/object:Gem::Requirement
|
|
50
|
-
requirements:
|
|
51
|
-
- - "~>"
|
|
52
|
-
- !ruby/object:Gem::Version
|
|
53
|
-
version: '1.7'
|
|
54
|
-
type: :development
|
|
55
|
-
prerelease: false
|
|
56
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
requirements:
|
|
58
|
-
- - "~>"
|
|
59
|
-
- !ruby/object:Gem::Version
|
|
60
|
-
version: '1.7'
|
|
61
|
-
- !ruby/object:Gem::Dependency
|
|
62
|
-
name: rake
|
|
63
|
-
requirement: !ruby/object:Gem::Requirement
|
|
64
|
-
requirements:
|
|
65
|
-
- - "~>"
|
|
66
|
-
- !ruby/object:Gem::Version
|
|
67
|
-
version: '10.0'
|
|
68
|
-
type: :development
|
|
69
|
-
prerelease: false
|
|
70
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
71
|
-
requirements:
|
|
72
|
-
- - "~>"
|
|
73
|
-
- !ruby/object:Gem::Version
|
|
74
|
-
version: '10.0'
|
|
75
|
-
- !ruby/object:Gem::Dependency
|
|
76
|
-
name: rspec
|
|
77
|
-
requirement: !ruby/object:Gem::Requirement
|
|
78
|
-
requirements:
|
|
79
|
-
- - "~>"
|
|
80
|
-
- !ruby/object:Gem::Version
|
|
81
|
-
version: '3.2'
|
|
82
|
-
type: :development
|
|
83
|
-
prerelease: false
|
|
84
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
85
|
-
requirements:
|
|
86
|
-
- - "~>"
|
|
87
|
-
- !ruby/object:Gem::Version
|
|
88
|
-
version: '3.2'
|
|
89
|
-
- !ruby/object:Gem::Dependency
|
|
90
|
-
name: webmock
|
|
91
|
-
requirement: !ruby/object:Gem::Requirement
|
|
92
|
-
requirements:
|
|
93
|
-
- - "~>"
|
|
94
|
-
- !ruby/object:Gem::Version
|
|
95
|
-
version: '1.21'
|
|
96
|
-
type: :development
|
|
97
|
-
prerelease: false
|
|
98
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
99
|
-
requirements:
|
|
100
|
-
- - "~>"
|
|
101
|
-
- !ruby/object:Gem::Version
|
|
102
|
-
version: '1.21'
|
|
103
47
|
description: A Test Kitchen driver for VMware vRealize Orchestrator (vRO)
|
|
104
48
|
email:
|
|
105
|
-
-
|
|
49
|
+
- help@sous-chefs.org
|
|
106
50
|
executables: []
|
|
107
51
|
extensions: []
|
|
108
52
|
extra_rdoc_files: []
|
|
109
53
|
files:
|
|
54
|
+
- ".github/CODEOWNERS"
|
|
55
|
+
- ".github/workflows/lint.yaml"
|
|
56
|
+
- ".github/workflows/publish.yaml"
|
|
110
57
|
- ".gitignore"
|
|
58
|
+
- ".markdownlint.yaml"
|
|
59
|
+
- ".release-please-manifest.json"
|
|
111
60
|
- ".rspec"
|
|
112
61
|
- ".rubocop.yml"
|
|
62
|
+
- CHANGELOG.md
|
|
113
63
|
- Gemfile
|
|
114
64
|
- LICENSE.txt
|
|
115
65
|
- README.md
|
|
116
66
|
- Rakefile
|
|
117
67
|
- kitchen-vro.gemspec
|
|
68
|
+
- lib/kitchen/driver/version.rb
|
|
118
69
|
- lib/kitchen/driver/vro.rb
|
|
119
|
-
-
|
|
70
|
+
- release-please-config.json
|
|
71
|
+
- renovate.json
|
|
120
72
|
- spec/spec_helper.rb
|
|
121
73
|
- spec/vro_spec.rb
|
|
122
|
-
homepage: https://github.com/
|
|
74
|
+
homepage: https://https://github.com/test-kitchen/kitchen-vro
|
|
123
75
|
licenses:
|
|
124
76
|
- Apache 2.0
|
|
125
77
|
metadata: {}
|
|
126
|
-
post_install_message:
|
|
78
|
+
post_install_message:
|
|
127
79
|
rdoc_options: []
|
|
128
80
|
require_paths:
|
|
129
81
|
- lib
|
|
@@ -138,12 +90,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
138
90
|
- !ruby/object:Gem::Version
|
|
139
91
|
version: '0'
|
|
140
92
|
requirements: []
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
signing_key:
|
|
93
|
+
rubygems_version: 3.4.10
|
|
94
|
+
signing_key:
|
|
144
95
|
specification_version: 4
|
|
145
96
|
summary: A Test Kitchen driver for VMware vRealize Orchestrator (vRO)
|
|
146
97
|
test_files:
|
|
147
98
|
- spec/spec_helper.rb
|
|
148
99
|
- spec/vro_spec.rb
|
|
149
|
-
has_rdoc:
|