kitchen-google 1.5.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4e19b3e4c95bfbeedf09b290ba0cc45536c523bc8791ecb345642181ab2e607d
4
- data.tar.gz: 7913bc02ccdc1d606ba87df8b7960f4556674b13f1469d68611bb882e59a5889
3
+ metadata.gz: 3c5874afc2f62cd96ad13e7fe9d6c06df8fcfbde871fb4acf7e79c67a487b8db
4
+ data.tar.gz: 8bcd73921c384133d9713f826f8c7339b8af9f94931c150e7d568139f628d3ab
5
5
  SHA512:
6
- metadata.gz: cbbd3baa2e01527513f4deb906d5312551e90f82ac38a259f7baaf733d03267b885c5d4941da98cd456f553d2713ef7f4518c5e51aa6a7866dd2fb4b79399fb3
7
- data.tar.gz: dbac982910773161e264b04b5df4e2a4367eb838bfda77819ecd57c0c31f59f9660e1825520dbe9beb8d6824b104a5438eee0db5a12060a9481537d29096f1b0
6
+ metadata.gz: 0b1fec07ef7d37baeee30da6147060777cd22fcf64079d2359b971f0c539d60122b6489f2e8b9af54b07a2b4843c4e3be1faa4effddd81f55700650fc8c93dd1
7
+ data.tar.gz: 25dbb7779b0a5a00f1425561cf053da466876012697d9108abe4a857c8d953abb0733e25d9867d6e1bc2347d827e0d73898b154bc9a11f28e31e18620162a3d1
@@ -1,4 +1,12 @@
1
- # Change Log
1
+ ## [v2.0.0](https://github.com/test-kitchen/kitchen-google/tree/v2.0.0)
2
+
3
+ [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.5.0...v2.0.0)
4
+
5
+ * #59: Add support for GCE instance labels
6
+ * Require Ruby 2.3 or later
7
+ * Reduced the number of files we ship in the Gem to reduce install size
8
+ * Resolve minor Chefstyle warnings
9
+ * Simplify and loosen dev deps
2
10
 
3
11
  ## [v1.5.0](https://github.com/test-kitchen/kitchen-google/tree/v1.5.0)
4
12
 
@@ -51,7 +51,7 @@ module Kitchen
51
51
  "useraccounts-ro" => "cloud.useraccounts.readonly",
52
52
  "useraccounts-rw" => "cloud.useraccounts",
53
53
  "userinfo-email" => "userinfo.email",
54
- }
54
+ }.freeze
55
55
 
56
56
  kitchen_driver_api_version 2
57
57
  plugin_version Kitchen::Driver::GCE_VERSION
@@ -81,6 +81,7 @@ module Kitchen
81
81
  default_config :wait_time, 600
82
82
  default_config :refresh_rate, 2
83
83
  default_config :metadata, {}
84
+ default_config :labels, {}
84
85
 
85
86
  DISK_NAME_REGEX = /(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)/
86
87
 
@@ -167,7 +168,7 @@ module Kitchen
167
168
  autodelete_disk: config.fetch(:autodelete_disk, disk_default_config[:autodelete_disk]),
168
169
  disk_size: config.fetch(:disk_size, disk_default_config[:disk_size]),
169
170
  disk_type: config.fetch(:disk_type, disk_default_config[:disk_type]),
170
- }
171
+ },
171
172
  }
172
173
  raise "Disk type #{config[:disks][:disk1][:disk_type]} is not valid" unless valid_disk_type?(config[:disks][:disk1][:disk_type])
173
174
  elsif new_disk_configuration_present?
@@ -410,6 +411,7 @@ module Kitchen
410
411
  inst_obj.scheduling = instance_scheduling
411
412
  inst_obj.service_accounts = instance_service_accounts unless instance_service_accounts.nil?
412
413
  inst_obj.tags = instance_tags
414
+ inst_obj.labels = instance_labels
413
415
 
414
416
  inst_obj
415
417
  end
@@ -552,6 +554,10 @@ module Kitchen
552
554
  end
553
555
  end
554
556
 
557
+ def instance_labels
558
+ config[:labels]
559
+ end
560
+
555
561
  def env_user
556
562
  ENV["USER"] || "unknown"
557
563
  end
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
3
- # Copyright:: Copyright (c) 2015 Chef Software, Inc.
3
+ # Copyright:: Copyright (c) 2015-2018 Chef Software, Inc.
4
4
  # License:: Apache License, Version 2.0
5
5
  #
6
6
  # Licensed under the Apache License, Version 2.0 (the "License");
@@ -18,6 +18,6 @@
18
18
 
19
19
  module Kitchen
20
20
  module Driver
21
- GCE_VERSION = "1.5.0".freeze
21
+ GCE_VERSION = "2.0.0".freeze
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-google
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Leonard
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-03-10 00:00:00.000000000 Z
12
+ date: 2018-10-05 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: gcewinpass
@@ -83,20 +83,6 @@ dependencies:
83
83
  version: '0'
84
84
  - !ruby/object:Gem::Dependency
85
85
  name: rake
86
- requirement: !ruby/object:Gem::Requirement
87
- requirements:
88
- - - "~>"
89
- - !ruby/object:Gem::Version
90
- version: '10.5'
91
- type: :development
92
- prerelease: false
93
- version_requirements: !ruby/object:Gem::Requirement
94
- requirements:
95
- - - "~>"
96
- - !ruby/object:Gem::Version
97
- version: '10.5'
98
- - !ruby/object:Gem::Dependency
99
- name: rspec
100
86
  requirement: !ruby/object:Gem::Requirement
101
87
  requirements:
102
88
  - - ">="
@@ -110,7 +96,7 @@ dependencies:
110
96
  - !ruby/object:Gem::Version
111
97
  version: '0'
112
98
  - !ruby/object:Gem::Dependency
113
- name: rubocop
99
+ name: rspec
114
100
  requirement: !ruby/object:Gem::Requirement
115
101
  requirements:
116
102
  - - ">="
@@ -145,23 +131,13 @@ executables: []
145
131
  extensions: []
146
132
  extra_rdoc_files: []
147
133
  files:
148
- - ".gitignore"
149
- - ".rubocop.yml"
150
- - ".rubocop_todo.yml"
151
- - ".travis.yml"
152
134
  - CHANGELOG.md
153
- - Gemfile
154
135
  - LICENSE
155
- - README.md
156
- - Rakefile
157
- - kitchen-google.gemspec
158
136
  - lib/kitchen/driver/gce.rb
159
137
  - lib/kitchen/driver/gce_version.rb
160
- - spec/kitchen/driver/gce_spec.rb
161
- - spec/spec_helper.rb
162
138
  homepage: https://github.com/test-kitchen/kitchen-google
163
139
  licenses:
164
- - Apache 2.0
140
+ - Apache-2.0
165
141
  metadata: {}
166
142
  post_install_message:
167
143
  rdoc_options: []
@@ -171,7 +147,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
171
147
  requirements:
172
148
  - - ">="
173
149
  - !ruby/object:Gem::Version
174
- version: '2.0'
150
+ version: '2.3'
175
151
  required_rubygems_version: !ruby/object:Gem::Requirement
176
152
  requirements:
177
153
  - - ">="
