kitchen-digitalocean 0.7.1 → 0.7.2

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
  SHA1:
3
- metadata.gz: 3e06a2ba847e4cd0f88dfb84e5e55a78128fa1c4
4
- data.tar.gz: 25b7d7c2a9497b63daba9d67f2da898a00d9d186
3
+ metadata.gz: a5f3ae49fd35966789c8f94d4a63f78cb34c5643
4
+ data.tar.gz: d0bdf8c797c92ed8d5870d76af7f0ca05a2dc182
5
5
  SHA512:
6
- metadata.gz: e2dd106437360adcc7f0c08f2594e7c4eb01987d2e213dee43a637012098855ff0fdf322719ede1f64c3615fdc974aa7a8247d49917a01dc95b88aa20943956c
7
- data.tar.gz: ccdbd4b1cc6ce58e90502c04f72c2d4124d917da3192ea3753d2a5223f0e4d5d4317a81e9e5940a0005fc704cba018ad766fd7d4df73b97459e24d506b80cfbb
6
+ metadata.gz: a2ca264ce9c48c0196bfa9647c962737d95fcc5f00a03789d8f8975bf22105aa4dc0ada01af4c5e94a828c4f116298a12897160a38a209c0dff9037318cb7450
7
+ data.tar.gz: 1f20a00554aa00f5e89f4385553d735c5c8dfa81b83c6b055280fe583bf6acd698b02984dbc50301c44a7118431dcbfd7665a05158ec3e29d56eba4dd81d7751
data/CHANGELOG.md CHANGED
@@ -1,7 +1,14 @@
1
+ # 0.7.2 / 2014-07-24
2
+
3
+ * [@RoboticCheese](https://github.com/RoboticCheese) [PR #20] Update to latest image IDs
4
+ * [@ijin](https://github.com/ijin)[PR #19] Update image id list & readme
5
+ * [@ishakir](https://github.com/ishakir)[PR #18] Gemfile syntax incorrect
6
+ * [@alaa](https://github.com/alaa)[PR #17] Update ssh_key API in the README file
7
+
1
8
  # 0.7.1 / 2014-06-23
2
9
 
3
10
  * [@RoboticCheese](https://github.com/RoboticCheese) [PR #16] Use the 64-bit CentOS 6.5 image.
4
- *
11
+
5
12
  # 0.7.0 / 2014-05-20
6
13
 
7
14
  * [@zhann](https://github.com/Zhann) [PR #15] Makes hostnames RFC compatible
data/README.md CHANGED
@@ -22,7 +22,7 @@ gem install kitchen-digitalocean
22
22
  or add it to your Gemfile if you are using [Bundler](http://bundler.io/)
23
23
 
24
24
  ```ruby
25
- source https://rubygems.org
25
+ source 'https://rubygems.org'
26
26
 
27
27
  gem 'test-kitchen'
28
28
  gem 'kitchen-digitalocean'
@@ -50,7 +50,7 @@ Note that your `SSH_KEY_ID` must be the numeric id of your ssh key, not the symb
50
50
  of your keys, use something like to following command to get them from the digital ocean API:
51
51
 
52
52
  ```bash
53
- wget -q -O- https://api.digitalocean.com/ssh_keys/?client_id=[YOUR_CLIENT_ID]&api_key=[YOUR_API_KEY]
53
+ curl -X GET https://api.digitalocean.com/v2/account/keys -H "Authorization: Bearer $DIGITALOCEAN_API_KEY"
54
54
  ```
55
55
 
56
56
  Please refer to the [Getting Started Guide](http://kitchen.ci/) for any further documentation.
@@ -66,13 +66,14 @@ platforms:
66
66
  - name: ubuntu-12.10
67
67
  - name: ubuntu-13.04
68
68
  - name: ubuntu-13.10
69
+ - name: ubuntu-14.04
69
70
  - name: centos-5.8
70
71
  - name: centos-6.4
71
72
  - name: centos-6.5
72
73
  - name: debian-6.0
73
74
  - name: debian-7.0
74
- - name: fedora-17
75
75
  - name: fedora-19
76
+ - name: fedora-20
76
77
  - name: archlinux-2013.05
77
78
  ```
78
79
 
@@ -2,18 +2,15 @@
2
2
  "images": {
3
3
  "ubuntu-10.04": "14097",
4
4
  "ubuntu-12.04": "3101045",
5
- "ubuntu-12.10": "3101891",
6
- "ubuntu-13.10": "3101918",
7
- "ubuntu-14.04": "3240036",
5
+ "ubuntu-14.04": "5141286",
8
6
  "centos-5.8": "1601",
9
7
  "centos-6.5": "3448641",
8
+ "centos-7.0": "4856048",
10
9
  "centos-6.4": "562354",
11
10
  "debian-6.0": "12573",
12
11
  "debian-7.0": "3445812",
13
- "fedora-17": "32428",
14
12
  "fedora-19": "3102879",
15
- "fedora-20": "3243145",
16
- "archlinux-2013.05": "350424"
13
+ "fedora-20": "3243145"
17
14
  },
18
15
  "flavors": {
19
16
  "512MB": "66",
@@ -72,9 +72,9 @@ module Kitchen
72
72
  state[:server_id] = server.id
73
73
 
74
74
  info("Digital Ocean instance <#{state[:server_id]}> created.")
75
- server.wait_for { print '.'; ready? } ; print '(server ready)'
75
+ server.wait_for { print '.'; ready? }; print '(server ready)'
76
76
  state[:hostname] = server.public_ip_address
77
- wait_for_sshd(state[:hostname]) ; print "(ssh ready)\n"
77
+ wait_for_sshd(state[:hostname]); print "(ssh ready)\n"
78
78
  debug("digitalocean:create #{state[:hostname]}")
79
79
  rescue Fog::Errors::Error, Excon::Errors::Error => ex
80
80
  raise ActionFailed, ex.message
@@ -19,7 +19,7 @@
19
19
  module Kitchen
20
20
  module Driver
21
21
  # Version string for Digital Ocean Kitchen driver
22
- DIGITALOCEAN_VERSION = '0.7.1'
22
+ DIGITALOCEAN_VERSION = '0.7.2'
23
23
  end
24
24
  end
25
25
 
@@ -87,7 +87,7 @@ describe Kitchen::Driver::Digitalocean do
87
87
  let(:platform_name) { 'ubuntu-12.10' }
88
88
 
89
89
  it 'defaults to the correct image ID' do
90
- expect(driver[:image_id]).to eq('3101891')
90
+ expect(driver[:image_id]).to eq('473123')
91
91
  end
92
92
  end
93
93
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-digitalocean
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.1
4
+ version: 0.7.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Greg Fitzgerald
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-24 00:00:00.000000000 Z
11
+ date: 2014-07-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen
@@ -149,7 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
149
  version: '0'
150
150
  requirements: []
151
151
  rubyforge_project:
152
- rubygems_version: 2.3.0
152
+ rubygems_version: 2.4.1
153
153
  signing_key:
154
154
  specification_version: 4
155
155
  summary: A Test Kitchen Driver for Digital Ocean