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 +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +4 -6
- data/data/digitalocean.json +6 -6
- data/lib/kitchen/driver/digitalocean_version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f885cf0d249e949127b295ac1a215ed4b142ab1
|
4
|
+
data.tar.gz: 41022de5f7f10444d22aca593bfe2fab4c62d005
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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.
|
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.
|
86
|
+
- name: ubuntu-12.04
|
89
87
|
driver_config:
|
90
|
-
image_id:
|
88
|
+
image_id: 3101045
|
91
89
|
# ...
|
92
90
|
- name: centos-5.8
|
93
91
|
driver_config:
|
data/data/digitalocean.json
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
{
|
2
2
|
"images": {
|
3
|
-
"ubuntu-10.04": "
|
4
|
-
"ubuntu-12.04": "
|
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": "
|
11
|
-
"debian-7.0": "
|
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",
|
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.
|
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-
|
11
|
+
date: 2014-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|