wombat-cli 0.6.0 → 0.6.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7e2326c69b2552a893e46fe24be5e875108dd75a
|
4
|
+
data.tar.gz: c0ab27ecc8d9f5a6b1e54b22754037e7f12888f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4df2a508aceef3bae517cc192fe283111da1b99697598bcf13c7986e761011e33c8be3b097553be0890bd48eb9a5562ef27d5dd7ae54e02f152153b76c7134a
|
7
|
+
data.tar.gz: d3def352515af282b5c66e3863cc7615eba9857262192d08d698d08b1cc2ddd26165bba1755f3e4855659018017e93c46b2eb7384c03dece2f3cbdbb66de8cd4
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [v0.6.
|
3
|
+
## [v0.6.1](https://github.com/chef-cft/wombat/tree/HEAD)
|
4
4
|
|
5
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.6.0...v0.6.1)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- adds SAN to certs, missing default attributes [\#332](https://github.com/chef-cft/wombat/pull/332) ([binamov](https://github.com/binamov))
|
10
|
+
|
11
|
+
## [v0.6.0](https://github.com/chef-cft/wombat/tree/v0.6.0) (2017-04-24)
|
5
12
|
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.5.0...v0.6.0)
|
6
13
|
|
7
14
|
**Closed issues:**
|
@@ -13,6 +20,7 @@
|
|
13
20
|
|
14
21
|
**Merged pull requests:**
|
15
22
|
|
23
|
+
- v0.6.0 [\#330](https://github.com/chef-cft/wombat/pull/330) ([binamov](https://github.com/binamov))
|
16
24
|
- Pin Chrome to known working version. [\#329](https://github.com/chef-cft/wombat/pull/329) ([scarolan](https://github.com/scarolan))
|
17
25
|
- Slow and steady wins the overextended metaphor. \(Sleeps for rabbit\) [\#327](https://github.com/chef-cft/wombat/pull/327) ([ChefRycar](https://github.com/ChefRycar))
|
18
26
|
- remove hardcoded cert import loop [\#326](https://github.com/chef-cft/wombat/pull/326) ([andrewelizondo](https://github.com/andrewelizondo))
|
@@ -20,7 +28,14 @@
|
|
20
28
|
- Stack names and Resource Groups in Azure [\#324](https://github.com/chef-cft/wombat/pull/324) ([russellseymour](https://github.com/russellseymour))
|
21
29
|
|
22
30
|
## [v0.5.0](https://github.com/chef-cft/wombat/tree/v0.5.0) (2017-03-21)
|
23
|
-
[Full Changelog](https://github.com/chef-cft/wombat/compare/
|
31
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/release-0.5.0...v0.5.0)
|
32
|
+
|
33
|
+
**Merged pull requests:**
|
34
|
+
|
35
|
+
- Release 0.5.0 [\#320](https://github.com/chef-cft/wombat/pull/320) ([binamov](https://github.com/binamov))
|
36
|
+
|
37
|
+
## [release-0.5.0](https://github.com/chef-cft/wombat/tree/release-0.5.0) (2017-03-20)
|
38
|
+
[Full Changelog](https://github.com/chef-cft/wombat/compare/v0.4.3...release-0.5.0)
|
24
39
|
|
25
40
|
**Implemented enhancements:**
|
26
41
|
|
@@ -35,7 +50,6 @@
|
|
35
50
|
|
36
51
|
**Merged pull requests:**
|
37
52
|
|
38
|
-
- Release 0.5.0 [\#320](https://github.com/chef-cft/wombat/pull/320) ([binamov](https://github.com/binamov))
|
39
53
|
- no more Administrator [\#319](https://github.com/chef-cft/wombat/pull/319) ([binamov](https://github.com/binamov))
|
40
54
|
- Select whether to use Managed Disks or not [\#317](https://github.com/chef-cft/wombat/pull/317) ([russellseymour](https://github.com/russellseymour))
|
41
55
|
- azure enhancements [\#316](https://github.com/chef-cft/wombat/pull/316) ([binamov](https://github.com/binamov))
|
@@ -36,6 +36,12 @@ default['demo']['pkgs'] = %w(
|
|
36
36
|
cmder
|
37
37
|
)
|
38
38
|
|
39
|
+
default['demo']['certs'] = %w(
|
40
|
+
automate
|
41
|
+
chef
|
42
|
+
compliance
|
43
|
+
)
|
44
|
+
|
39
45
|
default['demo']['data_collector_token'] = '93a49a4f2482c64126f7b6015e6b0f30284287ee4054ff8807fb63d9cbd1c506'
|
40
46
|
|
41
47
|
default['demo']['tutorial_url'] = 'https://learn.chef.io/tutorials/#chef-automate'
|
data/lib/wombat/crypto.rb
CHANGED
@@ -25,6 +25,7 @@ module Wombat
|
|
25
25
|
cert.extensions = [
|
26
26
|
ef.create_extension('basicConstraints', 'CA:TRUE', true),
|
27
27
|
ef.create_extension('subjectKeyIdentifier', 'hash'),
|
28
|
+
ef.create_extension('subjectAltName', "DNS:#{wombat['domain_prefix']}#{hostname}.#{wombat['domain']},DNS:#{hostname}"),
|
28
29
|
# ef.create_extension("keyUsage", "cRLSign,keyCertSign", true),
|
29
30
|
]
|
30
31
|
cert.add_extension ef.create_extension('authorityKeyIdentifier',
|
data/lib/wombat/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wombat-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andre Elizondo
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-04-
|
12
|
+
date: 2017-04-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -383,7 +383,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
383
383
|
version: '0'
|
384
384
|
requirements: []
|
385
385
|
rubyforge_project:
|
386
|
-
rubygems_version: 2.6.
|
386
|
+
rubygems_version: 2.6.11
|
387
387
|
signing_key:
|
388
388
|
specification_version: 4
|
389
389
|
summary: Make Chef demos delightful with Wombat
|