chef-provisioning 1.9.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +1 -1
- data/chef-provisioning.gemspec +3 -1
- data/lib/chef/provisioning/version.rb +1 -1
- metadata +6 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55dd1dec7e87180f4c8765c659df984a7aa98479
|
4
|
+
data.tar.gz: 6a4d740f11a92febcb4bd89fe97af1fa5c7da93b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a115f1b26b0810d879ee8fd100cad5a60307169127adf4a0fd96ce5aa6bab23278b660f4103eb66846f258a8be653f1c2528d5e06d3931c463623e525895598
|
7
|
+
data.tar.gz: af2527426be296672ff6d3d184b3d11650efff63e3a07df6791d0dbaf003d6da8acbdff5090082dbe3f0ec4bcd9345d2b0be572c489ec271e0ec0b70ba94aba9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,19 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
+
## [2.0.0](https://github.com/chef/chef-provisioning/tree/2.0.0) (2016-08-24)
|
4
|
+
[Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.1...2.0.0)
|
5
|
+
|
6
|
+
**Merged pull requests:**
|
7
|
+
|
8
|
+
- Require Ruby 2.2.2+ and Cheffish 4.0 [\#538](https://github.com/chef/chef-provisioning/pull/538) ([jkeiser](https://github.com/jkeiser))
|
9
|
+
|
10
|
+
## [v1.9.1](https://github.com/chef/chef-provisioning/tree/v1.9.1) (2016-08-11)
|
11
|
+
[Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.0...v1.9.1)
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- allows cheffish 3.0 to stop pulling in compat\_resource [\#534](https://github.com/chef/chef-provisioning/pull/534) ([lamont-granquist](https://github.com/lamont-granquist))
|
16
|
+
|
3
17
|
## [v1.9.0](https://github.com/chef/chef-provisioning/tree/v1.9.0) (2016-08-11)
|
4
18
|
[Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.1...v1.9.0)
|
5
19
|
|
data/README.md
CHANGED
@@ -277,7 +277,7 @@ with_chef_local_server :chef_repo_path => '~/repo'
|
|
277
277
|
|
278
278
|
`with_chef_local_server` is a generic directive that creates a chef-zero server pointed at the given repository. nodes, clients, data bags, and all data will be stored here on your provisioner machine if you do this.
|
279
279
|
|
280
|
-
You can use `with_chef_server` instead if you want to point at OSS, Hosted or Enterprise Chef, and if you don't specify a Chef server at all, it will use the one you are running chef-client against. Keep in mind when using `with_chef_server` and running `chef-client -z` on your workstation that you will also need to set the client name and signing key for the chef server. If you've already got knife.rb set up, then something like this will correctly create a client for the chef server on instance using your knife.rb configuration:
|
280
|
+
You can use `with_chef_server` instead if you want to point at OSS, Hosted or Enterprise Chef, and if you don't specify a Chef server at all, it will use the one you are running chef-client against. Keep in mind when using `with_chef_server` and running `chef-client -z` on your workstation that you will also need to set the client name and signing key for the chef server. If you've already got knife.rb set up, then something like this in the provisioning recipe will correctly create a client for the chef server on instance using your knife.rb configuration:
|
281
281
|
|
282
282
|
```ruby
|
283
283
|
with_chef_server "https://chef-server.example.org",
|
data/chef-provisioning.gemspec
CHANGED
@@ -12,11 +12,13 @@ Gem::Specification.new do |s|
|
|
12
12
|
s.email = 'jkeiser@chef.io'
|
13
13
|
s.homepage = 'http://github.com/chef/chef-provisioning/README.md'
|
14
14
|
|
15
|
+
s.required_ruby_version = ">= 2.2.2"
|
16
|
+
|
15
17
|
s.add_dependency 'net-ssh', '>= 2.9', '< 4.0'
|
16
18
|
s.add_dependency 'net-scp', '~> 1.0'
|
17
19
|
s.add_dependency 'net-ssh-gateway', '~> 1.2.0'
|
18
20
|
s.add_dependency 'inifile', '>= 2.0.2'
|
19
|
-
s.add_dependency 'cheffish', '
|
21
|
+
s.add_dependency 'cheffish', '~> 4.0'
|
20
22
|
s.add_dependency 'winrm', '~> 1.3'
|
21
23
|
s.add_dependency "mixlib-install", "~> 1.0"
|
22
24
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: chef-provisioning
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Keiser
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: net-ssh
|
@@ -76,20 +76,14 @@ dependencies:
|
|
76
76
|
name: cheffish
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
78
78
|
requirements:
|
79
|
-
- - "
|
80
|
-
- !ruby/object:Gem::Version
|
81
|
-
version: 1.3.1
|
82
|
-
- - "<"
|
79
|
+
- - "~>"
|
83
80
|
- !ruby/object:Gem::Version
|
84
81
|
version: '4.0'
|
85
82
|
type: :runtime
|
86
83
|
prerelease: false
|
87
84
|
version_requirements: !ruby/object:Gem::Requirement
|
88
85
|
requirements:
|
89
|
-
- - "
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
version: 1.3.1
|
92
|
-
- - "<"
|
86
|
+
- - "~>"
|
93
87
|
- !ruby/object:Gem::Version
|
94
88
|
version: '4.0'
|
95
89
|
- !ruby/object:Gem::Dependency
|
@@ -281,7 +275,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
281
275
|
requirements:
|
282
276
|
- - ">="
|
283
277
|
- !ruby/object:Gem::Version
|
284
|
-
version:
|
278
|
+
version: 2.2.2
|
285
279
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
286
280
|
requirements:
|
287
281
|
- - ">="
|
@@ -289,7 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
289
283
|
version: '0'
|
290
284
|
requirements: []
|
291
285
|
rubyforge_project:
|
292
|
-
rubygems_version: 2.
|
286
|
+
rubygems_version: 2.6.6
|
293
287
|
signing_key:
|
294
288
|
specification_version: 4
|
295
289
|
summary: A library for creating machines and infrastructures idempotently in Chef.
|