kitchen-vra 3.3.3 → 3.4.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fab28eb2e98ba1df2f44cb64605d00afa1fff0e504ca903ba40356e284e091c9
4
- data.tar.gz: fe95a507798120ee4bc23e7ae524fbae709ec09ebf9ea9e7b677ea39b78374e5
3
+ metadata.gz: c3ad4a4ab887a646b1856e8329bfa319f85c85adf5ab1d55785ed443e31ea623
4
+ data.tar.gz: b178306e4e6e20e88f27d1274913a6bf7c2be4ba9871fda69b8373938550783f
5
5
  SHA512:
6
- metadata.gz: eebc5da32e85f52b89766f8a72d2fed6409fb3372f49e197ef00aabc028ef13d178f251735f8f248ecb75639efcada2244f7d530ee83ebd67d76c487a349bf4c
7
- data.tar.gz: 9736c2e959772989ff0639d8b4a054fed20d7b3d16a18427c0309c3145bbd2f5a04bc701dc0c1b93bd8459aba1a957fd3eb3991fc02423ff2bf28dccffaf42cb
6
+ metadata.gz: 4e2cbf243619ad72b38384a2520e7ccc68646e16c472e1356e088f00058ebf707e86aa558470dd75fb17b13a0742448ea1c822b73e1e38482340e1296b9a0686
7
+ data.tar.gz: 1a85f3b0bb3cbd9fa872a057225e0ab9494940830bbb68833b81968fc197b2e883bf32163022dbe83cb8eba5abce8212ba9467e8e5dd62c8462185a4236d92b6
@@ -9,13 +9,13 @@ jobs:
9
9
  release-please:
10
10
  runs-on: ubuntu-latest
11
11
  steps:
12
- - uses: googleapis/release-please-action@v4
12
+ - uses: googleapis/release-please-action@v5
13
13
  id: release
14
14
  with:
15
15
  token: ${{ secrets.PORTER_GITHUB_TOKEN }}
16
16
 
17
17
  - name: Checkout
18
- uses: actions/checkout@v4
18
+ uses: actions/checkout@v7
19
19
  if: ${{ steps.release.outputs.release_created }}
20
20
 
21
21
  - name: Build and publish to GitHub Package
data/.gitignore CHANGED
@@ -14,4 +14,6 @@
14
14
  mkmf.log
15
15
  .direnv/
16
16
  .envrc
17
- .ruby-version
17
+ .ruby-version
18
+ doc/
19
+ .yardoc
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "3.3.3"
2
+ ".": "3.4.0"
3
3
  }
data/.rubocop.yml CHANGED
@@ -1,3 +1,9 @@
1
1
  ---
2
+ require:
3
+ - cookstyle/chefstyle
4
+
2
5
  AllCops:
3
- TargetRubyVersion: 2.7
6
+ TargetRubyVersion: 3.1
7
+ Exclude:
8
+ - "vendor/**/*"
9
+ - "spec/**/*"
data/.yamllint ADDED
@@ -0,0 +1,6 @@
1
+ ---
2
+ extends: default
3
+ rules:
4
+ line-length:
5
+ max: 256
6
+ level: warning
data/.yardopts ADDED
@@ -0,0 +1,11 @@
1
+ --markup markdown
2
+ --output-dir doc
3
+ --readme README.md
4
+ --title "kitchen-vra"
5
+ --protected
6
+ --private
7
+ lib/**/*.rb
8
+ -
9
+ CHANGELOG.md
10
+ CONTRIBUTING.md
11
+ LICENSE.txt
data/CHANGELOG.md CHANGED
@@ -1,44 +1,86 @@
1
1
  # Change Log
2
2
 
