knife-vrealize 2.0.0 → 2.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/lib/chef/knife/cloud/vra_service_options.rb +5 -0
- data/lib/knife-vrealize/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: c0a4323fc1ff045d47d748fd42d4dbb9994e4ac4
|
|
4
|
+
data.tar.gz: 11388d1ec48ba1a0a05393a24990f5d316e46d19
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7e2e605f2270de5ebff40a1caf3e4edea15aa8c2d83ea2e6930f760830abc45ba67d28f0233aed755664b29a6d63e25b98d05fa2d208c64177fc125f326f104c
|
|
7
|
+
data.tar.gz: fba865a67214fd4934c4a0cee8ef8d5ea6d5b6444513e703cb6858880c81e13b62354431483e66283ab1fac47c5f65abe231f89e20c19ff4003387005db143cd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [v2.0.1](https://github.com/chef-partners/knife-vrealize/tree/v2.0.1) (2017-01-09)
|
|
4
4
|
|
|
5
|
+
[Full Changelog](https://github.com/chef-partners/knife-vrealize/compare/v2.0.0...v2.0.1)
|
|
6
|
+
|
|
7
|
+
**Merged pull requests:**
|
|
8
|
+
|
|
9
|
+
- Add --vra-tenant command line option [\#21](https://github.com/chef-partners/knife-vrealize/pull/21) ([bdiringer](https://github.com/bdiringer))
|
|
10
|
+
|
|
11
|
+
## [v2.0.0](https://github.com/chef-partners/knife-vrealize/tree/v2.0.0) (2016-12-15)
|
|
5
12
|
[Full Changelog](https://github.com/chef-partners/knife-vrealize/compare/v1.5.0...v2.0.0)
|
|
6
13
|
|
|
7
14
|
**Closed issues:**
|
|
@@ -20,6 +20,7 @@ class Chef
|
|
|
20
20
|
class Knife
|
|
21
21
|
class Cloud
|
|
22
22
|
# rubocop:disable Style/AlignParameters
|
|
23
|
+
# rubocop:disable Metrics/BlockLength
|
|
23
24
|
module VraServiceOptions
|
|
24
25
|
def self.included(includer)
|
|
25
26
|
includer.class_eval do
|
|
@@ -35,6 +36,10 @@ class Chef
|
|
|
35
36
|
long: '--vra-password PASSWORD',
|
|
36
37
|
description: 'Password to use with the vRA API'
|
|
37
38
|
|
|
39
|
+
option :vra_tenant,
|
|
40
|
+
long: '--vra-tenant TENANT',
|
|
41
|
+
description: 'Tenant name (organization) to use with the vRA API'
|
|
42
|
+
|
|
38
43
|
option :vra_disable_ssl_verify,
|
|
39
44
|
long: '--vra-disable-ssl-verify',
|
|
40
45
|
description: 'Skip any SSL verification for the vRA API',
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-vrealize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.0.
|
|
4
|
+
version: 2.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Chef Partner Engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: chef
|