kitchen-ec2 0.10.0.rc.0 → 0.10.0.rc.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +23 -4
- data/lib/kitchen/driver/ec2.rb +0 -1
- data/lib/kitchen/driver/ec2_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: 82b5ac63e0a8fc23d1cd9d82558ef5367e295231
|
4
|
+
data.tar.gz: cdcb4408ce27f225cee44fe99ba53de0567e24b8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eecccf10147af42de15fe269e2f4253b26b222713b8b6c46d88cc3898fd7a6285a41575b513048794a46715fcdb4c0b2f94b8629b8320532fc342aa3d22db0fb
|
7
|
+
data.tar.gz: 7d8b1ff3d188c2bb608dfc3d1106a0f9cd6488a043210b0e5f33fbdae1c7e88d743952909626ed01b4d43c1ae9c9248f04c076dc1ce776a848539f92fa2216cd
|
data/README.md
CHANGED
@@ -100,6 +100,22 @@ through CI we no longer recommend storing the AWS credentials in the
|
|
100
100
|
`.kitchen.yml` file. Instead, specify them as environment variables or in the
|
101
101
|
`~/.aws/credentials` file.
|
102
102
|
|
103
|
+
## Windows Configuration
|
104
|
+
|
105
|
+
If you specify a platform name of `windows-2012r2` or `windows-2008` Test
|
106
|
+
Kitchen will pull a default AMI out of `amis.json` if one is not specified.
|
107
|
+
|
108
|
+
The default user_data will add any `username` with its associated `password`
|
109
|
+
from the transport options to the Aministrator group. If no `username` is
|
110
|
+
specified then the default `administrator` is available.
|
111
|
+
|
112
|
+
AWS automatically generates an `administrator` password in the default
|
113
|
+
Windows AMIs. Test Kitchen fetches this and stores it in the
|
114
|
+
`.kitchen/#{platform}.json` file. If you need to `kitchen login` to the instance
|
115
|
+
and you have not specified your own `username` and `password` you can use
|
116
|
+
the `administrator` user and the password from this file. Unfortunately
|
117
|
+
we cannot auto-fill the RDP password at this point.
|
118
|
+
|
103
119
|
## General Configuration
|
104
120
|
|
105
121
|
### availability\_zone
|
@@ -313,7 +329,7 @@ The default is unset.
|
|
313
329
|
|
314
330
|
### ssh\_key
|
315
331
|
|
316
|
-
**Deprecated** Instead use the `
|
332
|
+
**Deprecated** Instead use the `ssh_key` transport option like
|
317
333
|
|
318
334
|
```ruby
|
319
335
|
transport:
|
@@ -326,7 +342,7 @@ The default is unset, or `nil`.
|
|
326
342
|
|
327
343
|
### ssh\_timeout
|
328
344
|
|
329
|
-
**Deprecated** Instead use the `
|
345
|
+
**Deprecated** Instead use the `connection_timeout` transport key like
|
330
346
|
|
331
347
|
```ruby
|
332
348
|
transport:
|
@@ -339,7 +355,7 @@ The default is `1`.
|
|
339
355
|
|
340
356
|
### ssh\_retries
|
341
357
|
|
342
|
-
**Deprecated** Instead use the `
|
358
|
+
**Deprecated** Instead use the `connection_retries` transport key like
|
343
359
|
|
344
360
|
```ruby
|
345
361
|
transport:
|
@@ -352,7 +368,7 @@ The default is `3`.
|
|
352
368
|
|
353
369
|
### username
|
354
370
|
|
355
|
-
**Deprecated** Instead use the `
|
371
|
+
**Deprecated** Instead use the `username` transport key like
|
356
372
|
|
357
373
|
```ruby
|
358
374
|
transport:
|
@@ -365,6 +381,9 @@ The default will be determined by the Platform name, if a default exists (see
|
|
365
381
|
[amis.json][amis_json]). If a default cannot be computed, then the default is
|
366
382
|
`"root"`.
|
367
383
|
|
384
|
+
On Windows hosts with the default `user_data` this user is added to the
|
385
|
+
Administrator's group.
|
386
|
+
|
368
387
|
## Example
|
369
388
|
|
370
389
|
The following could be used in a `.kitchen.yml` or in a `.kitchen.local.yml`
|
data/lib/kitchen/driver/ec2.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-ec2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.0.rc.
|
4
|
+
version: 0.10.0.rc.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fletcher Nichol
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: test-kitchen
|