3
- ## [3.3.3](https://github.com/test-kitchen/kitchen-vra/compare/v3.3.2...v3.3.3) (2024-06-27)
3
+ ## Unreleased
4
+
5
+ * chore(deps): update actions/checkout action to v5 ([#74](https://github.com/test-kitchen/kitchen-vra/pull/74)) ([bc06b8c](https://github.com/test-kitchen/kitchen-vra/commit/bc06b8c))
6
+ * Fix typos ([#78](https://github.com/test-kitchen/kitchen-vra/pull/78)) ([298e742](https://github.com/test-kitchen/kitchen-vra/commit/298e742))
7
+ * Require Ruby 3.1+ and modernize CI ([#79](https://github.com/test-kitchen/kitchen-vra/pull/79)) ([d2df4d4](https://github.com/test-kitchen/kitchen-vra/commit/d2df4d4))
8
+ * Update actions/checkout action to v7 - autoclosed ([#77](https://github.com/test-kitchen/kitchen-vra/pull/77)) ([fae5260](https://github.com/test-kitchen/kitchen-vra/commit/fae5260))
9
+ * Update googleapis/release-please-action action to v5 - autoclosed ([#76](https://github.com/test-kitchen/kitchen-vra/pull/76)) ([fab5e69](https://github.com/test-kitchen/kitchen-vra/commit/fab5e69))
10
+ * Docs: rewrite README for new users and split contributor docs ([#80](https://github.com/test-kitchen/kitchen-vra/pull/80)) ([d9ebc45](https://github.com/test-kitchen/kitchen-vra/commit/d9ebc45))
11
+ * Standardize renovate config and remove dependabot ([#81](https://github.com/test-kitchen/kitchen-vra/pull/81)) ([be552bd](https://github.com/test-kitchen/kitchen-vra/commit/be552bd))
12
+
13
+ ## [3.4.0](https://github.com/test-kitchen/kitchen-vra/compare/v3.3.4...v3.4.0) (2026-08-24)
14
+
15
+
16
+ ### Features
17
+
18
+ * implement the driver status hook ([#88](https://github.com/test-kitchen/kitchen-vra/issues/88)) ([933e254](https://github.com/test-kitchen/kitchen-vra/commit/933e25445d1a231490ef977cbbfd9644aa16022d))
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * constrain the test-kitchen dependency ([#86](https://github.com/test-kitchen/kitchen-vra/issues/86)) ([ac5f32d](https://github.com/test-kitchen/kitchen-vra/commit/ac5f32d1dd5eb132c91a3fda58ee41f778148245))
24
+ * drop the unused rack runtime dependency ([#89](https://github.com/test-kitchen/kitchen-vra/issues/89)) ([b68f1fd](https://github.com/test-kitchen/kitchen-vra/commit/b68f1fdd4dfc6d1a0c37320f8b099b5d0ca19c8a))
25
+
26
+ ## [3.3.4](https://github.com/test-kitchen/kitchen-vra/compare/v3.3.3...v3.3.4) (2026-08-23)
4
27
 
5
28
 
29
+ ### Bug Fixes
30
+
31
+ * make cache_credentials actually cache credentials ([#84](https://github.com/test-kitchen/kitchen-vra/issues/84)) ([8ef64d8](https://github.com/test-kitchen/kitchen-vra/commit/8ef64d8c41a0fe2d510f5bfa107f1a029b079c61))
32
+
33
+ ## [3.3.3](https://github.com/test-kitchen/kitchen-vra/compare/v3.3.2...v3.3.3) (2024-06-27)
34
+
6
35
  ### Bug Fixes
7
36
 
8
37
  * release please configs ([#69](https://github.com/test-kitchen/kitchen-vra/issues/69)) ([fa27fb1](https://github.com/test-kitchen/kitchen-vra/commit/fa27fb16997917b6e04e2f63de1c3ac5bcc920a2))
9
38
 
10
- ## [v3.3.2](https://github.com/chef-partners/kitchen-vra/tree/v3.3.2)
39
+ ### Other Changes
40
+
41
+ * Update ffi-yajl requirement from >= 2.2.3, < 2.5.0 to >= 2.2.3, < 3.1.0 ([#64](https://github.com/test-kitchen/kitchen-vra/pull/64)) ([1afb763](https://github.com/test-kitchen/kitchen-vra/commit/1afb763))
42
+ * Configure Renovate ([#67](https://github.com/test-kitchen/kitchen-vra/pull/67)) ([995a9eb](https://github.com/test-kitchen/kitchen-vra/commit/995a9eb))
43
+ * Updated the ruby version ([#68](https://github.com/test-kitchen/kitchen-vra/pull/68)) ([7ceca30](https://github.com/test-kitchen/kitchen-vra/commit/7ceca30))
44
+
45
+ ## [3.3.2](https://github.com/chef-partners/kitchen-vra/tree/v3.3.2)
11
46
 
12
47
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.3.1...v3.3.2)
13
48
 
14
- - This change helps in getting unique name of a deployment. The new deployement name will be deployment_deploymentId. We need to pass **unique_name** as true(unique_name: true) in the driver configuration.
49
+ - This change helps in getting unique name of a deployment. The new deployment name will be deployment_deploymentId. We need to pass **unique_name** as true(unique_name: true) in the driver configuration.
15
50
 
16
- ## [v3.3.1](https://github.com/chef-partners/kitchen-vra/tree/v3.3.1)
51
+ * Update rack requirement from >= 1.6, < 3.0 to >= 1.6, < 4.0 ([#56](https://github.com/test-kitchen/kitchen-vra/pull/56)) ([2913dcb](https://github.com/test-kitchen/kitchen-vra/commit/2913dcb))
52
+ * Unique name for the newly provisioned VMs. ([#66](https://github.com/test-kitchen/kitchen-vra/pull/66)) ([6ca4d6d](https://github.com/test-kitchen/kitchen-vra/commit/6ca4d6d))
53
+
54
+ ## [3.3.1](https://github.com/chef-partners/kitchen-vra/tree/v3.3.1)
17
55
 
18
56
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.3.0...v3.3.1)
19
57
 
20
58
  - Fixed the issue with catalog lookup using catalog_name config [\#61](https://github.com/chef-partners/kitchen-vra/pull/61) ([ashiqueps](https://github.com/ashiqueps))
21
59
 
22
- ## [v3.3.0](https://github.com/chef-partners/kitchen-vra/tree/v3.3.0)
60
+ ## [3.3.0](https://github.com/chef-partners/kitchen-vra/tree/v3.3.0)
23
61
 
24
62
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.2.1...v3.3.0)
25
63
 
26
64
  - Replaced the tenant attribute with the domain attribute [\#59](https://github.com/chef-partners/kitchen-vra/pull/59) ([ashiqueps](https://github.com/ashiqueps))
27
65
 
28
- ## [v3.2.1](https://github.com/chef-partners/kitchen-vra/tree/v3.2.1)
66
+ ## [3.2.1](https://github.com/chef-partners/kitchen-vra/tree/v3.2.1)
29
67
 
30
68
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.2.0...v3.2.1)
31
69
 
32
70
  - Updated username example when prompt ask for username [\#57](https://github.com/chef-partners/kitchen-vra/pull/57) ([sanjain-progress](https://github.com/sanjain-progress))
33
71
 
34
- ## [v3.2.0](https://github.com/chef-partners/kitchen-vra/tree/v3.2.0)
72
+ ## [3.2.0](https://github.com/chef-partners/kitchen-vra/tree/v3.2.0)
35
73
 
36
74
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.1.0...v3.2.0)
37
75
 
38
76
  - Support for Ruby 3.1
39
77
  - Github workflow improvements
40
78
 
41
- ## [v3.1.0](https://github.com/chef-partners/kitchen-vra/tree/v3.1.0)
79
+ * include ruby 3.1 in ci ([#52](https://github.com/test-kitchen/kitchen-vra/pull/52)) ([0d863e2](https://github.com/test-kitchen/kitchen-vra/commit/0d863e2))
80
+ * add linters and publish action ([#53](https://github.com/test-kitchen/kitchen-vra/pull/53)) ([8cfed3b](https://github.com/test-kitchen/kitchen-vra/commit/8cfed3b))
81
+ * reuse existing workflow ([#54](https://github.com/test-kitchen/kitchen-vra/pull/54)) ([177946a](https://github.com/test-kitchen/kitchen-vra/commit/177946a))
82
+
83
+ ## [3.1.0](https://github.com/chef-partners/kitchen-vra/tree/v3.1.0)
42
84
 
43
85
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.0.1...v3.1.0)
44
86
 
@@ -47,43 +89,63 @@
47
89
  - Remove the bundler dev dep
48
90
  - Update the gemspec for the new maintainer of this project
49
91
 
50
- ## [v3.0.1](https://github.com/chef-partners/kitchen-vra/tree/v3.0.1)
92
+ * Target Ruby 2.7 in rubocop ([b25030d](https://github.com/test-kitchen/kitchen-vra/commit/b25030d))
93
+ * Update the owner and the repo in the gemspec ([14beda9](https://github.com/test-kitchen/kitchen-vra/commit/14beda9))
94
+ * make version parameter optional in kitchen yml ([#51](https://github.com/test-kitchen/kitchen-vra/pull/51)) ([72a1110](https://github.com/test-kitchen/kitchen-vra/commit/72a1110))
95
+
96
+ ## [3.0.1](https://github.com/chef-partners/kitchen-vra/tree/v3.0.1)
51
97
 
52
98
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v3.0.0...v3.0.1)
53
99
 
54
100
  - Updated the rack gem dependency to allow for modern releases of rack.
55
101
 
56
- ## [v3.0.0](https://github.com/chef-partners/kitchen-vra/tree/v3.0.0)
102
+ * Update rack requirement from ~> 1.6 to >= 1.6, < 3.0 ([#47](https://github.com/test-kitchen/kitchen-vra/pull/47)) ([aa357b9](https://github.com/test-kitchen/kitchen-vra/commit/aa357b9))
103
+
104
+ ## [3.0.0](https://github.com/chef-partners/kitchen-vra/tree/v3.0.0)
57
105
 
58
106
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.7.1...v3.0.0)
59
107
 
60
108
  - kitchen-vra now supports VMware vRealize Automation 8. See the readme of kitchen.ci driver documentation for new configuration options necessary for use with vRA 8. If you need support for vRA 7 make sure to pin to an earlier release.
61
109
 
62
- ## [v2.7.1](https://github.com/chef-partners/kitchen-vra/tree/v2.7.1)
110
+ * Support VRA8 ([#41](https://github.com/test-kitchen/kitchen-vra/pull/41)) ([9c10283](https://github.com/test-kitchen/kitchen-vra/commit/9c10283))
111
+ * Require Ruby 2.7 and later ([#44](https://github.com/test-kitchen/kitchen-vra/pull/44)) ([933cae2](https://github.com/test-kitchen/kitchen-vra/commit/933cae2))
112
+ * Wire up dependabot and GitHub Actions ([#43](https://github.com/test-kitchen/kitchen-vra/pull/43)) ([84ad5d4](https://github.com/test-kitchen/kitchen-vra/commit/84ad5d4))
113
+ * Update rake requirement from ~> 10.0 to ~> 13.0 ([#46](https://github.com/test-kitchen/kitchen-vra/pull/46)) ([e1a6599](https://github.com/test-kitchen/kitchen-vra/commit/e1a6599))
114
+ * Update ffi-yajl requirement from ~> 2.2.3 to >= 2.2.3, < 2.5.0 ([#49](https://github.com/test-kitchen/kitchen-vra/pull/49)) ([b39b1d3](https://github.com/test-kitchen/kitchen-vra/commit/b39b1d3))
115
+ * Migrate from RuboCop to Chefstyle ([#50](https://github.com/test-kitchen/kitchen-vra/pull/50)) ([6f517dd](https://github.com/test-kitchen/kitchen-vra/commit/6f517dd))
116
+ * Update webmock requirement from ~> 1.21 to ~> 3.14 ([#45](https://github.com/test-kitchen/kitchen-vra/pull/45)) ([616958a](https://github.com/test-kitchen/kitchen-vra/commit/616958a))
117
+
118
+ ## [2.7.1](https://github.com/chef-partners/kitchen-vra/tree/v2.7.1)
63
119
 
64
120
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.7.0...v2.7.1)
65
121
 
66
122
  - Pin vmware-vra gem dep to < 3 to prevent pulling in the new release
67
123
 
68
- ## [v2.7.0](https://github.com/chef-partners/kitchen-vra/tree/v2.7.0)
124
+ * Updated the vmware-vra gem dependency ([#42](https://github.com/test-kitchen/kitchen-vra/pull/42)) ([f13906c](https://github.com/test-kitchen/kitchen-vra/commit/f13906c))
125
+
126
+ ## [2.7.0](https://github.com/chef-partners/kitchen-vra/tree/v2.7.0)
69
127
 
70
128
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.6.0...v2.7.0)
71
129
 
72
130
  - Accept shirt size option available in blueprint as input in kitchen.yml
73
131
 
74
- ## [v2.5.0](https://github.com/chef-partners/kitchen-vra/tree/v2.5.0)
132
+ * Updates to resolve CVE. Fixes #31. ([#32](https://github.com/test-kitchen/kitchen-vra/pull/32)) ([05bda6c](https://github.com/test-kitchen/kitchen-vra/commit/05bda6c))
133
+ * Update README.md ([650df37](https://github.com/test-kitchen/kitchen-vra/commit/650df37))
134
+ * fix travis failures ([#38](https://github.com/test-kitchen/kitchen-vra/pull/38)) ([814e00a](https://github.com/test-kitchen/kitchen-vra/commit/814e00a))
135
+ * Enhanced kitchen driver to accept shirt size option in kitchen.yml. ([#37](https://github.com/test-kitchen/kitchen-vra/pull/37)) ([4da6ef5](https://github.com/test-kitchen/kitchen-vra/commit/4da6ef5))
75
136
 
76
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.4.0...v2.5.0)
137
+ ## [2.6.0](https://github.com/test-kitchen/kitchen-vra/compare/v2.4.0...v2.6.0) (2018-03-01)
77
138
 
78
- **Closed issues:**
139
+ * Accept subtenant name as input in kitchen.yml ([#28](https://github.com/test-kitchen/kitchen-vra/pull/28)) ([92f7aea](https://github.com/test-kitchen/kitchen-vra/commit/92f7aea))
140
+ * v2.5.0 ([b47dd36](https://github.com/test-kitchen/kitchen-vra/commit/b47dd36))
79
141
 
142
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.4.0...v2.5.0)
143
+ **Closed issues:**
80
144
  - Feature Query: Support for Capture Snapshot & Restore Snapshot [\#27](https://github.com/chef-partners/kitchen-vra/issues/27)
81
-
82
145
  **Merged pull requests:**
83
-
84
146
  - Accept subtenant name as input in kitchen.yml [\#28](https://github.com/chef-partners/kitchen-vra/pull/28) ([vinuphilip](https://github.com/vinuphilip))
85
147
 
86
- ## [v2.4.0](https://github.com/chef-partners/kitchen-vra/tree/v2.4.0) (2018-01-22)
148
+ ## [2.4.0](https://github.com/chef-partners/kitchen-vra/tree/v2.4.0) (2018-01-22)
87
149
 
88
150
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.3.0...v2.4.0)
89
151
 
@@ -91,7 +153,7 @@
91
153
 
92
154
  - Kitchen vRA enahancements [\#26](https://github.com/chef-partners/kitchen-vra/pull/26) ([rupeshpatel88](https://github.com/rupeshpatel88))
93
155
 
94
- ## [v2.3.0](https://github.com/chef-partners/kitchen-vra/tree/v2.3.0) (2017-07-14)
156
+ ## [2.3.0](https://github.com/chef-partners/kitchen-vra/tree/v2.3.0) (2017-07-14)
95
157
 
96
158
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.2.0...v2.3.0)
97
159
 
@@ -100,7 +162,10 @@
100
162
  - Switched to using set\_parameters [\#24](https://github.com/chef-partners/kitchen-vra/pull/24) ([lloydsmithjr03](https://github.com/lloydsmithjr03))
101
163
  - Updates for travis and rubocop [\#23](https://github.com/chef-partners/kitchen-vra/pull/23) ([jjasghar](https://github.com/jjasghar))
102
164
 
103
- ## [v2.2.0](https://github.com/chef-partners/kitchen-vra/tree/v2.2.0) (2017-02-15)
165
+ * Added github templates ([bac40d6](https://github.com/test-kitchen/kitchen-vra/commit/bac40d6))
166
+ * 2.3.0 ([6efee6a](https://github.com/test-kitchen/kitchen-vra/commit/6efee6a))
167
+
168
+ ## [2.2.0](https://github.com/chef-partners/kitchen-vra/tree/v2.2.0) (2017-02-15)
104
169
 
105
170
  [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.1.0...v2.2.0)
106
171
 
@@ -108,77 +173,68 @@
108
173
 
109
174
  - Vra cache creds [\#16](https://github.com/chef-partners/kitchen-vra/pull/16) ([michaelschlies](https://github.com/michaelschlies))
110
175
 
111
- ## [v2.1.0](https://github.com/chef-partners/kitchen-vra/tree/v2.1.0) (2017-02-13)
176
+ * Updated the year in README ([1a0a15c](https://github.com/test-kitchen/kitchen-vra/commit/1a0a15c))
112
177
 
113
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.0.0...v2.1.0)
114
-
115
- **Closed issues:**
178
+ ## [2.1.0](https://github.com/chef-partners/kitchen-vra/tree/v2.1.0) (2017-02-13)
116
179
 
117
- - extra\_parameters not passing correctly for vRA version 7.X [\#20](https://github.com/chef-partners/kitchen-vra/issues/20)
118
- - Failure on notes config setting [\#15](https://github.com/chef-partners/kitchen-vra/issues/15)
180
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.0.0...v2.1.0)
119
181
 
120
182
  **Merged pull requests:**
121
183
 
122
184
  - Bump version for release [\#21](https://github.com/chef-partners/kitchen-vra/pull/21) ([jjasghar](https://github.com/jjasghar))
123
185
  - Add support for a DNS suffix appended to server.name [\#19](https://github.com/chef-partners/kitchen-vra/pull/19) ([jeremymv2](https://github.com/jeremymv2))
124
186
 
125
- ## [v2.0.0](https://github.com/chef-partners/kitchen-vra/tree/v2.0.0) (2016-12-15)
126
-
127
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.3.0...v2.0.0)
187
+ * Added 2.1.0 changelog ([3546421](https://github.com/test-kitchen/kitchen-vra/commit/3546421))
128
188
 
129
- **Closed issues:**
189
+ ## [2.0.0](https://github.com/chef-partners/kitchen-vra/tree/v2.0.0) (2016-12-15)
130
190
 
131
- - How do I specify windows and linux credentials for host vms? [\#14](https://github.com/chef-partners/kitchen-vra/issues/14)
191
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.3.0...v2.0.0)
132
192
 
133
193
  **Merged pull requests:**
134
194
 
135
195
  - replace 'servers.size ==0' with 'servers.empty?' [\#13](https://github.com/chef-partners/kitchen-vra/pull/13) ([adamleff](https://github.com/adamleff))
136
196
  - fix travis notifications [\#11](https://github.com/chef-partners/kitchen-vra/pull/11) ([adamleff](https://github.com/adamleff))
137
197
 
138
- ## [v1.3.0](https://github.com/chef-partners/kitchen-vra/tree/v1.3.0) (2016-01-25)
139
-
140
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.2.0...v1.3.0)
198
+ * v2.0.0 ([75af468](https://github.com/test-kitchen/kitchen-vra/commit/75af468))
199
+ * merge conflict ([5b7b518](https://github.com/test-kitchen/kitchen-vra/commit/5b7b518))
141
200
 
142
- **Closed issues:**
201
+ ## [1.3.0](https://github.com/chef-partners/kitchen-vra/tree/v1.3.0) (2016-01-25)
143
202
 
144
- - separate vra / machine credentials [\#9](https://github.com/chef-partners/kitchen-vra/issues/9)
145
- - server\_ready\_retries timeout growth is awkward for our use case [\#8](https://github.com/chef-partners/kitchen-vra/issues/8)
203
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.2.0...v1.3.0)
146
204
 
147
205
  **Merged pull requests:**
148
206
 
149
207
  - Capping the retry delay when waiting for a server to 30 seconds [\#10](https://github.com/chef-partners/kitchen-vra/pull/10) ([adamleff](https://github.com/adamleff))
150
208
 
151
- ## [v1.2.0](https://github.com/chef-partners/kitchen-vra/tree/v1.2.0) (2015-11-26)
209
+ * adding to travis ([812c13a](https://github.com/test-kitchen/kitchen-vra/commit/812c13a))
210
+ * adding slack notifications to travis ([a9250ed](https://github.com/test-kitchen/kitchen-vra/commit/a9250ed))
152
211
 
153
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.1.0...v1.2.0)
212
+ ## [1.2.0](https://github.com/chef-partners/kitchen-vra/tree/v1.2.0) (2015-11-26)
154
213
 
155
- **Closed issues:**
156
-
157
- - Failed to complete \#create action: \[the vRA request did not create any servers.\] [\#5](https://github.com/chef-partners/kitchen-vra/issues/5)
214
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.1.0...v1.2.0)
158
215
 
159
216
  **Merged pull requests:**
160
217
 
161
218
  - Adding wait\_for\_server retry logic, and better failback for hostname. [\#7](https://github.com/chef-partners/kitchen-vra/pull/7) ([adamleff](https://github.com/adamleff))
162
219
  - Update README.md [\#4](https://github.com/chef-partners/kitchen-vra/pull/4) ([trisharia](https://github.com/trisharia))
163
220
 
164
- ## [v1.1.0](https://github.com/chef-partners/kitchen-vra/tree/v1.1.0) (2015-10-13)
221
+ * Merge branch 'adamleff/dns-fallback' for PR #7 ([bd72f27](https://github.com/test-kitchen/kitchen-vra/commit/bd72f27))
165
222
 
166
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.0.0...v1.1.0)
167
-
168
- **Closed issues:**
223
+ ## [1.1.0](https://github.com/chef-partners/kitchen-vra/tree/v1.1.0) (2015-10-13)
169
224
 
170
- - vRA not managing IP addresses [\#2](https://github.com/chef-partners/kitchen-vra/issues/2)
225
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v1.0.0...v1.1.0)
171
226
 
172
227
  **Merged pull requests:**
173
228
 
174
229
  - optional use\_dns [\#3](https://github.com/chef-partners/kitchen-vra/pull/3) ([stevehedrick](https://github.com/stevehedrick))
175
230
 
176
- ## [v1.0.0](https://github.com/chef-partners/kitchen-vra/tree/v1.0.0) (2015-08-12)
231
+ ## [1.0.0](https://github.com/chef-partners/kitchen-vra/tree/v1.0.0) (2015-08-12)
177
232
 
178
233
  **Merged pull requests:**
179
234
 
180
235
  - Initial release, working in VMware HOL lab, tests passing [\#1](https://github.com/chef-partners/kitchen-vra/pull/1) ([adamleff](https://github.com/adamleff))
181
236
 
182
237
 
183
-
184
238
  \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
239
+
240
+ * empty repo ([cabbb21](https://github.com/test-kitchen/kitchen-vra/commit/cabbb21))
data/CONTRIBUTING.md ADDED
@@ -0,0 +1,84 @@
1
+ # Contributing to kitchen-vra
2
+
3
+ We'd love to hear from you if this driver doesn't work in your vRA environment. Bug reports, feature requests, and pull requests are all welcome.
4
+
5
+ ## Reporting issues
6
+
7
+ Report bugs and request features on the [issue tracker](https://github.com/test-kitchen/kitchen-vra/issues). For bugs, please include:
8
+
9
+ - the version of kitchen-vra and Test Kitchen you are using
10
+ - your vRA version
11
+ - your `kitchen.yml` with credentials and internal hostnames removed
12
+ - the output of the failing command, ideally with `-l debug`
13
+
14
+ ## Development setup
15
+
16
+ Clone the repository and install the dependencies:
17
+
18
+ ```sh
19
+ git clone https://github.com/test-kitchen/kitchen-vra.git
20
+ cd kitchen-vra
21
+ bundle install
22
+ ```
23
+
24
+ ## Running the tests
25
+
26
+ Run the unit tests and the style check together:
27
+
28
+ ```sh
29
+ bundle exec rake
30
+ ```
31
+
32
+ Run them individually:
33
+
34
+ ```sh
35
+ bundle exec rake test # RSpec unit tests
36
+ bundle exec rake style # Cookstyle / RuboCop
37
+ ```
38
+
39
+ To run a single spec file:
40
+
41
+ ```sh
42
+ bundle exec rspec spec/kitchen/driver/vra_spec.rb
43
+ ```
44
+
45
+ Many style offenses can be corrected automatically:
46
+
47
+ ```sh
48
+ bundle exec cookstyle -a
49
+ ```
50
+
51
+ The unit tests stub the vRA client, so they do not contact an appliance and do
52
+ not require credentials.
53
+
54
+ ### Manual testing against vRA
55
+
56
+ Changes that touch the catalog request or the deployment lifecycle should also be
57
+ exercised against a real appliance, since the stubbed tests cannot catch
58
+ API-level regressions. You will need a catalog item that provisions exactly one
59
+ VM, and permission to request and delete it.
60
+
61
+ Set `VRA_USER_NAME` and `VRA_USER_PASSWORD` rather than putting credentials in
62
+ `kitchen.yml`, and confirm in the vRA UI that `kitchen destroy` removed the
63
+ deployment — a run that fails partway through can leave one behind.
64
+
65
+ ## Submitting changes
66
+
67
+ 1. Fork the repository.
68
+ 2. Create a feature branch off `main`.
69
+ 3. Make your change, adding or updating tests to cover it.
70
+ 4. Make sure `bundle exec rake` passes.
71
+ 5. Push the branch to your fork and open a pull request.
72
+
73
+ Please keep pull requests focused on a single change — it makes review much
74
+ faster. Update the documentation in `README.md` when you add or change a
75
+ configuration option.
76
+
77
+ ## Release process
78
+
79
+ Releases are handled by the maintainers.
80
+
81
+ 1. Update `lib/kitchen/driver/vra_version.rb` with the new version.
82
+ 2. Update `CHANGELOG.md`.
83
+ 3. Merge to `main`; the [publish workflow](.github/workflows/publish.yml) builds
84
+ the gem and pushes it to RubyGems.
data/Gemfile CHANGED
@@ -2,8 +2,7 @@
2
2
 
3
3
  source "https://rubygems.org"
4
4
 
5
- gemspec
6
-
5
+ gemspec development_group: :test
7
6
  group :test do
8
7
  gem "rake"
9
8
  gem "kitchen-inspec"
@@ -11,10 +10,10 @@ group :test do
11
10
  gem "webmock"
12
11
  end
13
12
 
14
- group :debug do
15
- gem "pry"
13
+ group :docs do
14
+ gem "yard"
16
15
  end
17
16
 
18
- group :chefstyle do
19
- gem "chefstyle"
17
+ group :cookstyle do
18
+ gem "cookstyle"
20
19
  end