kitchen-google 1.5.0 → 2.1.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: dfd4ade3df944044cc61c6c64f41c3b7f41493efd8a6024751c6bf52a5d468c8
4
+ data.tar.gz: 45998c3ff751583c50ebe770cc9f1bd29ad4c190ecbdd90d6c4055131f4e8df9
5
5
  SHA512:
6
- metadata.gz: cbbd3baa2e01527513f4deb906d5312551e90f82ac38a259f7baaf733d03267b885c5d4941da98cd456f553d2713ef7f4518c5e51aa6a7866dd2fb4b79399fb3
7
- data.tar.gz: dbac982910773161e264b04b5df4e2a4367eb838bfda77819ecd57c0c31f59f9660e1825520dbe9beb8d6824b104a5438eee0db5a12060a9481537d29096f1b0
6
+ metadata.gz: c1510d83ac112662bb2c0e6573df8e19e07e5b2f2afdd110e52f3addd02d3b6fe7e9452b703c5998249f1b310a13730b8fc661b8bdc3787c6e3986e8cb2ad7f1
7
+ data.tar.gz: 9bab8a5f721cc7ca72f46ad69a0e274fed394ff7954ea0f1c1c88386108da2b81f396458449f68ee54d8bcf8dc405d4284e0750a854e829715b6421307e91b78
@@ -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,26 +31,26 @@ 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",
54
- }
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",
53
+ }.freeze
55
54
 
56
55
  kitchen_driver_api_version 2
57
56
  plugin_version Kitchen::Driver::GCE_VERSION
@@ -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
@@ -81,8 +81,9 @@ 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
- 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
86
87
 
87
88
  def name
88
89
  "Google Compute (GCE)"
@@ -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?
@@ -191,6 +192,7 @@ module Kitchen
191
192
 
192
193
  if disk_config[:disk_type] == "local-ssd"
193
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
+
194
196
  # Since disk_size is set to 10 in default_config, it needs to be adjusted for local SSDs
195
197
  config[:disks][disk_name.to_sym][:disk_size] = nil
196
198
  end
@@ -294,31 +296,37 @@ module Kitchen
294
296
 
295
297
  def valid_machine_type?
296
298
  return false if config[:machine_type].nil?
299
+
297
300
  check_api_call { connection.get_machine_type(project, zone, config[:machine_type]) }
298
301
  end
299
302
 
300
303
  def valid_network?
301
304
  return false if config[:network].nil?
305
+
302
306
  check_api_call { connection.get_network(network_project, config[:network]) }
303
307
  end
304
308
 
305
309
  def valid_subnet?
306
310
  return false if config[:subnet].nil?
311
+
307
312
  check_api_call { connection.get_subnetwork(subnet_project, region, config[:subnet]) }
308
313
  end
309
314
 
310
315
  def valid_zone?
311
316
  return false if config[:zone].nil?
317
+
312
318
  check_api_call { connection.get_zone(project, config[:zone]) }
313
319
  end
314
320
 
315
321
  def valid_region?
316
322
  return false if config[:region].nil?
323
+
317
324
  check_api_call { connection.get_region(project, config[:region]) }
318
325
  end
319
326
 
320
327
  def valid_disk_type?(disk_type)
321
328
  return false if disk_type.nil?
329
+
322
330
  check_api_call { connection.get_disk_type(project, zone, disk_type) }
323
331
  end
324
332
 
@@ -354,6 +362,10 @@ module Kitchen
354
362
  config[:network_project].nil? ? project : config[:network_project]
355
363
  end
356
364
 
365
+ def network_ip
366
+ config[:network_ip]
367
+ end
368
+
357
369
  def region
358
370
  config[:region].nil? ? region_for_zone : config[:region]
359
371
  end
@@ -410,6 +422,7 @@ module Kitchen
410
422
  inst_obj.scheduling = instance_scheduling
411
423
  inst_obj.service_accounts = instance_service_accounts unless instance_service_accounts.nil?
412
424
  inst_obj.tags = instance_tags
425
+ inst_obj.labels = instance_labels
413
426
 
414
427
  inst_obj
415
428
  end
@@ -526,9 +539,9 @@ module Kitchen
526
539
 
527
540
  def metadata
528
541
  default_metadata = {
529
- "created-by" => "test-kitchen",
542
+ "created-by" => "test-kitchen",
530
543
  "test-kitchen-instance" => instance.name,
531
- "test-kitchen-user" => env_user,
544
+ "test-kitchen-user" => env_user,
532
545
  }
533
546
  if winrm_transport?
534
547
  image_identifier = config[:image_family] || config[:image_name]
@@ -552,6 +565,10 @@ module Kitchen
552
565
  end
553
566
  end
554
567
 
568
+ def instance_labels
569
+ config[:labels]
570
+ end
571
+
555
572
  def env_user
