kitchen-digitalocean 0.7.2 → 0.7.3

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: a5f3ae49fd35966789c8f94d4a63f78cb34c5643
4
- data.tar.gz: d0bdf8c797c92ed8d5870d76af7f0ca05a2dc182
3
+ metadata.gz: 6f885cf0d249e949127b295ac1a215ed4b142ab1
4
+ data.tar.gz: 41022de5f7f10444d22aca593bfe2fab4c62d005
5
5
  SHA512:
6
- metadata.gz: a2ca264ce9c48c0196bfa9647c962737d95fcc5f00a03789d8f8975bf22105aa4dc0ada01af4c5e94a828c4f116298a12897160a38a209c0dff9037318cb7450
7
- data.tar.gz: 1f20a00554aa00f5e89f4385553d735c5c8dfa81b83c6b055280fe583bf6acd698b02984dbc50301c44a7118431dcbfd7665a05158ec3e29d56eba4dd81d7751
6
+ metadata.gz: 30619cb5995d13eab48619ec4211232286cb2b958b813aaa2da7fa7c3489436f714f522dba43f29f7415a0dc4be0942d087297ad7500f2db8aaba8a1003f6602
7
+ data.tar.gz: d0acaf2b32e66fd016c56e9bcbf9968c3eaa8738aa122998d54ac4eef822c134e6b576b7e2167293f91c1dec080635b250cd0bc699f14c80b5efd06174b9e076
data/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # 0.7.3 / 2014-08-19
2
+
3
+ * Add id for New York 3
4
+ * Update various other data id's
5
+ * [@sample](https://github.com/sample) [PR #23] Fix Debian 7.0 id
6
+ * [@skottler](https://github.com/skottler) [PR #22] Update the ID for precise
7
+ * [@RoboticCheese](https://github.com/RoboticCheese) [PR #21] Update README to reflect latest platform list
8
+
1
9
  # 0.7.2 / 2014-07-24
2
10
 
3
11
  * [@RoboticCheese](https://github.com/RoboticCheese) [PR #20] Update to latest image IDs
data/README.md CHANGED
@@ -63,18 +63,16 @@ This driver can determine the image_id for a select number of platforms in each
63
63
  ---
64
64
  platforms:
65
65
  - name: ubuntu-10.04
66
- - name: ubuntu-12.10
67
- - name: ubuntu-13.04
68
- - name: ubuntu-13.10
66
+ - name: ubuntu-12.04
69
67
  - name: ubuntu-14.04
70
68
  - name: centos-5.8
71
69
  - name: centos-6.4
72
70
  - name: centos-6.5
71
+ - name: centos-7.0
73
72
  - name: debian-6.0
74
73
  - name: debian-7.0
75
74
  - name: fedora-19
76
75
  - name: fedora-20
77
- - name: archlinux-2013.05
78
76
  ```
79
77
 
80
78
  This will effectively generate a configuration similar to:
@@ -85,9 +83,9 @@ platforms:
85
83
  - name: ubuntu-10.04
86
84
  driver_config:
87
85
  image_id: 14097
88
- - name: ubuntu-12.10
86
+ - name: ubuntu-12.04
89
87
  driver_config:
90
- image_id: 473123
88
+ image_id: 3101045
91
89
  # ...
92
90
  - name: centos-5.8
93
91
  driver_config:
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "images": {
3
- "ubuntu-10.04": "14097",
4
- "ubuntu-12.04": "3101045",
3
+ "ubuntu-10.04": "5566812",
4
+ "ubuntu-12.04": "5588928",
5
5
  "ubuntu-14.04": "5141286",
6
6
  "centos-5.8": "1601",
7
7
  "centos-6.5": "3448641",
8
8
  "centos-7.0": "4856048",
9
9
  "centos-6.4": "562354",
10
- "debian-6.0": "12573",
11
- "debian-7.0": "3445812",
10
+ "debian-6.0": "5563026",
11
+ "debian-7.0": "5562742",
12
12
  "fedora-19": "3102879",
13
13
  "fedora-20": "3243145"
14
14
  },
@@ -21,12 +21,12 @@
21
21
  "16GB": "61",
22
22
  "32GB": "60",
23
23
  "48GB": "70",
24
- "64GB": "69",
25
- "96GB": "68"
24
+ "64GB": "69"
26
25
  },
27
26
  "regions": {
28
27
  "New York 1": "1",
29
28
  "New York 2": "4",
29
+ "New York 3": "8",
30
30
  "Amsterdam 1": "2",
31
31
  "Amsterdam 2": "5",
32
32
  "San Francisco 1": "3",
@@ -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.2'
22
+ DIGITALOCEAN_VERSION = '0.7.3'
23
23
  end
24
24
  end
25
25
 
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.2
4
+ version: 0.7.3
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-07-24 00:00:00.000000000 Z
11
+ date: 2014-08-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen