wombat-cli 0.6.1 → 0.6.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 +4 -4
- data/.gitignore +23 -23
- data/.travis.yml +22 -27
- data/CHANGELOG.md +438 -423
- data/DESIGN.md +49 -49
- data/Gemfile +5 -5
- data/README.md +146 -146
- data/Rakefile +26 -26
- data/bin/wombat +24 -24
- data/generator_files/Vagrantfile +120 -120
- data/generator_files/cookbooks/automate/.gitignore +16 -16
- data/generator_files/cookbooks/automate/.kitchen.ec2.yml +34 -34
- data/generator_files/cookbooks/automate/.kitchen.yml +24 -24
- data/generator_files/cookbooks/automate/Berksfile +6 -6
- data/generator_files/cookbooks/automate/README.md +4 -4
- data/generator_files/cookbooks/automate/chefignore +102 -102
- data/generator_files/cookbooks/automate/libraries/_helper.rb +52 -52
- data/generator_files/cookbooks/automate/libraries/delivery_api.rb +204 -204
- data/generator_files/cookbooks/automate/libraries/delivery_project.rb +31 -31
- data/generator_files/cookbooks/automate/libraries/dsl.rb +4 -4
- data/generator_files/cookbooks/automate/metadata.rb +11 -11
- data/generator_files/cookbooks/automate/recipes/default.rb +118 -124
- data/generator_files/cookbooks/automate/recipes/update-users.rb +48 -48
- data/generator_files/cookbooks/automate/templates/delivery.erb +6 -6
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/automate.crt +26 -26
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/automate.key +27 -27
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/chef.crt +25 -25
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/chef.key +27 -27
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/compliance.crt +26 -26
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/compliance.key +27 -27
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/private.pem +27 -27
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/files/public.pub +1 -1
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/metadata.rb +3 -3
- data/generator_files/cookbooks/automate/test/fixtures/cookbooks/mock_data/recipes/default.rb +27 -27
- data/generator_files/cookbooks/automate/test/integration/default/automate_spec.rb +56 -56
- data/generator_files/cookbooks/build_node/.gitignore +16 -16
- data/generator_files/cookbooks/build_node/.kitchen.ec2.yml +37 -37
- data/generator_files/cookbooks/build_node/.kitchen.yml +23 -23
- data/generator_files/cookbooks/build_node/Berksfile +8 -8
- data/generator_files/cookbooks/build_node/README.md +4 -4
- data/generator_files/cookbooks/build_node/chefignore +102 -102
- data/generator_files/cookbooks/build_node/metadata.rb +12 -12
- data/generator_files/cookbooks/build_node/recipes/default.rb +38 -38
- data/generator_files/cookbooks/build_node/templates/client.erb +2 -2
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/automate.crt +26 -26
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/automate.key +27 -27
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/chef.crt +25 -25
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/chef.key +27 -27
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/compliance.crt +26 -26
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/compliance.key +27 -27
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/private.pem +27 -27
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/files/public.pub +1 -1
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/metadata.rb +2 -2
- data/generator_files/cookbooks/build_node/test/fixtures/cookbooks/mock_data/recipes/default.rb +18 -18
- data/generator_files/cookbooks/build_node/test/integration/default/build-node_spec.rb +40 -40
- data/generator_files/cookbooks/chef_server/.gitignore +16 -16
- data/generator_files/cookbooks/chef_server/.kitchen.ec2.yml +34 -34
- data/generator_files/cookbooks/chef_server/.kitchen.yml +24 -24
- data/generator_files/cookbooks/chef_server/Berksfile +6 -6
- data/generator_files/cookbooks/chef_server/README.md +4 -4
- data/generator_files/cookbooks/chef_server/chefignore +102 -102
- data/generator_files/cookbooks/chef_server/metadata.rb +11 -11
- data/generator_files/cookbooks/chef_server/recipes/bootstrap_users.rb +91 -91
- data/generator_files/cookbooks/chef_server/recipes/default.rb +113 -113
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/automate.crt +26 -26
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/automate.key +27 -27
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/chef.crt +25 -25
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/chef.key +27 -27
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/compliance.crt +26 -26
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/compliance.key +27 -27
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/private.pem +27 -27
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/files/public.pub +1 -1
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/metadata.rb +2 -2
- data/generator_files/cookbooks/chef_server/test/fixtures/cookbooks/mock_data/recipes/default.rb +23 -23
- data/generator_files/cookbooks/chef_server/test/integration/default/chef_server_spec.rb +50 -50
- data/generator_files/cookbooks/compliance/.gitignore +16 -16
- data/generator_files/cookbooks/compliance/.kitchen.ec2.yml +34 -34
- data/generator_files/cookbooks/compliance/.kitchen.yml +24 -24
- data/generator_files/cookbooks/compliance/Berksfile +7 -7
- data/generator_files/cookbooks/compliance/README.md +4 -4
- data/generator_files/cookbooks/compliance/chefignore +102 -102
- data/generator_files/cookbooks/compliance/metadata.rb +11 -11
- data/generator_files/cookbooks/compliance/recipes/default.rb +57 -57
- data/generator_files/cookbooks/compliance/spec/spec_helper.rb +2 -2
- data/generator_files/cookbooks/compliance/spec/unit/recipes/default_spec.rb +20 -20
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/automate.crt +26 -26
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/automate.key +27 -27
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/chef.crt +25 -25
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/chef.key +27 -27
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/compliance.crt +26 -26
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/compliance.key +27 -27
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/private.pem +27 -27
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/files/public.pub +1 -1
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/metadata.rb +4 -4
- data/generator_files/cookbooks/compliance/test/fixtures/cookbooks/mock_data/recipes/default.rb +21 -21
- data/generator_files/cookbooks/compliance/test/integration/default/compliance.rb +28 -28
- data/generator_files/cookbooks/infranodes/.gitignore +16 -16
- data/generator_files/cookbooks/infranodes/.kitchen.ec2.yml +48 -48
- data/generator_files/cookbooks/infranodes/.kitchen.yml +21 -21
- data/generator_files/cookbooks/infranodes/Berksfile +6 -6
- data/generator_files/cookbooks/infranodes/README.md +4 -4
- data/generator_files/cookbooks/infranodes/attributes/default.rb +2 -2
- data/generator_files/cookbooks/infranodes/chefignore +102 -102
- data/generator_files/cookbooks/infranodes/metadata.rb +13 -13
- data/generator_files/cookbooks/infranodes/recipes/default.rb +57 -57
- data/generator_files/cookbooks/infranodes/spec/spec_helper.rb +2 -2
- data/generator_files/cookbooks/infranodes/spec/unit/recipes/default_spec.rb +20 -20
- data/generator_files/cookbooks/infranodes/templates/default/client.rb.erb +5 -5
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/automate.crt +26 -26
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/automate.key +27 -27
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/chef.crt +25 -25
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/chef.key +27 -27
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/compliance.crt +26 -26
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/compliance.key +27 -27
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/private.pem +27 -27
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/files/public.pub +1 -1
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/metadata.rb +3 -3
- data/generator_files/cookbooks/infranodes/test/fixtures/cookbooks/mock_data/recipes/default.rb +27 -27
- data/generator_files/cookbooks/infranodes/test/integration/default/infranodes_spec.rb +22 -22
- data/generator_files/cookbooks/infranodes/test/integration/helpers/serverspec/spec_helper.rb +8 -8
- data/generator_files/cookbooks/wombat/.gitignore +16 -16
- data/generator_files/cookbooks/wombat/.kitchen.yml +43 -43
- data/generator_files/cookbooks/wombat/Berksfile +5 -5
- data/generator_files/cookbooks/wombat/README.md +4 -4
- data/generator_files/cookbooks/wombat/attributes/default.rb +79 -80
- data/generator_files/cookbooks/wombat/attributes/packer.rb +18 -18
- data/generator_files/cookbooks/wombat/chefignore +102 -102
- data/generator_files/cookbooks/wombat/metadata.rb +13 -13
- data/generator_files/cookbooks/wombat/recipes/authorized-keys.rb +20 -20
- data/generator_files/cookbooks/wombat/recipes/default.rb +111 -111
- data/generator_files/cookbooks/wombat/recipes/etc-hosts.rb +51 -51
- data/generator_files/cookbooks/workstation/.gitignore +16 -16
- data/generator_files/cookbooks/workstation/.kitchen.azure.yml +45 -0
- data/generator_files/cookbooks/workstation/.kitchen.ec2.yml +46 -30
- data/generator_files/cookbooks/workstation/.kitchen.yml +42 -22
- data/generator_files/cookbooks/workstation/Berksfile +7 -7
- data/generator_files/cookbooks/workstation/README.md +3 -3
- data/generator_files/cookbooks/workstation/chefignore +106 -102
- data/generator_files/cookbooks/workstation/files/atom.apm.list +10 -7
- data/generator_files/cookbooks/workstation/files/atom.config.cson +6 -3
- data/generator_files/cookbooks/workstation/{templates/default/ise_profile.ps1.erb → files/ise_profile.ps1} +11 -11
- data/generator_files/cookbooks/workstation/libraries/home.rb +4 -4
- data/generator_files/cookbooks/workstation/metadata.rb +14 -14
- data/generator_files/cookbooks/workstation/recipes/browser.rb +53 -58
- data/generator_files/cookbooks/workstation/recipes/certs-keys.rb +41 -45
- data/generator_files/cookbooks/workstation/recipes/chef.rb +29 -28
- data/generator_files/cookbooks/workstation/recipes/default.rb +24 -21
- data/generator_files/cookbooks/workstation/recipes/dotnet.rb +19 -17
- data/generator_files/cookbooks/workstation/recipes/editor.rb +46 -18
- data/generator_files/cookbooks/workstation/recipes/profile.rb +14 -41
- data/generator_files/cookbooks/workstation/recipes/terminal.rb +11 -11
- data/generator_files/cookbooks/workstation/templates/default/bookmarks.html.erb +23 -23
- data/generator_files/cookbooks/workstation/templates/default/data_collector.rb.erb +2 -2
- data/generator_files/cookbooks/workstation/templates/default/knife.rb.erb +10 -10
- data/generator_files/cookbooks/workstation/templates/default/master_preferences.json.erb +28 -28
- data/generator_files/cookbooks/workstation/templates/default/ssh_config.erb +16 -16
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/automate.crt +26 -26
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/automate.key +27 -27
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/chef.crt +26 -26
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/chef.key +27 -27
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/compliance.crt +26 -26
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/compliance.key +27 -27
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/private.pem +27 -27
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/files/public.pub +1 -1
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/metadata.rb +2 -2
- data/generator_files/cookbooks/workstation/test/fixtures/cookbooks/mock_data/recipes/default.rb +21 -21
- data/generator_files/cookbooks/workstation/test/integration/default/workstation_spec.rb +77 -37
- data/generator_files/packer/automate.json +136 -136
- data/generator_files/packer/build-node.json +142 -142
- data/generator_files/packer/chef-server.json +137 -137
- data/generator_files/packer/compliance.json +133 -133
- data/generator_files/packer/infranodes-windows.json +143 -143
- data/generator_files/packer/infranodes.json +134 -134
- data/generator_files/packer/scripts/PreSysprep.ps1 +9 -0
- data/generator_files/packer/workstation.json +160 -142
- data/generator_files/templates/arm.md.json.erb +754 -754
- data/generator_files/templates/arm.vhd.json.erb +630 -630
- data/generator_files/templates/bootstrap-aws.erb +39 -39
- data/generator_files/templates/cfn.json.erb +675 -674
- data/generator_files/wombat.yml +75 -74
- data/lib/wombat/aws.rb +67 -67
- data/lib/wombat/build.rb +392 -392
- data/lib/wombat/cli.rb +254 -254
- data/lib/wombat/common.rb +420 -420
- data/lib/wombat/crypto.rb +65 -65
- data/lib/wombat/delete.rb +67 -67
- data/lib/wombat/deploy.rb +128 -128
- data/lib/wombat/init.rb +32 -32
- data/lib/wombat/latest.rb +27 -27
- data/lib/wombat/output.rb +101 -101
- data/lib/wombat/update.rb +20 -20
- data/lib/wombat/version.rb +3 -3
- data/lib/wombat.rb +8 -8
- data/spec/functional/common_spec.rb +26 -26
- data/spec/spec_helper.rb +103 -103
- data/spec/unit/common_spec.rb +116 -116
- data/terraform/README.md +13 -13
- data/terraform/templates/terraform.tfvars.erb +12 -12
- data/terraform/wombat.tf +328 -328
- data/wombat-cli.gemspec +36 -36
- metadata +6 -4
data/CHANGELOG.md
CHANGED
@@ -1,423 +1,438 @@
|
|
1
|
-
# Change Log
|
2
|
-
|
3
|
-
## [v0.6.
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
-
|
17
|
-
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
[
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
[
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
-
|
43
|
-
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
-
|
58
|
-
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
[
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
-
|
69
|
-
|
70
|
-
|
71
|
-
[
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
-
|
76
|
-
|
77
|
-
## [v0.4.
|
78
|
-
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.
|
79
|
-
|
80
|
-
**
|
81
|
-
|
82
|
-
-
|
83
|
-
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
[
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
-
|
103
|
-
-
|
104
|
-
-
|
105
|
-
-
|
106
|
-
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
-
|
117
|
-
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
-
|
126
|
-
- Azure
|
127
|
-
-
|
128
|
-
-
|
129
|
-
-
|
130
|
-
-
|
131
|
-
-
|
132
|
-
- Azure
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
-
|
137
|
-
-
|
138
|
-
-
|
139
|
-
-
|
140
|
-
-
|
141
|
-
-
|
142
|
-
|
143
|
-
|
144
|
-
[
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
-
|
149
|
-
-
|
150
|
-
|
151
|
-
|
152
|
-
[
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
-
|
198
|
-
-
|
199
|
-
-
|
200
|
-
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
-
|
207
|
-
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
-
|
222
|
-
-
|
223
|
-
-
|
224
|
-
- Infranodes
|
225
|
-
-
|
226
|
-
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
-
|
231
|
-
-
|
232
|
-
-
|
233
|
-
-
|
234
|
-
-
|
235
|
-
-
|
236
|
-
-
|
237
|
-
-
|
238
|
-
-
|
239
|
-
-
|
240
|
-
-
|
241
|
-
-
|
242
|
-
-
|
243
|
-
-
|
244
|
-
-
|
245
|
-
-
|
246
|
-
- delivery
|
247
|
-
-
|
248
|
-
-
|
249
|
-
-
|
250
|
-
-
|
251
|
-
-
|
252
|
-
-
|
253
|
-
-
|
254
|
-
-
|
255
|
-
-
|
256
|
-
-
|
257
|
-
-
|
258
|
-
-
|
259
|
-
-
|
260
|
-
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
-
|
265
|
-
-
|
266
|
-
-
|
267
|
-
-
|
268
|
-
-
|
269
|
-
-
|
270
|
-
-
|
271
|
-
-
|
272
|
-
-
|
273
|
-
-
|
274
|
-
-
|
275
|
-
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
-
|
280
|
-
- Update
|
281
|
-
-
|
282
|
-
-
|
283
|
-
-
|
284
|
-
-
|
285
|
-
-
|
286
|
-
-
|
287
|
-
-
|
288
|
-
-
|
289
|
-
-
|
290
|
-
-
|
291
|
-
-
|
292
|
-
-
|
293
|
-
-
|
294
|
-
-
|
295
|
-
-
|
296
|
-
-
|
297
|
-
-
|
298
|
-
-
|
299
|
-
-
|
300
|
-
-
|
301
|
-
-
|
302
|
-
-
|
303
|
-
-
|
304
|
-
-
|
305
|
-
-
|
306
|
-
-
|
307
|
-
-
|
308
|
-
-
|
309
|
-
-
|
310
|
-
-
|
311
|
-
-
|
312
|
-
-
|
313
|
-
-
|
314
|
-
-
|
315
|
-
-
|
316
|
-
-
|
317
|
-
-
|
318
|
-
-
|
319
|
-
-
|
320
|
-
-
|
321
|
-
-
|
322
|
-
-
|
323
|
-
-
|
324
|
-
-
|
325
|
-
-
|
326
|
-
-
|
327
|
-
-
|
328
|
-
-
|
329
|
-
-
|
330
|
-
-
|
331
|
-
-
|
332
|
-
-
|
333
|
-
-
|
334
|
-
-
|
335
|
-
-
|
336
|
-
-
|
337
|
-
-
|
338
|
-
-
|
339
|
-
-
|
340
|
-
-
|
341
|
-
-
|
342
|
-
-
|
343
|
-
-
|
344
|
-
-
|
345
|
-
-
|
346
|
-
-
|
347
|
-
-
|
348
|
-
-
|
349
|
-
-
|
350
|
-
-
|
351
|
-
-
|
352
|
-
-
|
353
|
-
-
|
354
|
-
-
|
355
|
-
-
|
356
|
-
-
|
357
|
-
-
|
358
|
-
-
|
359
|
-
-
|
360
|
-
-
|
361
|
-
-
|
362
|
-
-
|
363
|
-
-
|
364
|
-
-
|
365
|
-
-
|
366
|
-
-
|
367
|
-
-
|
368
|
-
-
|
369
|
-
-
|
370
|
-
-
|
371
|
-
-
|
372
|
-
-
|
373
|
-
-
|
374
|
-
-
|
375
|
-
-
|
376
|
-
-
|
377
|
-
-
|
378
|
-
-
|
379
|
-
-
|
380
|
-
-
|
381
|
-
-
|
382
|
-
-
|
383
|
-
-
|
384
|
-
-
|
385
|
-
-
|
386
|
-
-
|
387
|
-
-
|
388
|
-
-
|
389
|
-
-
|
390
|
-
-
|
391
|
-
-
|
392
|
-
-
|
393
|
-
-
|
394
|
-
-
|
395
|
-
-
|
396
|
-
-
|
397
|
-
-
|
398
|
-
-
|
399
|
-
-
|
400
|
-
-
|
401
|
-
-
|
402
|
-
-
|
403
|
-
-
|
404
|
-
-
|
405
|
-
-
|
406
|
-
-
|
407
|
-
-
|
408
|
-
-
|
409
|
-
-
|
410
|
-
-
|
411
|
-
-
|
412
|
-
-
|
413
|
-
-
|
414
|
-
-
|
415
|
-
-
|
416
|
-
-
|
417
|
-
-
|
418
|
-
-
|
419
|
-
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
1
|
+
# Change Log
|
2
|
+
|
3
|
+
## [v0.6.2](https://github.com/chef-cft/wombat/tree/v0.6.2) (2017-09-27)
|
4
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.6.1...v0.6.2)
|
5
|
+
|
6
|
+
**Fixed bugs:**
|
7
|
+
|
8
|
+
- client\_key in knife.rb needs a relative path to work with berks [\#337](https://github.com/chef-cft/wombat/issues/337)
|
9
|
+
- Latest Google Chrome \(58\) broke all our SSL [\#328](https://github.com/chef-cft/wombat/issues/328)
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Upgrade to Windows Server 2016 for workstation Packer template [\#340](https://github.com/chef-cft/wombat/pull/340) ([nweddle](https://github.com/nweddle))
|
14
|
+
- adds relative path to client\_key in knife.rb, fixes \#337 [\#338](https://github.com/chef-cft/wombat/pull/338) ([binamov](https://github.com/binamov))
|
15
|
+
- we should be idempotent right? [\#336](https://github.com/chef-cft/wombat/pull/336) ([andrewelizondo](https://github.com/andrewelizondo))
|
16
|
+
- my mama told me not to run with knives [\#335](https://github.com/chef-cft/wombat/pull/335) ([binamov](https://github.com/binamov))
|
17
|
+
- relative paths ftw [\#334](https://github.com/chef-cft/wombat/pull/334) ([binamov](https://github.com/binamov))
|
18
|
+
|
19
|
+
## [v0.6.1](https://github.com/chef-cft/wombat/tree/v0.6.1) (2017-04-27)
|
20
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.6.0...v0.6.1)
|
21
|
+
|
22
|
+
**Merged pull requests:**
|
23
|
+
|
24
|
+
- adds SAN to certs, missing default attributes [\#332](https://github.com/chef-cft/wombat/pull/332) ([binamov](https://github.com/binamov))
|
25
|
+
|
26
|
+
## [v0.6.0](https://github.com/chef-cft/wombat/tree/v0.6.0) (2017-04-24)
|
27
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.5.0...v0.6.0)
|
28
|
+
|
29
|
+
**Closed issues:**
|
30
|
+
|
31
|
+
- resource group deletions [\#323](https://github.com/chef-cft/wombat/issues/323)
|
32
|
+
- ARM template needs wombat version awareness [\#321](https://github.com/chef-cft/wombat/issues/321)
|
33
|
+
- build on azure appends to logfile [\#318](https://github.com/chef-cft/wombat/issues/318)
|
34
|
+
- does wombat still need to install git? [\#308](https://github.com/chef-cft/wombat/issues/308)
|
35
|
+
|
36
|
+
**Merged pull requests:**
|
37
|
+
|
38
|
+
- v0.6.0 [\#330](https://github.com/chef-cft/wombat/pull/330) ([binamov](https://github.com/binamov))
|
39
|
+
- Pin Chrome to known working version. [\#329](https://github.com/chef-cft/wombat/pull/329) ([scarolan](https://github.com/scarolan))
|
40
|
+
- Slow and steady wins the overextended metaphor. \(Sleeps for rabbit\) [\#327](https://github.com/chef-cft/wombat/pull/327) ([ChefRycar](https://github.com/ChefRycar))
|
41
|
+
- remove hardcoded cert import loop [\#326](https://github.com/chef-cft/wombat/pull/326) ([andrewelizondo](https://github.com/andrewelizondo))
|
42
|
+
- create file to disable telemetry [\#325](https://github.com/chef-cft/wombat/pull/325) ([andrewelizondo](https://github.com/andrewelizondo))
|
43
|
+
- Stack names and Resource Groups in Azure [\#324](https://github.com/chef-cft/wombat/pull/324) ([russellseymour](https://github.com/russellseymour))
|
44
|
+
|
45
|
+
## [v0.5.0](https://github.com/chef-cft/wombat/tree/v0.5.0) (2017-03-21)
|
46
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/release-0.5.0...v0.5.0)
|
47
|
+
|
48
|
+
**Merged pull requests:**
|
49
|
+
|
50
|
+
- Release 0.5.0 [\#320](https://github.com/chef-cft/wombat/pull/320) ([binamov](https://github.com/binamov))
|
51
|
+
|
52
|
+
## [release-0.5.0](https://github.com/chef-cft/wombat/tree/release-0.5.0) (2017-03-20)
|
53
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.3...release-0.5.0)
|
54
|
+
|
55
|
+
**Implemented enhancements:**
|
56
|
+
|
57
|
+
- Base image to use in Azure should be in `wombat.yml` file [\#310](https://github.com/chef-cft/wombat/issues/310)
|
58
|
+
- Add support for Azure Managed Disks [\#309](https://github.com/chef-cft/wombat/issues/309)
|
59
|
+
|
60
|
+
**Closed issues:**
|
61
|
+
|
62
|
+
- azure-storage a missing gem in gemspec? [\#315](https://github.com/chef-cft/wombat/issues/315)
|
63
|
+
- Add Chef Tag for Azure Resources [\#313](https://github.com/chef-cft/wombat/issues/313)
|
64
|
+
- Google Chrome Chocolatey Package Fails Install [\#306](https://github.com/chef-cft/wombat/issues/306)
|
65
|
+
|
66
|
+
**Merged pull requests:**
|
67
|
+
|
68
|
+
- no more Administrator [\#319](https://github.com/chef-cft/wombat/pull/319) ([binamov](https://github.com/binamov))
|
69
|
+
- Select whether to use Managed Disks or not [\#317](https://github.com/chef-cft/wombat/pull/317) ([russellseymour](https://github.com/russellseymour))
|
70
|
+
- azure enhancements [\#316](https://github.com/chef-cft/wombat/pull/316) ([binamov](https://github.com/binamov))
|
71
|
+
- Added Azure Provide Tag for Chef to resources [\#314](https://github.com/chef-cft/wombat/pull/314) ([russellseymour](https://github.com/russellseymour))
|
72
|
+
- Added support for Azure Managed Disks [\#312](https://github.com/chef-cft/wombat/pull/312) ([russellseymour](https://github.com/russellseymour))
|
73
|
+
- Azure base image can now be specified in wombat.yml [\#311](https://github.com/chef-cft/wombat/pull/311) ([russellseymour](https://github.com/russellseymour))
|
74
|
+
- Remove checksum verification for Google Chrome Chocolatey package [\#307](https://github.com/chef-cft/wombat/pull/307) ([nweddle](https://github.com/nweddle))
|
75
|
+
- Release 0.4.3 [\#305](https://github.com/chef-cft/wombat/pull/305) ([binamov](https://github.com/binamov))
|
76
|
+
|
77
|
+
## [v0.4.3](https://github.com/chef-cft/wombat/tree/v0.4.3) (2017-02-23)
|
78
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.2...v0.4.3)
|
79
|
+
|
80
|
+
**Merged pull requests:**
|
81
|
+
|
82
|
+
- namespacery [\#304](https://github.com/chef-cft/wombat/pull/304) ([binamov](https://github.com/binamov))
|
83
|
+
- Release 0.4.2 [\#303](https://github.com/chef-cft/wombat/pull/303) ([binamov](https://github.com/binamov))
|
84
|
+
|
85
|
+
## [v0.4.2](https://github.com/chef-cft/wombat/tree/v0.4.2) (2017-02-23)
|
86
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.1...v0.4.2)
|
87
|
+
|
88
|
+
**Merged pull requests:**
|
89
|
+
|
90
|
+
- namespace fix, unblocks bjc pipeline deploys [\#302](https://github.com/chef-cft/wombat/pull/302) ([binamov](https://github.com/binamov))
|
91
|
+
|
92
|
+
## [v0.4.1](https://github.com/chef-cft/wombat/tree/v0.4.1) (2017-02-23)
|
93
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.0...v0.4.1)
|
94
|
+
|
95
|
+
**Closed issues:**
|
96
|
+
|
97
|
+
- can't build infranodes [\#299](https://github.com/chef-cft/wombat/issues/299)
|
98
|
+
- `wombat outputs` and azure [\#293](https://github.com/chef-cft/wombat/issues/293)
|
99
|
+
|
100
|
+
**Merged pull requests:**
|
101
|
+
|
102
|
+
- Release 0.4.1 [\#301](https://github.com/chef-cft/wombat/pull/301) ([cheeseplus](https://github.com/cheeseplus))
|
103
|
+
- Options not being seen by `base\_image` fixes \#299 [\#300](https://github.com/chef-cft/wombat/pull/300) ([russellseymour](https://github.com/russellseymour))
|
104
|
+
- Enabled outputs for Azure deployments [\#298](https://github.com/chef-cft/wombat/pull/298) ([russellseymour](https://github.com/russellseymour))
|
105
|
+
- chef-server-ctl don't work on compliance [\#297](https://github.com/chef-cft/wombat/pull/297) ([binamov](https://github.com/binamov))
|
106
|
+
- Added support to selectively delete items in the RG [\#296](https://github.com/chef-cft/wombat/pull/296) ([russellseymour](https://github.com/russellseymour))
|
107
|
+
- uses the password from wombat [\#295](https://github.com/chef-cft/wombat/pull/295) ([binamov](https://github.com/binamov))
|
108
|
+
- Modified the way in which Azure tags can be set [\#294](https://github.com/chef-cft/wombat/pull/294) ([russellseymour](https://github.com/russellseymour))
|
109
|
+
- Updating vagrantfile, lower resources and fixed cookbook names [\#292](https://github.com/chef-cft/wombat/pull/292) ([cheeseplus](https://github.com/cheeseplus))
|
110
|
+
|
111
|
+
## [v0.4.0](https://github.com/chef-cft/wombat/tree/v0.4.0) (2017-02-10)
|
112
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.4...v0.4.0)
|
113
|
+
|
114
|
+
**Implemented enhancements:**
|
115
|
+
|
116
|
+
- Templatized kitchen-ec2 setups. [\#280](https://github.com/chef-cft/wombat/issues/280)
|
117
|
+
- Add Test Kitchen data to visibility [\#279](https://github.com/chef-cft/wombat/issues/279)
|
118
|
+
- Decrease data\_collector timeout during build [\#262](https://github.com/chef-cft/wombat/issues/262)
|
119
|
+
- Add in debug support for packer [\#260](https://github.com/chef-cft/wombat/issues/260)
|
120
|
+
- Add Visual Studio Code to installed programs [\#210](https://github.com/chef-cft/wombat/issues/210)
|
121
|
+
- AWS: Alias for latest AMI that looks it up [\#208](https://github.com/chef-cft/wombat/issues/208)
|
122
|
+
|
123
|
+
**Closed issues:**
|
124
|
+
|
125
|
+
- Wombat throws an error when building Infranodes but the packer command is OK [\#284](https://github.com/chef-cft/wombat/issues/284)
|
126
|
+
- Windows machines cannot be prepared for Azure after running cookbooks [\#278](https://github.com/chef-cft/wombat/issues/278)
|
127
|
+
- When building for Azure `packer` does not complete properly [\#277](https://github.com/chef-cft/wombat/issues/277)
|
128
|
+
- posh-git not installing correctly [\#274](https://github.com/chef-cft/wombat/issues/274)
|
129
|
+
- `wombat build` command should have an option to make AMIs public [\#271](https://github.com/chef-cft/wombat/issues/271)
|
130
|
+
- wombat.yml shouldn't be a hardcoded name [\#265](https://github.com/chef-cft/wombat/issues/265)
|
131
|
+
- AWS: Default Windows AMI is deprecated [\#203](https://github.com/chef-cft/wombat/issues/203)
|
132
|
+
- Azure: verify build process and add ARM template [\#43](https://github.com/chef-cft/wombat/issues/43)
|
133
|
+
|
134
|
+
**Merged pull requests:**
|
135
|
+
|
136
|
+
- Release 0.4.0 [\#291](https://github.com/chef-cft/wombat/pull/291) ([cheeseplus](https://github.com/cheeseplus))
|
137
|
+
- Adding Travis config and fixing spec tests [\#290](https://github.com/chef-cft/wombat/pull/290) ([cheeseplus](https://github.com/cheeseplus))
|
138
|
+
- Add new command`latest` for getting latest cloud images [\#289](https://github.com/chef-cft/wombat/pull/289) ([cheeseplus](https://github.com/cheeseplus))
|
139
|
+
- Refactor how source\_ami/image work [\#288](https://github.com/chef-cft/wombat/pull/288) ([cheeseplus](https://github.com/cheeseplus))
|
140
|
+
- Owner now defaults to USER from ENV [\#287](https://github.com/chef-cft/wombat/pull/287) ([russellseymour](https://github.com/russellseymour))
|
141
|
+
- Azure updates 2017-02-07 [\#286](https://github.com/chef-cft/wombat/pull/286) ([russellseymour](https://github.com/russellseymour))
|
142
|
+
- Creation and removal of stack within Azure [\#285](https://github.com/chef-cft/wombat/pull/285) ([russellseymour](https://github.com/russellseymour))
|
143
|
+
- fixes for changed automate api [\#283](https://github.com/chef-cft/wombat/pull/283) ([binamov](https://github.com/binamov))
|
144
|
+
- Modified IP range in Azure to match Wombat attributes [\#282](https://github.com/chef-cft/wombat/pull/282) ([russellseymour](https://github.com/russellseymour))
|
145
|
+
- Namespacing, break out crypto, and tests [\#281](https://github.com/chef-cft/wombat/pull/281) ([cheeseplus](https://github.com/cheeseplus))
|
146
|
+
- Fix posh-git PowerShell module loading [\#275](https://github.com/chef-cft/wombat/pull/275) ([nweddle](https://github.com/nweddle))
|
147
|
+
- Azure custom images [\#273](https://github.com/chef-cft/wombat/pull/273) ([russellseymour](https://github.com/russellseymour))
|
148
|
+
- Update Azure templates and add ARM ERB template [\#272](https://github.com/chef-cft/wombat/pull/272) ([cheeseplus](https://github.com/cheeseplus))
|
149
|
+
- Merging in changes from rjs-azure [\#269](https://github.com/chef-cft/wombat/pull/269) ([cheeseplus](https://github.com/cheeseplus))
|
150
|
+
- Make files\_dir toggleable and set default consistently [\#268](https://github.com/chef-cft/wombat/pull/268) ([cheeseplus](https://github.com/cheeseplus))
|
151
|
+
- add conf to infranodes path, remove repetition, fix typo [\#267](https://github.com/chef-cft/wombat/pull/267) ([andrewelizondo](https://github.com/andrewelizondo))
|
152
|
+
- add cli option, env variable, and default wombat.yml [\#266](https://github.com/chef-cft/wombat/pull/266) ([andrewelizondo](https://github.com/andrewelizondo))
|
153
|
+
- Re-enable .NET speed optimizations [\#264](https://github.com/chef-cft/wombat/pull/264) ([nweddle](https://github.com/nweddle))
|
154
|
+
- Rycar/reduce dc timeout [\#263](https://github.com/chef-cft/wombat/pull/263) ([ChefRycar](https://github.com/ChefRycar))
|
155
|
+
- Fixing path for files dir to be top-level everywhere [\#261](https://github.com/chef-cft/wombat/pull/261) ([cheeseplus](https://github.com/cheeseplus))
|
156
|
+
- Release 0.3.4 [\#258](https://github.com/chef-cft/wombat/pull/258) ([cheeseplus](https://github.com/cheeseplus))
|
157
|
+
|
158
|
+
## [v0.3.4](https://github.com/chef-cft/wombat/tree/v0.3.4) (2016-12-07)
|
159
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.3...v0.3.4)
|
160
|
+
|
161
|
+
**Merged pull requests:**
|
162
|
+
|
163
|
+
- Cmder workaround workstation build [\#257](https://github.com/chef-cft/wombat/pull/257) ([andrewelizondo](https://github.com/andrewelizondo))
|
164
|
+
- aww yeah baby [\#256](https://github.com/chef-cft/wombat/pull/256) ([andrewelizondo](https://github.com/andrewelizondo))
|
165
|
+
|
166
|
+
## [v0.3.3](https://github.com/chef-cft/wombat/tree/v0.3.3) (2016-11-15)
|
167
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.2...v0.3.3)
|
168
|
+
|
169
|
+
**Merged pull requests:**
|
170
|
+
|
171
|
+
- Prep 0.3.3 for release [\#254](https://github.com/chef-cft/wombat/pull/254) ([cheeseplus](https://github.com/cheeseplus))
|
172
|
+
- The dotnet opimizations are breaking builds, disabling recipe [\#253](https://github.com/chef-cft/wombat/pull/253) ([cheeseplus](https://github.com/cheeseplus))
|
173
|
+
|
174
|
+
## [v0.3.2](https://github.com/chef-cft/wombat/tree/v0.3.2) (2016-11-14)
|
175
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.1...v0.3.2)
|
176
|
+
|
177
|
+
**Merged pull requests:**
|
178
|
+
|
179
|
+
- Prep 0.3.2 for release and add changelog [\#252](https://github.com/chef-cft/wombat/pull/252) ([cheeseplus](https://github.com/cheeseplus))
|
180
|
+
- Readme badge hotfix [\#251](https://github.com/chef-cft/wombat/pull/251) ([cheeseplus](https://github.com/cheeseplus))
|
181
|
+
- Fix examples, update readme [\#247](https://github.com/chef-cft/wombat/pull/247) ([cheeseplus](https://github.com/cheeseplus))
|
182
|
+
|
183
|
+
## [v0.3.1](https://github.com/chef-cft/wombat/tree/v0.3.1) (2016-11-04)
|
184
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.3.0...v0.3.1)
|
185
|
+
|
186
|
+
**Merged pull requests:**
|
187
|
+
|
188
|
+
- 0.3.1 release [\#246](https://github.com/chef-cft/wombat/pull/246) ([cheeseplus](https://github.com/cheeseplus))
|
189
|
+
- Log parsing, like honeybader, does not give... [\#245](https://github.com/chef-cft/wombat/pull/245) ([cheeseplus](https://github.com/cheeseplus))
|
190
|
+
|
191
|
+
## [v0.3.0](https://github.com/chef-cft/wombat/tree/v0.3.0) (2016-11-03)
|
192
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.2.1...v0.3.0)
|
193
|
+
|
194
|
+
**Closed issues:**
|
195
|
+
|
196
|
+
- Need ability to specify iam\_profile for the Windows workstation [\#240](https://github.com/chef-cft/wombat/issues/240)
|
197
|
+
- No multiple WS usernames in Automate server, Chef Server, or Compliance server [\#236](https://github.com/chef-cft/wombat/issues/236)
|
198
|
+
- ./wombat deploy bjc-demo fails if there are no logs in packer/logs [\#234](https://github.com/chef-cft/wombat/issues/234)
|
199
|
+
- remove hardcoded template names [\#231](https://github.com/chef-cft/wombat/issues/231)
|
200
|
+
- wombat-cli in rubygems needs a bump [\#230](https://github.com/chef-cft/wombat/issues/230)
|
201
|
+
|
202
|
+
**Merged pull requests:**
|
203
|
+
|
204
|
+
- Add init subcommand and become a real gem [\#244](https://github.com/chef-cft/wombat/pull/244) ([cheeseplus](https://github.com/cheeseplus))
|
205
|
+
- Add update command for lock and template [\#243](https://github.com/chef-cft/wombat/pull/243) ([cheeseplus](https://github.com/cheeseplus))
|
206
|
+
- Optionally apply IAM roles to workstations. Fix \#240 [\#242](https://github.com/chef-cft/wombat/pull/242) ([cheeseplus](https://github.com/cheeseplus))
|
207
|
+
- Make configuration truly optional [\#241](https://github.com/chef-cft/wombat/pull/241) ([cheeseplus](https://github.com/cheeseplus))
|
208
|
+
|
209
|
+
## [v0.2.1](https://github.com/chef-cft/wombat/tree/v0.2.1) (2016-10-19)
|
210
|
+
**Implemented enhancements:**
|
211
|
+
|
212
|
+
- Generate sample data and node backups for Compliance server [\#172](https://github.com/chef-cft/wombat/issues/172)
|
213
|
+
- Sort out how to copy license key to Delivery server [\#138](https://github.com/chef-cft/wombat/issues/138)
|
214
|
+
- Add bookmarks to Learn Chef tutorials on the workstation [\#126](https://github.com/chef-cft/wombat/issues/126)
|
215
|
+
- all packer templates should have the same variables, simplifying our rake commands [\#124](https://github.com/chef-cft/wombat/issues/124)
|
216
|
+
- Chef DK now includes Delivery CLI [\#123](https://github.com/chef-cft/wombat/issues/123)
|
217
|
+
- set FQDN in config for all server products [\#93](https://github.com/chef-cft/wombat/issues/93)
|
218
|
+
|
219
|
+
**Fixed bugs:**
|
220
|
+
|
221
|
+
- delivery: automate and viz bomb because /etc/hosts file is missing localhost [\#167](https://github.com/chef-cft/wombat/issues/167)
|
222
|
+
- Infranodes have invalid client config [\#117](https://github.com/chef-cft/wombat/issues/117)
|
223
|
+
- Extra AMIs are generated [\#116](https://github.com/chef-cft/wombat/issues/116)
|
224
|
+
- Infranodes aren't available for push jobs [\#110](https://github.com/chef-cft/wombat/issues/110)
|
225
|
+
- Cannot run push jobs on nodes from Windows workstation [\#108](https://github.com/chef-cft/wombat/issues/108)
|
226
|
+
- Windows workstation should have a Chef server config [\#99](https://github.com/chef-cft/wombat/issues/99)
|
227
|
+
|
228
|
+
**Closed issues:**
|
229
|
+
|
230
|
+
- How does this relate to the main Automate documentation? [\#229](https://github.com/chef-cft/wombat/issues/229)
|
231
|
+
- Support CentOS [\#217](https://github.com/chef-cft/wombat/issues/217)
|
232
|
+
- Add Cucumber tests [\#215](https://github.com/chef-cft/wombat/issues/215)
|
233
|
+
- Move keys to top level dir [\#211](https://github.com/chef-cft/wombat/issues/211)
|
234
|
+
- Building workstation image fails [\#204](https://github.com/chef-cft/wombat/issues/204)
|
235
|
+
- workstation: Upon first boot, .NET compiles all the things, leading to clunky experience [\#202](https://github.com/chef-cft/wombat/issues/202)
|
236
|
+
- Extract PSReadLine resource needs a guard [\#196](https://github.com/chef-cft/wombat/issues/196)
|
237
|
+
- include `keys:create` task in `packer:build\_ami\*` commands [\#188](https://github.com/chef-cft/wombat/issues/188)
|
238
|
+
- Abstract Common Functions to Wombat [\#182](https://github.com/chef-cft/wombat/issues/182)
|
239
|
+
- Infranodes have no tests [\#181](https://github.com/chef-cft/wombat/issues/181)
|
240
|
+
- Whats in a name? [\#180](https://github.com/chef-cft/wombat/issues/180)
|
241
|
+
- add workstation to hosts file [\#176](https://github.com/chef-cft/wombat/issues/176)
|
242
|
+
- The Great Automate Renaming [\#175](https://github.com/chef-cft/wombat/issues/175)
|
243
|
+
- chef-server::cheffish needs support for environments [\#169](https://github.com/chef-cft/wombat/issues/169)
|
244
|
+
- support multiple workstations [\#163](https://github.com/chef-cft/wombat/issues/163)
|
245
|
+
- Delivery should NOT delete its license [\#159](https://github.com/chef-cft/wombat/issues/159)
|
246
|
+
- s/delivery.license/automate.license [\#158](https://github.com/chef-cft/wombat/issues/158)
|
247
|
+
- Chef Server build breaks on v 12.8.0 [\#153](https://github.com/chef-cft/wombat/issues/153)
|
248
|
+
- Update Chrome bookmarks [\#150](https://github.com/chef-cft/wombat/issues/150)
|
249
|
+
- Sorting of infra breaks on an empty array [\#139](https://github.com/chef-cft/wombat/issues/139)
|
250
|
+
- Build nodes are not using the provided chefdk version attribute. [\#135](https://github.com/chef-cft/wombat/issues/135)
|
251
|
+
- Chef version not being used in bootstrap process [\#134](https://github.com/chef-cft/wombat/issues/134)
|
252
|
+
- Push jobs not configured in all environments [\#133](https://github.com/chef-cft/wombat/issues/133)
|
253
|
+
- workstation\_spec.rb failures [\#127](https://github.com/chef-cft/wombat/issues/127)
|
254
|
+
- Do initial CCR on infranodes during cloud-init [\#114](https://github.com/chef-cft/wombat/issues/114)
|
255
|
+
- Windows workstation: knife doesn't know what server\_url is [\#107](https://github.com/chef-cft/wombat/issues/107)
|
256
|
+
- etc-hosts recipe doesn't respect infranodes on windows [\#101](https://github.com/chef-cft/wombat/issues/101)
|
257
|
+
- CFN template contains invalid AMI IDs [\#96](https://github.com/chef-cft/wombat/issues/96)
|
258
|
+
- ordering in /etc/hosts matters for automatically setting FQDN [\#92](https://github.com/chef-cft/wombat/issues/92)
|
259
|
+
- Support multiple regions [\#91](https://github.com/chef-cft/wombat/issues/91)
|
260
|
+
- workstation has hardcoded hostsfile [\#84](https://github.com/chef-cft/wombat/issues/84)
|
261
|
+
- delivery and build-node cookbooks no longer allow for multiple build-nodes [\#75](https://github.com/chef-cft/wombat/issues/75)
|
262
|
+
- wombat.json is becoming overly complex [\#74](https://github.com/chef-cft/wombat/issues/74)
|
263
|
+
- Add cloudinit to CloudFormation instance resources [\#70](https://github.com/chef-cft/wombat/issues/70)
|
264
|
+
- Update Readme to reflect refactoring [\#69](https://github.com/chef-cft/wombat/issues/69)
|
265
|
+
- Add tests to build-node cookbook [\#67](https://github.com/chef-cft/wombat/issues/67)
|
266
|
+
- after renaming the delivery server to delivery, the cert is throwing a name mismatch [\#55](https://github.com/chef-cft/wombat/issues/55)
|
267
|
+
- instead of a cert for chef/delivery separately, we should just create a self signed star cert [\#54](https://github.com/chef-cft/wombat/issues/54)
|
268
|
+
- The Curious Case of License Keys [\#51](https://github.com/chef-cft/wombat/issues/51)
|
269
|
+
- Determine how to pre-load data [\#50](https://github.com/chef-cft/wombat/issues/50)
|
270
|
+
- Add virtualbox builder for packer [\#39](https://github.com/chef-cft/wombat/issues/39)
|
271
|
+
- Create acceptance node build [\#35](https://github.com/chef-cft/wombat/issues/35)
|
272
|
+
- Add chef compliance build [\#34](https://github.com/chef-cft/wombat/issues/34)
|
273
|
+
- Output artifact: CloudFormation template [\#28](https://github.com/chef-cft/wombat/issues/28)
|
274
|
+
- delivery\_builder: configure with cookbook [\#27](https://github.com/chef-cft/wombat/issues/27)
|
275
|
+
- Need to cleanup packer logs or not simply append [\#15](https://github.com/chef-cft/wombat/issues/15)
|
276
|
+
|
277
|
+
**Merged pull requests:**
|
278
|
+
|
279
|
+
- Release 0.2.1 [\#239](https://github.com/chef-cft/wombat/pull/239) ([cheeseplus](https://github.com/cheeseplus))
|
280
|
+
- Update readme to reflect new options [\#238](https://github.com/chef-cft/wombat/pull/238) ([cheeseplus](https://github.com/cheeseplus))
|
281
|
+
- Make updating the lock and template optional [\#237](https://github.com/chef-cft/wombat/pull/237) ([cheeseplus](https://github.com/cheeseplus))
|
282
|
+
- fixes multi-ws, multi-build-node cft generation [\#235](https://github.com/chef-cft/wombat/pull/235) ([binamov](https://github.com/binamov))
|
283
|
+
- Adjustable timeout [\#226](https://github.com/chef-cft/wombat/pull/226) ([cheeseplus](https://github.com/cheeseplus))
|
284
|
+
- Workstation builds based on key [\#225](https://github.com/chef-cft/wombat/pull/225) ([cheeseplus](https://github.com/cheeseplus))
|
285
|
+
- Fixing parallel builds [\#224](https://github.com/chef-cft/wombat/pull/224) ([cheeseplus](https://github.com/cheeseplus))
|
286
|
+
- Fix linux infranodes, build, and logic refactor [\#223](https://github.com/chef-cft/wombat/pull/223) ([cheeseplus](https://github.com/cheeseplus))
|
287
|
+
- Instance resizing [\#222](https://github.com/chef-cft/wombat/pull/222) ([cheeseplus](https://github.com/cheeseplus))
|
288
|
+
- Windows infranodes GO [\#221](https://github.com/chef-cft/wombat/pull/221) ([cheeseplus](https://github.com/cheeseplus))
|
289
|
+
- Infranodes cookbook windows support [\#220](https://github.com/chef-cft/wombat/pull/220) ([cheeseplus](https://github.com/cheeseplus))
|
290
|
+
- Simplify build logic [\#219](https://github.com/chef-cft/wombat/pull/219) ([cheeseplus](https://github.com/cheeseplus))
|
291
|
+
- Adding CentOS support parity [\#218](https://github.com/chef-cft/wombat/pull/218) ([cheeseplus](https://github.com/cheeseplus))
|
292
|
+
- Remove errant cookbook [\#216](https://github.com/chef-cft/wombat/pull/216) ([cheeseplus](https://github.com/cheeseplus))
|
293
|
+
- Wombat has morphed into a RubyGem [\#213](https://github.com/chef-cft/wombat/pull/213) ([cheeseplus](https://github.com/cheeseplus))
|
294
|
+
- Fixes \#211 [\#212](https://github.com/chef-cft/wombat/pull/212) ([cheeseplus](https://github.com/cheeseplus))
|
295
|
+
- Update README.md [\#209](https://github.com/chef-cft/wombat/pull/209) ([andrewelizondo](https://github.com/andrewelizondo))
|
296
|
+
- All Hail Wombat [\#207](https://github.com/chef-cft/wombat/pull/207) ([cheeseplus](https://github.com/cheeseplus))
|
297
|
+
- Make .NET Great Again [\#206](https://github.com/chef-cft/wombat/pull/206) ([nweddle](https://github.com/nweddle))
|
298
|
+
- Move authorized keys functionality into Wombat cookbook [\#201](https://github.com/chef-cft/wombat/pull/201) ([cheeseplus](https://github.com/cheeseplus))
|
299
|
+
- Fix tests [\#200](https://github.com/chef-cft/wombat/pull/200) ([cheeseplus](https://github.com/cheeseplus))
|
300
|
+
- The PTY, we needs it [\#199](https://github.com/chef-cft/wombat/pull/199) ([cheeseplus](https://github.com/cheeseplus))
|
301
|
+
- Ask your doctor if Guards are right for you [\#198](https://github.com/chef-cft/wombat/pull/198) ([scarolan](https://github.com/scarolan))
|
302
|
+
- Adding support for GCE [\#193](https://github.com/chef-cft/wombat/pull/193) ([cheeseplus](https://github.com/cheeseplus))
|
303
|
+
- ensure we're using the correct local variable name [\#192](https://github.com/chef-cft/wombat/pull/192) ([andrewelizondo](https://github.com/andrewelizondo))
|
304
|
+
- fixes ssh for workstation-N users [\#190](https://github.com/chef-cft/wombat/pull/190) ([binamov](https://github.com/binamov))
|
305
|
+
- Fixing more rename fallout because I am a bad man [\#189](https://github.com/chef-cft/wombat/pull/189) ([cheeseplus](https://github.com/cheeseplus))
|
306
|
+
- add support for chef environments [\#187](https://github.com/chef-cft/wombat/pull/187) ([andrewelizondo](https://github.com/andrewelizondo))
|
307
|
+
- Suppress crt/key content [\#185](https://github.com/chef-cft/wombat/pull/185) ([cheeseplus](https://github.com/cheeseplus))
|
308
|
+
- Fixing serial and parallel build\_all tasks [\#184](https://github.com/chef-cft/wombat/pull/184) ([cheeseplus](https://github.com/cheeseplus))
|
309
|
+
- The road to hell is paved with dashes [\#183](https://github.com/chef-cft/wombat/pull/183) ([cheeseplus](https://github.com/cheeseplus))
|
310
|
+
- The Great Renaming [\#179](https://github.com/chef-cft/wombat/pull/179) ([cheeseplus](https://github.com/cheeseplus))
|
311
|
+
- Fix the install command for Windows [\#178](https://github.com/chef-cft/wombat/pull/178) ([cheeseplus](https://github.com/cheeseplus))
|
312
|
+
- Fixing compliance user [\#177](https://github.com/chef-cft/wombat/pull/177) ([cheeseplus](https://github.com/cheeseplus))
|
313
|
+
- Cleanup the variables across templates [\#174](https://github.com/chef-cft/wombat/pull/174) ([cheeseplus](https://github.com/cheeseplus))
|
314
|
+
- waffle.io Badge [\#173](https://github.com/chef-cft/wombat/pull/173) ([waffle-iron](https://github.com/waffle-iron))
|
315
|
+
- Fixes for multi workstation and cheffish permissions [\#171](https://github.com/chef-cft/wombat/pull/171) ([cheeseplus](https://github.com/cheeseplus))
|
316
|
+
- Cleaner hostsfile workaround - fixes \#167 [\#170](https://github.com/chef-cft/wombat/pull/170) ([cheeseplus](https://github.com/cheeseplus))
|
317
|
+
- Support multiple workstations [\#166](https://github.com/chef-cft/wombat/pull/166) ([cheeseplus](https://github.com/cheeseplus))
|
318
|
+
- Chocolately is enforcing security that not all packages abide by - temp fix [\#165](https://github.com/chef-cft/wombat/pull/165) ([cheeseplus](https://github.com/cheeseplus))
|
319
|
+
- Since we've changed the default domain, we need to regen keys [\#164](https://github.com/chef-cft/wombat/pull/164) ([cheeseplus](https://github.com/cheeseplus))
|
320
|
+
- Updating defaults and making naming simpler [\#162](https://github.com/chef-cft/wombat/pull/162) ([cheeseplus](https://github.com/cheeseplus))
|
321
|
+
- makes ssh\_key in kitchen path agnostic [\#161](https://github.com/chef-cft/wombat/pull/161) ([binamov](https://github.com/binamov))
|
322
|
+
- does not delete delivery.license, fixes \#159 [\#160](https://github.com/chef-cft/wombat/pull/160) ([binamov](https://github.com/binamov))
|
323
|
+
- fixes ~/.ssh/config for real this time [\#157](https://github.com/chef-cft/wombat/pull/157) ([binamov](https://github.com/binamov))
|
324
|
+
- More CloudFormation powers [\#156](https://github.com/chef-cft/wombat/pull/156) ([cheeseplus](https://github.com/cheeseplus))
|
325
|
+
- Fix rake aborting when infranodes: YAML key value is undefined [\#155](https://github.com/chef-cft/wombat/pull/155) ([nweddle](https://github.com/nweddle))
|
326
|
+
- add api\_fqdn to chef-server.rb [\#152](https://github.com/chef-cft/wombat/pull/152) ([andrewelizondo](https://github.com/andrewelizondo))
|
327
|
+
- fixes ~/.ssh/config for delivery [\#151](https://github.com/chef-cft/wombat/pull/151) ([binamov](https://github.com/binamov))
|
328
|
+
- Delete the license key [\#149](https://github.com/chef-cft/wombat/pull/149) ([tpetchel](https://github.com/tpetchel))
|
329
|
+
- Add bookmark to Learn Chef tutorial [\#148](https://github.com/chef-cft/wombat/pull/148) ([tpetchel](https://github.com/tpetchel))
|
330
|
+
- Copy the pub key to workstation [\#147](https://github.com/chef-cft/wombat/pull/147) ([cheeseplus](https://github.com/cheeseplus))
|
331
|
+
- Use the API [\#146](https://github.com/chef-cft/wombat/pull/146) ([cheeseplus](https://github.com/cheeseplus))
|
332
|
+
- Lazy load wombat cookbook artifacts [\#145](https://github.com/chef-cft/wombat/pull/145) ([andrewelizondo](https://github.com/andrewelizondo))
|
333
|
+
- add keys:create task to recipe [\#144](https://github.com/chef-cft/wombat/pull/144) ([andrewelizondo](https://github.com/andrewelizondo))
|
334
|
+
- simplify kitchen build, output artifacts into shared directory [\#143](https://github.com/chef-cft/wombat/pull/143) ([andrewelizondo](https://github.com/andrewelizondo))
|
335
|
+
- kitchenize our build process [\#142](https://github.com/chef-cft/wombat/pull/142) ([andrewelizondo](https://github.com/andrewelizondo))
|
336
|
+
- remove unneeded guards in packer\_build method [\#141](https://github.com/chef-cft/wombat/pull/141) ([andrewelizondo](https://github.com/andrewelizondo))
|
337
|
+
- Added if to sort to account for empty array. Updated readme with corr… [\#140](https://github.com/chef-cft/wombat/pull/140) ([ChefRycar](https://github.com/ChefRycar))
|
338
|
+
- sort when reading the rakefile [\#137](https://github.com/chef-cft/wombat/pull/137) ([andrewelizondo](https://github.com/andrewelizondo))
|
339
|
+
- change the do\_all command to update wombat.lock [\#136](https://github.com/chef-cft/wombat/pull/136) ([andrewelizondo](https://github.com/andrewelizondo))
|
340
|
+
- Set fqdn compliance [\#132](https://github.com/chef-cft/wombat/pull/132) ([andrewelizondo](https://github.com/andrewelizondo))
|
341
|
+
- Prepend channel in infranodes.json [\#131](https://github.com/chef-cft/wombat/pull/131) ([tpetchel](https://github.com/tpetchel))
|
342
|
+
- Use $CHANNEL-$VERSION [\#130](https://github.com/chef-cft/wombat/pull/130) ([cheeseplus](https://github.com/cheeseplus))
|
343
|
+
- Rycar/add domain prefix [\#129](https://github.com/chef-cft/wombat/pull/129) ([ChefRycar](https://github.com/ChefRycar))
|
344
|
+
- Fixup data\_collector [\#128](https://github.com/chef-cft/wombat/pull/128) ([tpetchel](https://github.com/tpetchel))
|
345
|
+
- add version of chefdk to build-node [\#125](https://github.com/chef-cft/wombat/pull/125) ([andrewelizondo](https://github.com/andrewelizondo))
|
346
|
+
- Update Push Jobs setup on infranodes, include config.d, vendor in infra/build-nodes [\#122](https://github.com/chef-cft/wombat/pull/122) ([andrewelizondo](https://github.com/andrewelizondo))
|
347
|
+
- move config.d under .chef [\#121](https://github.com/chef-cft/wombat/pull/121) ([andrewelizondo](https://github.com/andrewelizondo))
|
348
|
+
- quote it in case of spaces :D [\#120](https://github.com/chef-cft/wombat/pull/120) ([andrewelizondo](https://github.com/andrewelizondo))
|
349
|
+
- remove port and enterprise from data collector [\#119](https://github.com/chef-cft/wombat/pull/119) ([andrewelizondo](https://github.com/andrewelizondo))
|
350
|
+
- Fix data collector and correct node-name [\#118](https://github.com/chef-cft/wombat/pull/118) ([andrewelizondo](https://github.com/andrewelizondo))
|
351
|
+
- use grep on the log file to select a matching ami [\#113](https://github.com/chef-cft/wombat/pull/113) ([andrewelizondo](https://github.com/andrewelizondo))
|
352
|
+
- control admins group in cheffish, conf\_d directory on workstation [\#112](https://github.com/chef-cft/wombat/pull/112) ([andrewelizondo](https://github.com/andrewelizondo))
|
353
|
+
- we already have the etc-hosts information, make ssh config simpler [\#111](https://github.com/chef-cft/wombat/pull/111) ([andrewelizondo](https://github.com/andrewelizondo))
|
354
|
+
- Workstation cleanup, atom replaces vscode, remove scripts [\#106](https://github.com/chef-cft/wombat/pull/106) ([cheeseplus](https://github.com/cheeseplus))
|
355
|
+
- Couple of fixes to get basic vagrant install working [\#105](https://github.com/chef-cft/wombat/pull/105) ([irvingpop](https://github.com/irvingpop))
|
356
|
+
- Update default.rb [\#104](https://github.com/chef-cft/wombat/pull/104) ([andrewelizondo](https://github.com/andrewelizondo))
|
357
|
+
- update rake tasks, add auth keys [\#103](https://github.com/chef-cft/wombat/pull/103) ([andrewelizondo](https://github.com/andrewelizondo))
|
358
|
+
- fixed etc hosts for windows workstation [\#102](https://github.com/chef-cft/wombat/pull/102) ([andrewelizondo](https://github.com/andrewelizondo))
|
359
|
+
- Fixing knife.rb and a bookmark [\#100](https://github.com/chef-cft/wombat/pull/100) ([cheeseplus](https://github.com/cheeseplus))
|
360
|
+
- the great infra nodes war of 1812 [\#98](https://github.com/chef-cft/wombat/pull/98) ([andrewelizondo](https://github.com/andrewelizondo))
|
361
|
+
- Trim workstation install and have chef-server use wombat cookbook users [\#97](https://github.com/chef-cft/wombat/pull/97) ([cheeseplus](https://github.com/cheeseplus))
|
362
|
+
- Adding cmder config [\#95](https://github.com/chef-cft/wombat/pull/95) ([cheeseplus](https://github.com/cheeseplus))
|
363
|
+
- Fix fqdn with /etc/hosts ordering and allow user defined source\_amis [\#94](https://github.com/chef-cft/wombat/pull/94) ([cheeseplus](https://github.com/cheeseplus))
|
364
|
+
- Refactor workstation to indiv recipes [\#90](https://github.com/chef-cft/wombat/pull/90) ([cheeseplus](https://github.com/cheeseplus))
|
365
|
+
- Adding compliance to CFN template, misc fixes [\#89](https://github.com/chef-cft/wombat/pull/89) ([cheeseplus](https://github.com/cheeseplus))
|
366
|
+
- Cleanup build node recipes and use wombat cookbook [\#88](https://github.com/chef-cft/wombat/pull/88) ([cheeseplus](https://github.com/cheeseplus))
|
367
|
+
- Don't let the counting for build and infra nodes be clever, use fixed integer starting points [\#87](https://github.com/chef-cft/wombat/pull/87) ([cheeseplus](https://github.com/cheeseplus))
|
368
|
+
- Don't let the counting for build and infra nodes be clever, use fixed integer starting points [\#86](https://github.com/chef-cft/wombat/pull/86) ([cheeseplus](https://github.com/cheeseplus))
|
369
|
+
- Remove redundant .json file extension [\#85](https://github.com/chef-cft/wombat/pull/85) ([tpetchel](https://github.com/tpetchel))
|
370
|
+
- fixed cheffish for infranodes [\#83](https://github.com/chef-cft/wombat/pull/83) ([andrewelizondo](https://github.com/andrewelizondo))
|
371
|
+
- Cookbooking Chef-server and some re-org/fixes [\#82](https://github.com/chef-cft/wombat/pull/82) ([cheeseplus](https://github.com/cheeseplus))
|
372
|
+
- last minute fixes. [\#81](https://github.com/chef-cft/wombat/pull/81) ([andrewelizondo](https://github.com/andrewelizondo))
|
373
|
+
- All your codebase are belong to us. [\#80](https://github.com/chef-cft/wombat/pull/80) ([andrewelizondo](https://github.com/andrewelizondo))
|
374
|
+
- Separate out config and lock, refactor rakefile, update README [\#79](https://github.com/chef-cft/wombat/pull/79) ([cheeseplus](https://github.com/cheeseplus))
|
375
|
+
- Adding gemfile [\#78](https://github.com/chef-cft/wombat/pull/78) ([cheeseplus](https://github.com/cheeseplus))
|
376
|
+
- Moving cookbooks dir to toplevel, adding compliance cookbook [\#77](https://github.com/chef-cft/wombat/pull/77) ([cheeseplus](https://github.com/cheeseplus))
|
377
|
+
- Several fixes, wombat.json data reorg and rake cleanup [\#76](https://github.com/chef-cft/wombat/pull/76) ([cheeseplus](https://github.com/cheeseplus))
|
378
|
+
- Updating docs, fixes \#69 [\#73](https://github.com/chef-cft/wombat/pull/73) ([cheeseplus](https://github.com/cheeseplus))
|
379
|
+
- Delivery now configured with a cookbook. With tests. Rejoice. [\#72](https://github.com/chef-cft/wombat/pull/72) ([cheeseplus](https://github.com/cheeseplus))
|
380
|
+
- Now with user-data script action [\#71](https://github.com/chef-cft/wombat/pull/71) ([cheeseplus](https://github.com/cheeseplus))
|
381
|
+
- Sweet sweet integration tests [\#68](https://github.com/chef-cft/wombat/pull/68) ([cheeseplus](https://github.com/cheeseplus))
|
382
|
+
- lean into the cookbook [\#66](https://github.com/chef-cft/wombat/pull/66) ([cheeseplus](https://github.com/cheeseplus))
|
383
|
+
- Refactor the vendoring and fix a comment [\#65](https://github.com/chef-cft/wombat/pull/65) ([cheeseplus](https://github.com/cheeseplus))
|
384
|
+
- Don't overwrite keys if they already exist [\#64](https://github.com/chef-cft/wombat/pull/64) ([cheeseplus](https://github.com/cheeseplus))
|
385
|
+
- Removing keys from repo [\#63](https://github.com/chef-cft/wombat/pull/63) ([cheeseplus](https://github.com/cheeseplus))
|
386
|
+
- Various fixes, adding delivery-cli, moving inline PS to cookbook [\#62](https://github.com/chef-cft/wombat/pull/62) ([cheeseplus](https://github.com/cheeseplus))
|
387
|
+
- Generating certs/keys with ruby [\#61](https://github.com/chef-cft/wombat/pull/61) ([cheeseplus](https://github.com/cheeseplus))
|
388
|
+
- More renaming [\#60](https://github.com/chef-cft/wombat/pull/60) ([cheeseplus](https://github.com/cheeseplus))
|
389
|
+
- Add the ability to generate certs and keypair from rake and fix template [\#59](https://github.com/chef-cft/wombat/pull/59) ([cheeseplus](https://github.com/cheeseplus))
|
390
|
+
- More renaming for the renaming gods [\#58](https://github.com/chef-cft/wombat/pull/58) ([cheeseplus](https://github.com/cheeseplus))
|
391
|
+
- More renaming and minor fixes [\#57](https://github.com/chef-cft/wombat/pull/57) ([cheeseplus](https://github.com/cheeseplus))
|
392
|
+
- Im going to walk away slowly now [\#53](https://github.com/chef-cft/wombat/pull/53) ([andrewelizondo](https://github.com/andrewelizondo))
|
393
|
+
- update ssh\_config [\#52](https://github.com/chef-cft/wombat/pull/52) ([andrewelizondo](https://github.com/andrewelizondo))
|
394
|
+
- Cheffish acls and compliance stubs [\#49](https://github.com/chef-cft/wombat/pull/49) ([andrewelizondo](https://github.com/andrewelizondo))
|
395
|
+
- we spent so long thinking if we could, we never stopped to think if w… [\#48](https://github.com/chef-cft/wombat/pull/48) ([andrewelizondo](https://github.com/andrewelizondo))
|
396
|
+
- The Great Rename [\#47](https://github.com/chef-cft/wombat/pull/47) ([cheeseplus](https://github.com/cheeseplus))
|
397
|
+
- I shouldve tested it [\#46](https://github.com/chef-cft/wombat/pull/46) ([andrewelizondo](https://github.com/andrewelizondo))
|
398
|
+
- Updating docs for new commands and workflow [\#45](https://github.com/chef-cft/wombat/pull/45) ([cheeseplus](https://github.com/cheeseplus))
|
399
|
+
- Adding timestamps to create stack names [\#44](https://github.com/chef-cft/wombat/pull/44) ([cheeseplus](https://github.com/cheeseplus))
|
400
|
+
- An attempt to make the rake UX clearer [\#42](https://github.com/chef-cft/wombat/pull/42) ([cheeseplus](https://github.com/cheeseplus))
|
401
|
+
- Rake can now create a CFN stack, light refactoring [\#41](https://github.com/chef-cft/wombat/pull/41) ([cheeseplus](https://github.com/cheeseplus))
|
402
|
+
- Use env vars to drive as much as possible for Packer [\#40](https://github.com/chef-cft/wombat/pull/40) ([cheeseplus](https://github.com/cheeseplus))
|
403
|
+
- Fix apt, jq, and vendor dirs [\#37](https://github.com/chef-cft/wombat/pull/37) ([cheeseplus](https://github.com/cheeseplus))
|
404
|
+
- preload trusted\_certs and client.rb [\#36](https://github.com/chef-cft/wombat/pull/36) ([andrewelizondo](https://github.com/andrewelizondo))
|
405
|
+
- Now with 100% more cloudformation [\#33](https://github.com/chef-cft/wombat/pull/33) ([cheeseplus](https://github.com/cheeseplus))
|
406
|
+
- Fix knife paths [\#32](https://github.com/chef-cft/wombat/pull/32) ([cheeseplus](https://github.com/cheeseplus))
|
407
|
+
- I only had to sacrifice my firstborn to get it working [\#31](https://github.com/chef-cft/wombat/pull/31) ([andrewelizondo](https://github.com/andrewelizondo))
|
408
|
+
- remove os type, take the default instead for unix [\#30](https://github.com/chef-cft/wombat/pull/30) ([andrewelizondo](https://github.com/andrewelizondo))
|
409
|
+
- After manually rotating the heavy machinery, the worker grew very cra… [\#29](https://github.com/chef-cft/wombat/pull/29) ([andrewelizondo](https://github.com/andrewelizondo))
|
410
|
+
- Fixing missing template\_dir calls [\#26](https://github.com/chef-cft/wombat/pull/26) ([cheeseplus](https://github.com/cheeseplus))
|
411
|
+
- Don't associate public IPs for anything other than workstation [\#25](https://github.com/chef-cft/wombat/pull/25) ([cheeseplus](https://github.com/cheeseplus))
|
412
|
+
- Abstracting out versions to common manifest [\#24](https://github.com/chef-cft/wombat/pull/24) ([cheeseplus](https://github.com/cheeseplus))
|
413
|
+
- Readmes are cool [\#23](https://github.com/chef-cft/wombat/pull/23) ([cheeseplus](https://github.com/cheeseplus))
|
414
|
+
- removing tfvars and setting defaults in plan [\#22](https://github.com/chef-cft/wombat/pull/22) ([cheeseplus](https://github.com/cheeseplus))
|
415
|
+
- Updating rakefile to include other TF commands [\#21](https://github.com/chef-cft/wombat/pull/21) ([cheeseplus](https://github.com/cheeseplus))
|
416
|
+
- ensure mocked data for certs is placed on systems [\#20](https://github.com/chef-cft/wombat/pull/20) ([andrewelizondo](https://github.com/andrewelizondo))
|
417
|
+
- Adding delivery cert and lying to Root CA [\#19](https://github.com/chef-cft/wombat/pull/19) ([cheeseplus](https://github.com/cheeseplus))
|
418
|
+
- Making the key copy a common script, fixing user creation on chef-server [\#18](https://github.com/chef-cft/wombat/pull/18) ([cheeseplus](https://github.com/cheeseplus))
|
419
|
+
- Adding workstation cookbook [\#17](https://github.com/chef-cft/wombat/pull/17) ([cheeseplus](https://github.com/cheeseplus))
|
420
|
+
- More optimal hostname shenanigans [\#16](https://github.com/chef-cft/wombat/pull/16) ([cheeseplus](https://github.com/cheeseplus))
|
421
|
+
- Fixed weird BOM in ssh key \(regeneratedd\) and renaming [\#14](https://github.com/chef-cft/wombat/pull/14) ([cheeseplus](https://github.com/cheeseplus))
|
422
|
+
- Render tfvars [\#13](https://github.com/chef-cft/wombat/pull/13) ([andrewelizondo](https://github.com/andrewelizondo))
|
423
|
+
- Add azure [\#12](https://github.com/chef-cft/wombat/pull/12) ([andrewelizondo](https://github.com/andrewelizondo))
|
424
|
+
- The rakening [\#11](https://github.com/chef-cft/wombat/pull/11) ([cheeseplus](https://github.com/cheeseplus))
|
425
|
+
- Refactoring delivery install and adding keys via API [\#10](https://github.com/chef-cft/wombat/pull/10) ([cheeseplus](https://github.com/cheeseplus))
|
426
|
+
- Copy the delivery license to packer instance [\#9](https://github.com/chef-cft/wombat/pull/9) ([cheeseplus](https://github.com/cheeseplus))
|
427
|
+
- updated build [\#8](https://github.com/chef-cft/wombat/pull/8) ([andrewelizondo](https://github.com/andrewelizondo))
|
428
|
+
- Switching to using Atlas box [\#7](https://github.com/chef-cft/wombat/pull/7) ([cheeseplus](https://github.com/cheeseplus))
|
429
|
+
- yer a wizard harry [\#6](https://github.com/chef-cft/wombat/pull/6) ([andrewelizondo](https://github.com/andrewelizondo))
|
430
|
+
- kent geeet [\#5](https://github.com/chef-cft/wombat/pull/5) ([andrewelizondo](https://github.com/andrewelizondo))
|
431
|
+
- All the things [\#4](https://github.com/chef-cft/wombat/pull/4) ([andrewelizondo](https://github.com/andrewelizondo))
|
432
|
+
- Packer and terraform - first pass [\#3](https://github.com/chef-cft/wombat/pull/3) ([cheeseplus](https://github.com/cheeseplus))
|
433
|
+
- Use networks that don't collide with other hypervisors [\#2](https://github.com/chef-cft/wombat/pull/2) ([cheeseplus](https://github.com/cheeseplus))
|
434
|
+
- add vagrant cachier [\#1](https://github.com/chef-cft/wombat/pull/1) ([andrewelizondo](https://github.com/andrewelizondo))
|
435
|
+
|
436
|
+
|
437
|
+
|
438
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|