556
573
  ENV["USER"] || "unknown"
557
574
  end
@@ -559,6 +576,7 @@ module Kitchen
559
576
  def instance_network_interfaces
560
577
  interface = Google::Apis::ComputeV1::NetworkInterface.new
561
578
  interface.network = network_url if config[:subnet_project].nil?
579
+ interface.network_ip = network_ip unless network_ip.nil?
562
580
  interface.subnetwork = subnet_url if subnet_url
563
581
  interface.access_configs = interface_access_configs
564
582
 
@@ -571,6 +589,7 @@ module Kitchen
571
589
 
572
590
  def subnet_url
573
591
  return unless config[:subnet]
592
+
574
593
  "projects/#{subnet_project}/regions/#{region}/subnetworks/#{config[:subnet]}"
575
594
  end
576
595
 
@@ -620,6 +639,7 @@ module Kitchen
620
639
 
621
640
  def service_account_scope_url(scope)
622
641
  return scope if scope.start_with?("https://www.googleapis.com/auth/")
642
+
623
643
  "https://www.googleapis.com/auth/#{translate_scope_alias(scope)}"
624
644
  end
625
645
 
@@ -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) 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.1.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: 1.5.0
4
+ version: 2.1.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: 2016-03-10 00:00:00.000000000 Z
12
+ date: 2020-11-20 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.37.0
35
38
  type: :runtime
36
39
  prerelease: false
37
40
  version_requirements: !ruby/object:Gem::Requirement
38
41
  requirements:
39
- - - "~>"
42
+ - - ">="
40
43
  - !ruby/object:Gem::Version
41
- version: '0.19'
44
+ version: 0.23.9
45
+ - - "<"
46
+ - !ruby/object:Gem::Version
47
+ version: 0.37.0
42
48
  - !ruby/object:Gem::Dependency
43
49
  name: test-kitchen
44
50
  requirement: !ruby/object:Gem::Requirement
@@ -83,20 +89,6 @@ dependencies:
83
89
  version: '0'
84
90
  - !ruby/object:Gem::Dependency
85
91
  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
92
  requirement: !ruby/object:Gem::Requirement
101
93
  requirements:
102
94
  - - ">="
@@ -110,7 +102,7 @@ dependencies:
110
102
  - !ruby/object:Gem::Version
111
103
  version: '0'
112
104
  - !ruby/object:Gem::Dependency
113
- name: rubocop
105
+ name: rspec
114
106
  requirement: !ruby/object:Gem::Requirement
115
107
  requirements:
116
108
  - - ">="
@@ -145,25 +137,14 @@ executables: []
145
137
  extensions: []
146
138
  extra_rdoc_files: []
147
139
  files:
148
- - ".gitignore"
149
- - ".rubocop.yml"
150
- - ".rubocop_todo.yml"
151
- - ".travis.yml"
152
- - CHANGELOG.md
153
- - Gemfile
154
140
  - LICENSE
155
- - README.md
156
- - Rakefile
157
- - kitchen-google.gemspec
158
141
  - lib/kitchen/driver/gce.rb
159
142
  - lib/kitchen/driver/gce_version.rb
160
- - spec/kitchen/driver/gce_spec.rb
161
- - spec/spec_helper.rb
162
143
  homepage: https://github.com/test-kitchen/kitchen-google
163
144
  licenses:
164
- - Apache 2.0
145
+ - Apache-2.0
165
146
  metadata: {}
166
- post_install_message:
147
+ post_install_message:
167
148
  rdoc_options: []
168
149
  require_paths:
169
150
  - lib
@@ -171,16 +152,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
171
152
  requirements:
172
153
  - - ">="
173
154
  - !ruby/object:Gem::Version
174
- version: '2.0'
155
+ version: '2.3'
175
156
  required_rubygems_version: !ruby/object:Gem::Requirement
176
157
  requirements:
177
158
  - - ">="
178
159
  - !ruby/object:Gem::Version
179
160
  version: '0'
180
161
  requirements: []
181
- rubyforge_project:
182
- rubygems_version: 2.7.6
183
- signing_key:
162
+ rubygems_version: 3.1.4
163
+ signing_key:
184
164
  specification_version: 4
185
165
  summary: Kitchen::Driver::Gce