data/.gitignore DELETED
@@ -1,5 +0,0 @@
1
- *~
2
- *#
3
- .ruby-version
4
- *.gem
5
- Gemfile.lock
@@ -1 +0,0 @@
1
- inherit_from: .rubocop_todo.yml
@@ -1,11 +0,0 @@
1
- # This configuration was generated by `rubocop --auto-gen-config`
2
- # on 2014-09-20 08:00:47 -0700 using RuboCop version 0.26.0.
3
- # The point is for the user to remove these configuration records
4
- # one by one as the offenses are removed from the code base.
5
- # Note that changes in the inspected code, or installation of new
6
- # versions of RuboCop, may require this file to be generated again.
7
-
8
- # Offense count: 1
9
- # Configuration parameters: CountComments.
10
- Metrics/ClassLength:
11
- Max: 102
@@ -1,11 +0,0 @@
1
- language: ruby
2
- cache: bundler
3
- sudo: false
4
- branches:
5
- only:
6
- - master
7
- rvm:
8
- - 2.2.7
9
- - 2.3.4
10
- - 2.4.1
11
- - ruby-head
data/Gemfile DELETED
@@ -1,6 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify dependencies in gemspec:
4
- gemspec
5
-
6
- gem "chefstyle", git: "https://github.com/chef/chefstyle"
data/README.md DELETED
@@ -1,446 +0,0 @@
1
- # Kitchen::Gce - A Test Kitchen Driver for Google Compute Engine
2
-
3
- [![Build Status](https://travis-ci.org/test-kitchen/kitchen-google.png?branch=master)](https://travis-ci.org/test-kitchen/kitchen-google)
4
- [![Code Climate](https://codeclimate.com/github/test-kitchen/kitchen-google.png)](https://codeclimate.com/github/test-kitchen/kitchen-google)
5
-
6
- This is a [Test Kitchen](https://github.com/opscode/test-kitchen/)
7
- driver for Google Compute Engine. While similar to EC2 and other IaaS
8
- providers, GCE has a couple of advantages for Chef cookbook testing:
9
-
10
- * (Subjectively) faster instance launch times; and
11
- * Sub-hour billing.
12
-
13
- ## Requirements
14
-
15
- ### Ruby Version
16
-
17
- Ruby 2.0 or greater.
18
-
19
- ### Google Cloud Platform (GCP) Project
20
- A [Google Cloud Platform](https://cloud.google.com) account is
21
- required. If you do not already have an appropriate "project" in
22
- which to run your test-kitchen instances, create one, noting the
23
- "project id".
24
-
25
- ### Authentication and Authorization
26
-
27
- The [underlying API](https://github.com/google/google-api-ruby-client) this plugin uses relies on the
28
- [Google Auth Library](https://github.com/google/google-auth-library-ruby) to handle authentication to the
29
- Google Cloud API. The auth library expects that there is a JSON credentials file located at:
30
-
31
- `~/.config/gcloud/application_default_credentials.json`
32
-
33
- The easiest way to create this is to download and install the [Google Cloud SDK](https://cloud.google.com/sdk/) and run the
34
- `gcloud auth application-default login` command which will create the credentials file for you.
35
-
36
- If you already have a file you'd like to use that is in a different location, set the
37
- `GOOGLE_APPLICATION_CREDENTIALS` environment variable with the full path to that file.
38
-
39
- ### SSH Keys
40
-
41
- #### Project Level Keys
42
-
43
- In order to bootstrap Linux nodes, you will first need to ensure your SSH
44
- keys are set up correctly. Ensure your SSH public key is properly entered
45
- into your project's Metadata tab in the GCP Console. GCE will add your key
46
- to the appropriate user's `~/.ssh/authorized_keys` file when Chef first
47
- connects to perform the bootstrap process.
48
-
49
- * If you don't have one, create a key using `ssh-keygen`
50
- * Log in to the GCP console, select your project, go to Compute Engine, and go to the Metadata tab.
51
- * Select the "SSH Keys" tab.
52
- * Add a new item, and paste in your public key.
53
- * Note: to change the username automatically detected for the key, prefix your key with the username
54
- you plan to use to connect to a new instance. For example, if you plan to connect
55
- as "chefuser", your key should look like: `chefuser:ssh-rsa AAAAB3N...`
56
- * Click "Save".
57
-
58
- Alternatively, the Google Cloud SDK (a.k.a. `gcloud`) will create a SSH key
59
- for you when you create and access your first instance:
60
-
61
- 1. Create a small test instance:
62
- `gcloud compute instances create instance1 --zone us-central1-f --image-family=debian-8 --image-project=debian-cloud --machine-type g1-small`
63
- 1. Ensure your SSH keys allow access to the new instance
64
- `gcloud compute ssh instance1 --zone us-central1-f`
65
- 1. Log out and delete the instance
66
- `gcloud compute instances delete instance1 --zone us-central1-f`
67
-
68
- You will now have a local SSH keypair, `~/.ssh/google_compute_engine[.pub]` that
69
- will be used for connecting to your GCE Linux instances for this local username
70
- when you use the `gcloud compute ssh` command. You can tell Test Kitchen to use
71
- this key by adding it to the transport section of your .kitchen.yml:
72
-
73
- ```yaml
74
- transport:
75
- ssh_key:
76
- - ~/.ssh/google_compute_engine
77
- ```
78
-
79
- You can find [more information on configuring SSH keys](https://cloud.google.com/compute/docs/instances/adding-removing-ssh-keys) in
80
- the Google Compute Engine documentation.
81
-
82
- #### Instance Level Keys
83
-
84
- It is possible to [add keys](https://cloud.google.com/compute/docs/storing-retrieving-metadata#default)
85
- that are not included in the project's metadata to an instance. Do this by
86
- listing additional keys in custom metadata (see below for more about [setting
87
- metadata](#metadata)).
88
-
89
- For example, given a workspace that has environment variables set for `USER`
90
- (the username to connect as) and `SSH_KEY` (the path to the private key to use):
91
-
92
- ```yaml
93
- driver:
94
- name: gce
95
- ...
96
- metadata:
97
- ssh-keys: <%= ENV['USER'] + ':' + IO.binread("#{ENV['SSH_KEY']}.pub").rstrip! %>
98
-
99
- transport:
100
- username: <%= ENV['USER'] %>
101
- ssh_key: <%= ENV['SSH_KEY'] %>
102
- ```
103
-
104
- ## Installation
105
-
106
- Install the gem with:
107
-
108
- ```sh
109
- gem install kitchen-google
110
- ```
111
-
112
- Or, even better, if you're using the ChefDK:
113
-
114
- ```sh
115
- chef gem install kitchen-google
116
- ```
117
-
118
- If you're using Bundler, simply add it to your Gemfile:
119
-
120
- ```ruby
121
- gem "kitchen-google", "~> 1.0"
122
- ```
123
-
124
- ... and then run `bundle install`.
125
-
126
-
127
- ## Configuration
128
-
129
- ### `project`
130
-
131
- **Required**. The project ID of the GCP project into which Test Kitchen
132
- instances will be launched. This can be found on the "Manage All Projects"
133
- screen, found under the "Select a Project" drop-down at the top of the
134
- GCP console.
135
-
136
- Note that this parameter requires the "Project ID", not the "Project Name."
137
-
138
- Example: "funky-penguin-12345"
139
-
140
- ### `image_project`
141
-
142
- The project ID of the GCP project to search for the configured image or image
143
- family. This must be specified to find either public images or your own images
144
- that exist in another project.
145
-
146
- Example: "ubuntu-os-cloud"
147
-
148
- ### `image_family`
149
-
150
- The family of the image to initialize your boot disk from, the latest
151
- non-deprecated image will be used.
152
-
153
- Note that this parameter will be ignored if `image_name` is also specified.
154
-
155
- Example: "ubuntu-1604-lts"
156
-
157
- ### `image_name`
158
-
159
- The name of the disk image to use as the source image for the boot disk.
160
-
161
- Example: `centos-7-v20170124`
162
-
163
- This parameter will override `image_family` if they are both specified.
164
-
165
- If `image_project` is not specified, only the GCP project specified in `project`
166
- will be searched.
167
-
168
- ### `zone`
169
-
170
- **Required if `region` is left blank.** The name of the GCE zone in which to
171
- launch your instances.
172
-
173
- Example: `us-east1-b`
174
-
175
- ### `region`
176
-
177
- **Required if zone is left blank.** The name of the region in which to
178
- launch your instances. A zone in the region will be randomly selected.
179
-
180
- Example: `us-central1`
181
-
182
- This parameter will be ignored if `zone` is specified.
183
-
184
- ### `inst_name`
185
-
186
- **Optional** Name to give to instance. If given, must be under 63 characters
187
- in length. Any character that is not alphanumeric or a hyphen will be converted
188
- to a hyphen. Unlike EC2's "Name" tag, this is used as an instance identifier and
189
- must be unique. By default, a unique name will be auto-generated; note that
190
- auto-generated names must be used if there is more than one test suite. Default:
191
- `tk-<suite>-<platform>-<UUID>`
192
-
193
- ### `auto_migrate`
194
-
195
- Boolean specifying whether or not to automatically migrate the instance
196
- to a host in the event of host maintenance. Default: `false`
197
-
198
- ### `email`
199
-
200
- **Required for Windows instances.** The email address of the
201
- currently-logged-in GCP user.
202
-
203
- While the credentials file specified in the Authentication and Authorization
204
- section is used for all API interactions, the email address is required when
205
- performing the necessary password reset prior to bootstrapping the instance.
206
-
207
- ### `machine_type`
208
-
209
- GCE instance type (size) to launch; default: `n1-standard-1`
210
-
211
- ### `network`
212
-
213
- GCE network that instance will be attached to; default: `default`
214
-
215
- ### `network_project`
216
-
217
- GCE project which network belongs to; default is same as `project`
218
-
219
- ### `subnet`
220
-
221
- GCE subnetwork that instance will be attached to. Only applies to custom networks.
222
-
223
- ### `subnet_project`
224
-
225
- GCE project which subnet belongs to. Only applies when `subnet` is used; default is same as `project`
226
-
227
- ### `preemptible`
228
-
229
- If set to `true`, GCE instance will be brought up as a [preemptible](https://cloud.google.com/compute/docs/instances/preemptible) virtual machine,
230
- that runs at a much lower price than normal instances. However, Compute
231
- Engine might terminate (preempt) these instances if it requires access
232
- to those resources for other tasks; default: `false`
233
-
234
- ### `service_account_name`
235
-
236
- The name of the service account to use when enabling account scopes. This
237
- is usually an email-formatted service account name created via the "Permissions"
238
- tab of the GCP console.
239
-
240
- This is ignored unless you specify any `service_account_scopes`.
241
-
242
- Default: "default"
243
-
244
- ### `service_account_scopes`
245
-
246
- An array of scopes to add to the instance, used to grant additional permissions
247
- within GCP.
248
-
249
- The scopes can either be a full URL (i.e. `https://www.googleapis.com/auth/devstorage.read_write`),
250
- the short-name (i.e. `devstorage.read_write`), or a gcloud alias (i.e. `storage-rw`).
251
-
252
- See the output of `gcloud compute instances create --help` for a full list of scopes.
253
-
254
- ### `tags`
255
-
256
- Array of tags to associate with instance; default: `[]`
257
-
258
- ### `use_private_ip`
259
-
260
- Boolean indicating whether or not to connect to the instance using its
261
- private IP address. If `true`, kitchen-google will also not provision
262
- a public IP for this instance. Default: `false`
263
-
264
- ### `wait_time`
265
-
266
- Amount of time, in seconds, to wait for any API interactions. Default: 600
267
-
268
- ### `refresh_rate`
269
-
270
- Amount of time, in seconds, to refresh the status of an API interaction. Default: 2
271
-
272
- ### `metadata`
273
-
274
- Allows custom instance metadata to be set.
275
- The following metadata is set by default if no metadata configuration is provided:
276
- Default:
277
-
278
-
279
- "created-by" => "test-kitchen",
280
- "test-kitchen-instance" => <instance.name>,
281
- "test-kitchen-user" => <env_user>,
282
-
283
- ### Disk configuration
284
-
285
- NOTE: In order to support multiple disks in this driver, the disk configuration has been reworked. However, old .kitchen-files will keep working and simply be adapted automatically.
286
-
287
- ```yaml
288
- driver:
289
- disks:
290
- disk0:
291
- autodelete_disk: false
292
- disk1:
293
- disk_size: 30
294
- disk2:
295
- disk_size: 50
296
- ```
297
-
298
- In the above example the `disk0` would be automatically be used as the bootdisk (/dev/sda), `disk1` would be mounted as /dev/sdb and be 30 gigabytes in size. `disk2` would be mounted as /dev/sdc and 50 gigabytes in size. Any of these disks could be the bootdisk (see below), but since none is specified, disk0 is automatically elected. Note that if `disk1` would be set as bootdisk using `boot: true` it will be mounted as /dev/sda.
299
-
300
- #### `boot`
301
-
302
- Specifies wether or not a disk should be used as the boot disk for the instance. By default the first disk will be used as boot disk.
303
-
304
- #### `autodelete_disk` - deprecated as standalone option
305
-
306
- Boolean specifying whether or not to automatically delete boot disk
307
- for test instance. Default: `true`
308
-
309
- *This option is deprecated as a standlone configuration, but can be applied on a per disk level.*
310
-
311
- NOTE: If you set this to false, once Test Kitchen destroys your instance,
312
- the boot disk used will remain in your project. You will need to manually delete it to
313
- avoid consuming unused resources by either using the `gcloud compute disks delete`
314
- command in the GCP SDK or by using `knife google disk delete` from
315
- [knife-google](https://github.com/chef/knife-google).
316
-
317
- #### `disk_size` - deprecated as standalone option
318
-
319
- Size, in gigabytes, of boot disk. Default: `10`.
320
-
321
- *This option is deprecated as a standlone configuration, but can be applied on a per disk level.*
322
-
323
- Some images, such as windows images, have a larger source image size
324
- and require the disk_size to be the same size or larger than the source.
325
- An error message will be displayed to you indicating this requirement
326
- if necessary.
327
-
328
- #### `disk_type` - deprecated as standalone option
329
-
330
- Type of the disk. Default: `pd-standard`.
331
-
332
- *This option is deprecated as a standlone configuration, but can be applied on a per disk level.*
333
-
334
- Valid disk types:
335
-
336
- - `pd-standard`: Attached magnetic hard drive
337
- - `pd-ssd`: Attached SSD
338
- - `local-ssd`: [Local scratch SSD](https://cloud.google.com/compute/docs/disks/#localssds). NOTE: You cannot specify their size. They always are 375 GB!
339
-
340
- ### Transport Settings
341
-
342
- Beginning with Test Kitchen 1.4, settings related to the transport (i.e. how to connect
343
- to the instance) have been moved to the `transport` section of the config, such as the
344
- username, password, SSH key path, etc.
345
-
346
- Therefore, you will need to update the transport section with the username configured
347
- for the SSH Key you imported into your project metadata as described in the "SSH Keys"
348
- section above. For example, if you are connecting as the "chefuser", your .kitchen.yml
349
- might have a section like this:
350
-
351
- ```yaml
352
- transport:
353
- username: chefuser
354
- ```
355
-
356
- Additionally, if you do not wish to use the standard default SSH key (`~/.ssh/id_rsa`),
357
- you can set the `ssh_key` parameter in the `transport` section of your .kitchen.yml.
358
- For example, if you want to use the SSH key auto-generated by the GCP SDK:
359
-
360
- ```yaml
361
- transport:
362
- ssh_key:
363
- - ~/.ssh/google_compute_engine
364
- ```
365
-
366
- ## Example .kitchen.yml
367
-
368
- ```yaml
369
- ---
370
- driver:
371
- name: gce
372
- project: mycompany-test
373
- zone: us-east1-c
374
- email: me@mycompany.com
375
- tags:
376
- - devteam
377
- - test-kitchen
378
- service_account_scopes:
379
- - devstorage.read_write
380
- - userinfo.email
381
-
382
- provisioner:
383
- name: chef_zero
384
-
385
- transport:
386
- username: chefuser
387
-
388
- platforms:
389
- - name: centos-7
390
- driver:
391
- image_project: centos-cloud
392
- image_name: centos-7-v20170124
393
- metadata:
394
- application: centos
395
- release: a
396
- version: 7
397
- - name: ubuntu-16.04
398
- driver:
399
- image_project: ubuntu-os-cloud
400
- image_family: ubuntu-1604-lts
401
- metadata:
402
- application: ubuntu
403
- release: a
404
- version: 1604
405
- - name: windows
406
- driver:
407
- image_project: windows-cloud
408
- image_name: windows-server-2012-r2-dc-v20170117
409
- disk_size: 50
410
- metadata:
411
- application: windows
412
- release: a
413
- version: cloud
414
-
415
- suites:
416
- - name: default
417
- run_list:
418
- - recipe[gcetest::default]
419
- attributes:
420
- ```
421
-
422
- ## Development
423
-
424
- Source is hosted on [GitHub](https://github.com/test-kitchen/kitchen-google).
425
-
426
- * Pull requests are welcome, using topic branches if possible:
427
-
428
- 1. Fork the repo.
429
- 2. Create a feature branch, commit changes to it and push them.
430
- 3. Submit a pull request.
431
-
432
- * Report issues or submit feature requests on [GitHub](https://github.com/test-kitchen/kitchen-google/issues)
433
-
434
- ## Author, Acknowledgements, Etc.
435
-
436
- Created and maintained by [Andrew Leonard](http://andyleonard.com)
437
- ([andy@hurricane-ridge.com](mailto:andy@hurricane-ridge.com)).
438
-
439
- The initial release drew heavily on the
440
- [kitchen-ec2](https://github.com/opscode/kitchen-ec2/) gem for both
441
- inspiration and implementation details. Any bugs, however, are solely
442
- the author's own doing.
443
-
444
- ## License
445
-
446
- Licensed under Apache 2.0.