kitchen-google 2.0.0 → 2.2.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: 3c5874afc2f62cd96ad13e7fe9d6c06df8fcfbde871fb4acf7e79c67a487b8db
4
- data.tar.gz: 8bcd73921c384133d9713f826f8c7339b8af9f94931c150e7d568139f628d3ab
3
+ metadata.gz: 684c38ac157c082d70153c97229db2b95dc29ff27e1ac52d5e150a4a014d02ff
4
+ data.tar.gz: ddc7a786e39fe48540c6f175c641fa3c49cf0a0705badb62fd5bd3632e7f11d9
5
5
  SHA512:
6
- metadata.gz: 0b1fec07ef7d37baeee30da6147060777cd22fcf64079d2359b971f0c539d60122b6489f2e8b9af54b07a2b4843c4e3be1faa4effddd81f55700650fc8c93dd1
7
- data.tar.gz: 25dbb7779b0a5a00f1425561cf053da466876012697d9108abe4a857c8d953abb0733e25d9867d6e1bc2347d827e0d73898b154bc9a11f28e31e18620162a3d1
6
+ metadata.gz: f35f7af9b6c1b98aed559a8e2824a16ce78110d96584d7f06f93fbee96a04fbea3448689210ab13ae88d7cea607fd4ee57e2b3a445e418596b2948bf9be49f78
7
+ data.tar.gz: b97674af3911f920142dc1b6672a60686ede8c9cc310e522be391194409bf897e8dd7a03738917440143d2207029fc9efe800cb719375e128780f0c473a02a6b
@@ -1,4 +1,3 @@
1
- # -*- coding: utf-8 -*-
2
1
  #
3
2
  # Author:: Andrew Leonard (<andy@hurricane-ridge.com>)
4
3
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
@@ -20,8 +19,8 @@
20
19
  require "gcewinpass"
21
20
  require "google/apis/compute_v1"
22
21
  require "kitchen"
23
- require "kitchen/driver/gce_version"
24
- require "securerandom"
22
+ require_relative "gce_version"
23
+ require "securerandom" unless defined?(SecureRandom)
25
24
 
26
25
  module Kitchen
27
26
  module Driver
@@ -32,25 +31,25 @@ module Kitchen
32
31
  attr_accessor :state
33
32
 
34
33
  SCOPE_ALIAS_MAP = {
35
- "bigquery" => "bigquery",
36
- "cloud-platform" => "cloud-platform",
37
- "compute-ro" => "compute.readonly",
38
- "compute-rw" => "compute",
39
- "datastore" => "datastore",
40
- "logging-write" => "logging.write",
41
- "monitoring" => "monitoring",
42
- "monitoring-write" => "monitoring.write",
43
- "service-control" => "servicecontrol",
34
+ "bigquery" => "bigquery",
35
+ "cloud-platform" => "cloud-platform",
36
+ "compute-ro" => "compute.readonly",
37
+ "compute-rw" => "compute",
38
+ "datastore" => "datastore",
39
+ "logging-write" => "logging.write",
40
+ "monitoring" => "monitoring",
41
+ "monitoring-write" => "monitoring.write",
42
+ "service-control" => "servicecontrol",
44
43
  "service-management" => "service.management",
45
- "sql" => "sqlservice",
46
- "sql-admin" => "sqlservice.admin",
47
- "storage-full" => "devstorage.full_control",
48
- "storage-ro" => "devstorage.read_only",
49
- "storage-rw" => "devstorage.read_write",
50
- "taskqueue" => "taskqueue",
51
- "useraccounts-ro" => "cloud.useraccounts.readonly",
52
- "useraccounts-rw" => "cloud.useraccounts",
53
- "userinfo-email" => "userinfo.email",
44
+ "sql" => "sqlservice",
45
+ "sql-admin" => "sqlservice.admin",
46
+ "storage-full" => "devstorage.full_control",
47
+ "storage-ro" => "devstorage.read_only",
48
+ "storage-rw" => "devstorage.read_write",
49
+ "taskqueue" => "taskqueue",
50
+ "useraccounts-ro" => "cloud.useraccounts.readonly",
51
+ "useraccounts-rw" => "cloud.useraccounts",
52
+ "userinfo-email" => "userinfo.email",
54
53
  }.freeze
55
54
 
56
55
  kitchen_driver_api_version 2