186
166
  test_files: []
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
@@ -1,153 +0,0 @@
1
- # Change Log
2
-
3
- ## [v1.5.0](https://github.com/test-kitchen/kitchen-google/tree/v1.5.0)
4
-
5
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.4.0...v1.5.0)
6
-
7
- **Closed issues:**
8
-
9
- - Driver waits forever after creating instance [\#49](https://github.com/test-kitchen/kitchen-google/issues/49)
10
-
11
- **Merged pull requests:**
12
-
13
- - 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))
14
- - Updated README [\#60](https://github.com/test-kitchen/kitchen-google/pull/60) ([jjasghar](https://github.com/jjasghar))
15
-
16
- ## [v1.4.0](https://github.com/test-kitchen/kitchen-google/tree/v1.4.0) (2017-09-28)
17
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.3.0...v1.4.0)
18
-
19
- **Merged pull requests:**
20
-
21
- - release 1.4.0 [\#56](https://github.com/test-kitchen/kitchen-google/pull/56) ([robbkidd](https://github.com/robbkidd))
22
- - Add support for Google Shared VPC Networks \(XPN\) [\#47](https://github.com/test-kitchen/kitchen-google/pull/47) ([zbikmarc](https://github.com/zbikmarc))
23
-
24
- ## [v1.3.0](https://github.com/test-kitchen/kitchen-google/tree/v1.3.0) (2017-09-15)
25
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.2.0...v1.3.0)
26
-
27
- **Closed issues:**
28
-
29
- - Driver not in load path in latest chefdk [\#50](https://github.com/test-kitchen/kitchen-google/issues/50)
30
- - Disable instance\_name suffix generation [\#46](https://github.com/test-kitchen/kitchen-google/issues/46)
31
- - 'Preparing modules for first use' Causing Tests to Fail [\#45](https://github.com/test-kitchen/kitchen-google/issues/45)
32
- - Allow instance\_name prefix to be customizable [\#40](https://github.com/test-kitchen/kitchen-google/issues/40)
33
- - Allow default instance\_name prefix to be customizable [\#39](https://github.com/test-kitchen/kitchen-google/issues/39)
34
- - Sort out ruby-1.9 support [\#25](https://github.com/test-kitchen/kitchen-google/issues/25)
35
- - Unsupported parameters are silently ignored [\#23](https://github.com/test-kitchen/kitchen-google/issues/23)
36
- - setting scope on service accounts [\#20](https://github.com/test-kitchen/kitchen-google/issues/20)
37
- - I can not get your sample .kitchen.yml to work. [\#15](https://github.com/test-kitchen/kitchen-google/issues/15)
38
-
39
- **Merged pull requests:**
40
-
41
- - add example for injecting ssh key to instance\(s\) [\#55](https://github.com/test-kitchen/kitchen-google/pull/55) ([robbkidd](https://github.com/robbkidd))
42
- - Option to override instance names [\#54](https://github.com/test-kitchen/kitchen-google/pull/54) ([robbkidd](https://github.com/robbkidd))
43
- - update Ruby versions to test for in Travis [\#53](https://github.com/test-kitchen/kitchen-google/pull/53) ([robbkidd](https://github.com/robbkidd))
44
- - Changing SSH Command [\#52](https://github.com/test-kitchen/kitchen-google/pull/52) ([rambleraptor](https://github.com/rambleraptor))
45
- - Support configured custom metadata [\#43](https://github.com/test-kitchen/kitchen-google/pull/43) ([dldinternet](https://github.com/dldinternet))
46
-
47
- ## [v1.2.0](https://github.com/test-kitchen/kitchen-google/tree/v1.2.0) (2017-02-03)
48
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.1.0...v1.2.0)
49
-
50
- **Closed issues:**
51
-
52
- - Ability to support image-family [\#41](https://github.com/test-kitchen/kitchen-google/issues/41)
53
- - Transition to fog-google [\#24](https://github.com/test-kitchen/kitchen-google/issues/24)
54
-
55
- **Merged pull requests:**
56
-
57
- - Support image\_family [\#44](https://github.com/test-kitchen/kitchen-google/pull/44) ([whiteley](https://github.com/whiteley))
58
-
59
- ## [v1.1.0](https://github.com/test-kitchen/kitchen-google/tree/v1.1.0) (2016-03-17)
60
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v1.0.0...v1.1.0)
61
-
62
- **Merged pull requests:**
63
-
64
- - Adding support for image aliases [\#35](https://github.com/test-kitchen/kitchen-google/pull/35) ([adamleff](https://github.com/adamleff))
65
- - Add support for using subnetworks [\#34](https://github.com/test-kitchen/kitchen-google/pull/34) ([adamleff](https://github.com/adamleff))
66
- - 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))
67
- - Rake and rubocop fixes [\#32](https://github.com/test-kitchen/kitchen-google/pull/32) ([adamleff](https://github.com/adamleff))
68
-
69
- ## [v1.0.0](https://github.com/test-kitchen/kitchen-google/tree/v1.0.0) (2016-03-10)
70
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.3.0...v1.0.0)
71
-
72
- **Closed issues:**
73
-
74
- - Add @erjohnso and @adamleff to kitchen-google repo and gem [\#31](https://github.com/test-kitchen/kitchen-google/issues/31)
75
-
76
- **Merged pull requests:**
77
-
78
- - Rewrite of kitchen-google to use google-api-client [\#30](https://github.com/test-kitchen/kitchen-google/pull/30) ([adamleff](https://github.com/adamleff))
79
-
80
- ## [v0.3.0](https://github.com/test-kitchen/kitchen-google/tree/v0.3.0) (2016-01-24)
81
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.2.0...v0.3.0)
82
-
83
- **Closed issues:**
84
-
85
- - Add auto\_restart to tests [\#27](https://github.com/test-kitchen/kitchen-google/issues/27)
86
- - Add docs for Preemptible instances [\#26](https://github.com/test-kitchen/kitchen-google/issues/26)
87
- - GCE Instance created without scoping the service account [\#21](https://github.com/test-kitchen/kitchen-google/issues/21)
88
- - Investigate moving project to test-kitchen organization [\#16](https://github.com/test-kitchen/kitchen-google/issues/16)
89
- - server timeout on custom images. [\#13](https://github.com/test-kitchen/kitchen-google/issues/13)
90
-
91
- **Merged pull requests:**
92
-
93
- - Preemptible documentation [\#28](https://github.com/test-kitchen/kitchen-google/pull/28) ([Temikus](https://github.com/Temikus))
94
- - 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))
95
- - Add code formatting and relative links. [\#18](https://github.com/test-kitchen/kitchen-google/pull/18) ([mbrukman](https://github.com/mbrukman))
96
- - Update badge URLs now that repo moved. [\#17](https://github.com/test-kitchen/kitchen-google/pull/17) ([mbrukman](https://github.com/mbrukman))
97
- - Support service\_accounts option in Fog [\#14](https://github.com/test-kitchen/kitchen-google/pull/14) ([jgoldschrafe](https://github.com/jgoldschrafe))
98
-
99
- ## [v0.2.0](https://github.com/test-kitchen/kitchen-google/tree/v0.2.0) (2014-09-20)
100
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.1.2...v0.2.0)
101
-
102
- **Closed issues:**
103
-
104
- - generate\_inst\_name should only produce names that meet Google's requirements [\#12](https://github.com/test-kitchen/kitchen-google/issues/12)
105
- - Add "region" support, deprecate "area" [\#10](https://github.com/test-kitchen/kitchen-google/issues/10)
106
-
107
- **Merged pull requests:**
108
-
109
- - Fix name length. [\#11](https://github.com/test-kitchen/kitchen-google/pull/11) ([pdunnavant](https://github.com/pdunnavant))
110
-
111
- ## [v0.1.2](https://github.com/test-kitchen/kitchen-google/tree/v0.1.2) (2014-04-16)
112
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.1.0...v0.1.2)
113
-
114
- **Closed issues:**
115
-
116
- - Support Faraday 1.9 via ridley \>= 3.0.0 [\#9](https://github.com/test-kitchen/kitchen-google/issues/9)
117
-
118
- ## [v0.1.0](https://github.com/test-kitchen/kitchen-google/tree/v0.1.0) (2014-03-29)
119
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/v0.6.0...v0.1.0)
120
-
121
- **Closed issues:**
122
-
123
- - Update Copyright [\#8](https://github.com/test-kitchen/kitchen-google/issues/8)
124
- - Support Fog 1.20.0 [\#6](https://github.com/test-kitchen/kitchen-google/issues/6)
125
-
126
- **Merged pull requests:**
127
-
128
- - 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))
129
-
130
- ## [v0.6.0](https://github.com/test-kitchen/kitchen-google/tree/v0.6.0) (2014-02-23)
131
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/0.0.4...v0.6.0)
132
-
133
- **Closed issues:**
134
-
135
- - Network and Tag Support [\#5](https://github.com/test-kitchen/kitchen-google/issues/5)
136
-
137
- ## [0.0.4](https://github.com/test-kitchen/kitchen-google/tree/0.0.4) (2013-12-28)
138
- [Full Changelog](https://github.com/test-kitchen/kitchen-google/compare/0.0.1...0.0.4)
139
-
140
- **Fixed bugs:**
141
-
142
- - test-kitchen 1.0.0.rc.1 breaks auto name generation [\#2](https://github.com/test-kitchen/kitchen-google/issues/2)
143
- - Provisioning fails with "Class: Kitchen::ActionFailed" [\#1](https://github.com/test-kitchen/kitchen-google/issues/1)
144
-
145
- **Closed issues:**
146
-
147
- - "kitchen create" duplicates instances [\#4](https://github.com/test-kitchen/kitchen-google/issues/4)
148
- - Intermittent Kitchen::ActionFailed - eventually consistent GCE API? [\#3](https://github.com/test-kitchen/kitchen-google/issues/3)
149
-
150
- ## [0.0.1](https://github.com/test-kitchen/kitchen-google/tree/0.0.1) (2013-10-20)
151
-
152
-
153
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*