@@ -63,6 +62,7 @@ module Kitchen
63
62
 
64
63
  default_config :machine_type, "n1-standard-1"
65
64
  default_config :network, "default"
65
+ default_config :network_ip, nil
66
66
  default_config :network_project, nil
67
67
  default_config :subnet, nil
68
68
  default_config :subnet_project, nil
@@ -83,7 +83,7 @@ module Kitchen
83
83
  default_config :metadata, {}
84
84
  default_config :labels, {}
85
85
 
86
- DISK_NAME_REGEX = /(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)/
86
+ DISK_NAME_REGEX = /(?:[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?)/.freeze
87
87
 
88
88
  def name
89
89
  "Google Compute (GCE)"
@@ -192,6 +192,7 @@ module Kitchen
192
192
 
193
193
  if disk_config[:disk_type] == "local-ssd"
194
194
  raise "#{disk_name}: Cannot use 'disk_size' with local SSD. They always have 375 GB (https://cloud.google.com/compute/docs/disks/#localssds)." unless disk_config[:disk_size].nil?
195
+
195
196
  # Since disk_size is set to 10 in default_config, it needs to be adjusted for local SSDs
196
197
  config[:disks][disk_name.to_sym][:disk_size] = nil
197
198
  end
@@ -295,31 +296,37 @@ module Kitchen
295
296
 
296
297
  def valid_machine_type?
297
298
  return false if config[:machine_type].nil?
299
+
298
300
  check_api_call { connection.get_machine_type(project, zone, config[:machine_type]) }
299
301
  end
300
302
 
301
303
  def valid_network?
302
304
  return false if config[:network].nil?
305
+
303
306
  check_api_call { connection.get_network(network_project, config[:network]) }
304
307
  end
305
308
 
306
309
  def valid_subnet?
307
310
  return false if config[:subnet].nil?
311
+
308
312
  check_api_call { connection.get_subnetwork(subnet_project, region, config[:subnet]) }
309
313
  end
310
314
 
311
315
  def valid_zone?
312
316
  return false if config[:zone].nil?
317
+
313
318
  check_api_call { connection.get_zone(project, config[:zone]) }
314
319
  end
315
320
 
316
321
  def valid_region?
317
322
  return false if config[:region].nil?
323
+
318
324
  check_api_call { connection.get_region(project, config[:region]) }
319
325
  end
320
326
 
321
327
  def valid_disk_type?(disk_type)
322
328
  return false if disk_type.nil?
329
+
323
330
  check_api_call { connection.get_disk_type(project, zone, disk_type) }
324
331
  end
325
332
 
@@ -327,8 +334,8 @@ module Kitchen
327
334
  disk_name.to_s.match(DISK_NAME_REGEX).to_s.length == disk_name.length
328
335
  end
329
336
 
330
- def image_exist?
331
- check_api_call { connection.get_image(image_project, image_name) }
337
+ def image_exist?(image = image_name)
338
+ check_api_call { connection.get_image(image_project, image) }
332
339
  end
333
340
 
334
341
  def server_exist?(server_name)
@@ -355,6 +362,10 @@ module Kitchen
355
362
  config[:network_project].nil? ? project : config[:network_project]
356
363
  end
357
364
 
365
+ def network_ip
366
+ config[:network_ip]
367
+ end
368
+
358
369
  def region
359
370
  config[:region].nil? ? region_for_zone : config[:region]
360
371
  end
@@ -417,11 +428,7 @@ module Kitchen
417
428
  end
418
429
 
419
430
  def generate_server_name
420
- name = if config[:inst_name]
421
- config[:inst_name]
422
- else
423
- "tk-#{instance.name.downcase}-#{SecureRandom.hex(3)}"
424
- end
431
+ name = config[:inst_name] || "tk-#{instance.name.downcase}-#{SecureRandom.hex(3)}"
425
432
 
426
433
  if name.length > 63
427
434
  warn("The TK instance name (#{instance.name}) has been removed from the GCE instance name due to size limitations. Consider setting shorter platform or suite names.")
@@ -433,13 +440,12 @@ module Kitchen
433
440
 
434
441
  def create_disks(server_name)
435
442
  disks = []
436
-
437
443
  config[:disks].each do |disk_name, disk_config|
438
444
  unique_disk_name = "#{server_name}-#{disk_name}"
439
445
  if disk_config[:boot]
440
446
  disk = create_local_disk(unique_disk_name, disk_config)
441
447
  disks.unshift(disk)
442
- elsif disk_config[:disk_type] == "local-ssd"
448
+ elsif (disk_config[:disk_type] == "local-ssd") || disk_config[:custom_image]
443
449
  disk = create_local_disk(unique_disk_name, disk_config)
444
450
  disks.push(disk)
445
451
  else
@@ -462,10 +468,15 @@ module Kitchen
462
468
  if disk_config[:disk_type] == "local-ssd"
463
469
  info("Creating a 375 GB local ssd as scratch disk (https://cloud.google.com/compute/docs/disks/#localssds).")
464
470
  disk.type = "SCRATCH"
465
- else
466
- info("Creating a #{disk_config[:disk_size]} GB boot disk named #{unique_disk_name}...")
471
+ elsif disk.boot
472
+ info("Creating a #{disk_config[:disk_size]} GB boot disk named #{unique_disk_name} from image #{image_name}...")
467
473
  params.source_image = boot_disk_source_image unless disk_config[:disk_type] == "local-ssd"
468
474
  params.disk_name = unique_disk_name unless disk_config[:disk_type] == "local-ssd"
475
+ else
476
+ info("Creating a #{disk_config[:disk_size]} GB extra disk named #{unique_disk_name} from image #{disk_config[:custom_image]}...")
477
+ params.source_image = image_url(disk_config[:custom_image]) unless disk_config[:disk_type] == "local-ssd"
478
+ params.disk_name = unique_disk_name unless disk_config[:disk_type] == "local-ssd"
479
+
469
480
  end
470
481
  disk.initialize_params = params
471
482
  disk
@@ -513,8 +524,8 @@ module Kitchen
513
524
  @boot_disk_source ||= image_url
514
525
  end
515
526
 
516
- def image_url
517
- return "projects/#{image_project}/global/images/#{image_name}" if image_exist?
527
+ def image_url(image = image_name)
528
+ return "projects/#{image_project}/global/images/#{image}" if image_exist?(image)
518
529
  end
519
530
 
520
531
  def image_name_for_family(image_family)
@@ -528,9 +539,9 @@ module Kitchen
528
539
 
529
540
  def metadata
530
541
  default_metadata = {
531
- "created-by" => "test-kitchen",
542
+ "created-by" => "test-kitchen",
532
543
  "test-kitchen-instance" => instance.name,
533
- "test-kitchen-user" => env_user,
544
+ "test-kitchen-user" => env_user,
534
545
  }
535
546
  if winrm_transport?
536
547
  image_identifier = config[:image_family] || config[:image_name]
@@ -565,6 +576,7 @@ module Kitchen
565
576
  def instance_network_interfaces
566
577
  interface = Google::Apis::ComputeV1::NetworkInterface.new
567
578
  interface.network = network_url if config[:subnet_project].nil?
579
+ interface.network_ip = network_ip unless network_ip.nil?
568
580
  interface.subnetwork = subnet_url if subnet_url
569
581
  interface.access_configs = interface_access_configs
570
582
 
@@ -577,6 +589,7 @@ module Kitchen
577
589
 
578
590
  def subnet_url
579
591
  return unless config[:subnet]
592
+
580
593
  "projects/#{subnet_project}/regions/#{region}/subnetworks/#{config[:subnet]}"
581
594
  end
582
595
 
@@ -626,6 +639,7 @@ module Kitchen
626
639
 
627
640
  def service_account_scope_url(scope)
628
641
  return scope if scope.start_with?("https://www.googleapis.com/auth/")
642
+
629
643
  "https://www.googleapis.com/auth/#{translate_scope_alias(scope)}"
630
644
  end
631
645
 
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
3
- # Copyright:: Copyright (c) 2015-2018 Chef Software, Inc.
3
+ # Copyright:: Copyright (c) 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 = "2.0.0".freeze
21
+ GCE_VERSION = "2.2.0".freeze
22
22
  end
23
23
  end
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-google
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Leonard
8
8
  - Chef Partner Engineering
9
- autorequire:
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2018-10-05 00:00:00.000000000 Z
12
+ date: 2021-01-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: gcewinpass
@@ -29,16 +29,22 @@ dependencies:
29
29
  name: google-api-client
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - "~>"
32
+ - - ">="
33
+ - !ruby/object:Gem::Version
34
+ version: 0.23.9
35
+ - - "<="
33
36
  - !ruby/object:Gem::Version
34
- version: '0.19'
37
+ version: 0.52.0
35
38
  type: :runtime
36
39
  prerelease: false
37
40
  version_requirements: !ruby/object:Gem::Requirement
38
41
  requirements:
39
- - - "~>"
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: 0.23.9
45
+ - - "<="
40
46
  - !ruby/object:Gem::Version
41
- version: '0.19'
47
+ version: 0.52.0
42
48
  - !ruby/object:Gem::Dependency
43
49
  name: test-kitchen
44
50
  requirement: !ruby/object:Gem::Requirement
@@ -131,7 +137,6 @@ executables: []
131
137
  extensions: []
132
138
  extra_rdoc_files: []
133
139
  files:
134
- - CHANGELOG.md
135
140
  - LICENSE
136
141
  - lib/kitchen/driver/gce.rb
137
142
  - lib/kitchen/driver/gce_version.rb
@@ -139,7 +144,7 @@ homepage: https://github.com/test-kitchen/kitchen-google
139
144
  licenses:
140
145
  - Apache-2.0
141
146
  metadata: {}
142
- post_install_message:
147
+ post_install_message:
143
148
  rdoc_options: []
144
149
  require_paths:
145
150
  - lib
@@ -147,16 +152,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
147
152
  requirements:
148
153
  - - ">="
149
154
  - !ruby/object:Gem::Version
150
- version: '2.3'
155
+ version: '2.4'
151
156
  required_rubygems_version: !ruby/object:Gem::Requirement
152
157
  requirements:
153
158
  - - ">="
154
159
  - !ruby/object:Gem::Version
155
160
  version: '0'
156
161
  requirements: []
157
- rubyforge_project:
158
- rubygems_version: 2.7.6
159
- signing_key:
162
+ rubygems_version: 3.1.4
163
+ signing_key:
160
164
  specification_version: 4
161
165
  summary: Kitchen::Driver::Gce
162
166
  test_files: []
@@ -1,161 +0,0 @@
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
10
-
11
- ## [v1.5.0](https://github.com/test-kitchen/kitchen-google/tree/v1.5.0)
12
-
13
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.4.0...v1.5.0)
14
-
15
- **Closed issues:**
16
-
17
- - Driver waits forever after creating instance [\#49](https://github.com/test-kitchen/kitchen-google/issues/49)
18
-
19
- **Merged pull requests:**
20
-
21
- - Added support for additional disks; Windows Server 2008R2 support; Ad… [\#62](https://github.com/test-kitchen/kitchen-google/pull/62) ([stiller-leser](https://github.com/stiller-leser))
22
- - Updated README [\#60](https://github.com/test-kitchen/kitchen-google/pull/60) ([jjasghar](https://github.com/jjasghar))
23
-
24
- ## [v1.4.0](https://github.com/test-kitchen/kitchen-google/tree/v1.4.0) (2017-09-28)
25
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.3.0...v1.4.0)
26
-
27
- **Merged pull requests:**
28
-
29
- - release 1.4.0 [\#56](https://github.com/test-kitchen/kitchen-google/pull/56) ([robbkidd](https://github.com/robbkidd))
30
- - Add support for Google Shared VPC Networks \(XPN\) [\#47](https://github.com/test-kitchen/kitchen-google/pull/47) ([zbikmarc](https://github.com/zbikmarc))
31
-
32
- ## [v1.3.0](https://github.com/test-kitchen/kitchen-google/tree/v1.3.0) (2017-09-15)
33
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.2.0...v1.3.0)
34
-
35
- **Closed issues:**
36
-
37
- - Driver not in load path in latest chefdk [\#50](https://github.com/test-kitchen/kitchen-google/issues/50)
38
- - Disable instance\_name suffix generation [\#46](https://github.com/test-kitchen/kitchen-google/issues/46)
39
- - 'Preparing modules for first use' Causing Tests to Fail [\#45](https://github.com/test-kitchen/kitchen-google/issues/45)
40
- - Allow instance\_name prefix to be customizable [\#40](https://github.com/test-kitchen/kitchen-google/issues/40)
41
- - Allow default instance\_name prefix to be customizable [\#39](https://github.com/test-kitchen/kitchen-google/issues/39)
42
- - Sort out ruby-1.9 support [\#25](https://github.com/test-kitchen/kitchen-google/issues/25)
43
- - Unsupported parameters are silently ignored [\#23](https://github.com/test-kitchen/kitchen-google/issues/23)
44
- - setting scope on service accounts [\#20](https://github.com/test-kitchen/kitchen-google/issues/20)
45
- - I can not get your sample .kitchen.yml to work. [\#15](https://github.com/test-kitchen/kitchen-google/issues/15)
46
-
47
- **Merged pull requests:**
48
-
49
- - add example for injecting ssh key to instance\(s\) [\#55](https://github.com/test-kitchen/kitchen-google/pull/55) ([robbkidd](https://github.com/robbkidd))
50
- - Option to override instance names [\#54](https://github.com/test-kitchen/kitchen-google/pull/54) ([robbkidd](https://github.com/robbkidd))
51
- - update Ruby versions to test for in Travis [\#53](https://github.com/test-kitchen/kitchen-google/pull/53) ([robbkidd](https://github.com/robbkidd))
52
- - Changing SSH Command [\#52](https://github.com/test-kitchen/kitchen-google/pull/52) ([rambleraptor](https://github.com/rambleraptor))
53
- - Support configured custom metadata [\#43](https://github.com/test-kitchen/kitchen-google/pull/43) ([dldinternet](https://github.com/dldinternet))
54
-
55
- ## [v1.2.0](https://github.com/test-kitchen/kitchen-google/tree/v1.2.0) (2017-02-03)
56
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.1.0...v1.2.0)
57
-
58
- **Closed issues:**
59
-
60
- - Ability to support image-family [\#41](https://github.com/test-kitchen/kitchen-google/issues/41)
61
- - Transition to fog-google [\#24](https://github.com/test-kitchen/kitchen-google/issues/24)
62
-
63
- **Merged pull requests:**
64
-
65
- - Support image\_family [\#44](https://github.com/test-kitchen/kitchen-google/pull/44) ([whiteley](https://github.com/whiteley))
66
-
67
- ## [v1.1.0](https://github.com/test-kitchen/kitchen-google/tree/v1.1.0) (2016-03-17)
68
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.0.0...v1.1.0)
69
-
70
- **Merged pull requests:**
71
-
72
- - Adding support for image aliases [\#35](https://github.com/test-kitchen/kitchen-google/pull/35) ([adamleff](https://github.com/adamleff))
73
- - Add support for using subnetworks [\#34](https://github.com/test-kitchen/kitchen-google/pull/34) ([adamleff](https://github.com/adamleff))
74
- - Automatically disable auto-restart and auto-migrate for preemptible instance [\#33](https://github.com/test-kitchen/kitchen-google/pull/33) ([adamleff](https://github.com/adamleff))
75
- - Rake and rubocop fixes [\#32](https://github.com/test-kitchen/kitchen-google/pull/32) ([adamleff](https://github.com/adamleff))
76
-
77
- ## [v1.0.0](https://github.com/test-kitchen/kitchen-google/tree/v1.0.0) (2016-03-10)
78
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.3.0...v1.0.0)
79
-
80
- **Closed issues:**
81
-
82
- - Add @erjohnso and @adamleff to kitchen-google repo and gem [\#31](https://github.com/test-kitchen/kitchen-google/issues/31)
83
-
84
- **Merged pull requests:**
85
-
86
- - Rewrite of kitchen-google to use google-api-client [\#30](https://github.com/test-kitchen/kitchen-google/pull/30) ([adamleff](https://github.com/adamleff))
87
-
88
- ## [v0.3.0](https://github.com/test-kitchen/kitchen-google/tree/v0.3.0) (2016-01-24)
89
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.2.0...v0.3.0)
90
-
91
- **Closed issues:**
92
-
93
- - Add auto\_restart to tests [\#27](https://github.com/test-kitchen/kitchen-google/issues/27)
94
- - Add docs for Preemptible instances [\#26](https://github.com/test-kitchen/kitchen-google/issues/26)
95
- - GCE Instance created without scoping the service account [\#21](https://github.com/test-kitchen/kitchen-google/issues/21)
96
- - Investigate moving project to test-kitchen organization [\#16](https://github.com/test-kitchen/kitchen-google/issues/16)
97
- - server timeout on custom images. [\#13](https://github.com/test-kitchen/kitchen-google/issues/13)
98
-
99
- **Merged pull requests:**
100
-
101
- - Preemptible documentation [\#28](https://github.com/test-kitchen/kitchen-google/pull/28) ([Temikus](https://github.com/Temikus))
102
- - Add JSON credential file and Preemptible VM support [\#22](https://github.com/test-kitchen/kitchen-google/pull/22) ([marcy-terui](https://github.com/marcy-terui))
103
- - Add code formatting and relative links. [\#18](https://github.com/test-kitchen/kitchen-google/pull/18) ([mbrukman](https://github.com/mbrukman))
104
- - Update badge URLs now that repo moved. [\#17](https://github.com/test-kitchen/kitchen-google/pull/17) ([mbrukman](https://github.com/mbrukman))
105
- - Support service\_accounts option in Fog [\#14](https://github.com/test-kitchen/kitchen-google/pull/14) ([jgoldschrafe](https://github.com/jgoldschrafe))
106
-
107
- ## [v0.2.0](https://github.com/test-kitchen/kitchen-google/tree/v0.2.0) (2014-09-20)
108
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.1.2...v0.2.0)
109
-
110
- **Closed issues:**
111
-
112
- - generate\_inst\_name should only produce names that meet Google's requirements [\#12](https://github.com/test-kitchen/kitchen-google/issues/12)
113
- - Add "region" support, deprecate "area" [\#10](https://github.com/test-kitchen/kitchen-google/issues/10)
114
-
115
- **Merged pull requests:**
116
-
117
- - Fix name length. [\#11](https://github.com/test-kitchen/kitchen-google/pull/11) ([pdunnavant](https://github.com/pdunnavant))
118
-
119
- ## [v0.1.2](https://github.com/test-kitchen/kitchen-google/tree/v0.1.2) (2014-04-16)
120
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.1.0...v0.1.2)
121
-
122
- **Closed issues:**
123
-
124
- - Support Faraday 1.9 via ridley \>= 3.0.0 [\#9](https://github.com/test-kitchen/kitchen-google/issues/9)
125
-
126
- ## [v0.1.0](https://github.com/test-kitchen/kitchen-google/tree/v0.1.0) (2014-03-29)
127
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.6.0...v0.1.0)
128
-
129
- **Closed issues:**
130
-
131
- - Update Copyright [\#8](https://github.com/test-kitchen/kitchen-google/issues/8)
132
- - Support Fog 1.20.0 [\#6](https://github.com/test-kitchen/kitchen-google/issues/6)
133
-
134
- **Merged pull requests:**
135
-
136
- - adding support for using authorized\_keys from a service account [\#7](https://github.com/test-kitchen/kitchen-google/pull/7) ([someara](https://github.com/someara))
137
-
138
- ## [v0.6.0](https://github.com/test-kitchen/kitchen-google/tree/v0.6.0) (2014-02-23)
139
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/0.0.4...v0.6.0)
140
-
141
- **Closed issues:**
142
-
143
- - Network and Tag Support [\#5](https://github.com/test-kitchen/kitchen-google/issues/5)
144
-
145
- ## [0.0.4](https://github.com/test-kitchen/kitchen-google/tree/0.0.4) (2013-12-28)
146
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/0.0.1...0.0.4)
147
-
148
- **Fixed bugs:**
149
-
150
- - test-kitchen 1.0.0.rc.1 breaks auto name generation [\#2](https://github.com/test-kitchen/kitchen-google/issues/2)
151
- - Provisioning fails with "Class: Kitchen::ActionFailed" [\#1](https://github.com/test-kitchen/kitchen-google/issues/1)
152
-
153
- **Closed issues:**
154
-
155
- - "kitchen create" duplicates instances [\#4](https://github.com/test-kitchen/kitchen-google/issues/4)
156
- - Intermittent Kitchen::ActionFailed - eventually consistent GCE API? [\#3](https://github.com/test-kitchen/kitchen-google/issues/3)
157
-
158
- ## [0.0.1](https://github.com/test-kitchen/kitchen-google/tree/0.0.1) (2013-10-20)
159
-
160
-
161
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*