kontena-cli 0.14.2 → 0.14.3
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/VERSION +1 -1
- data/kontena-cli.gemspec +8 -8
- data/lib/kontena/cli/master/aws/create_command.rb +1 -1
- data/lib/kontena/cli/nodes/aws/create_command.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f69e08dceaea4d9c27ed36ad29fcba3c1b0a35c3
|
|
4
|
+
data.tar.gz: bd0ecfce18b486a739c5bb350fd065754c60ad2b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 01cabe85791599a31e3f9206b2f122135895e7b3319868eaf94f3780beed69a80e143ac0a56a84b0bcadf17c7d4966c8231626f36073b54e0080954accb78757
|
|
7
|
+
data.tar.gz: 4a065ccdd916de152c0dce18b30b843dee55095d06c3409d4b32334d411e872f336b19fce4b80c293faa7369279059124a44adc0538942b1018d3301355c7944
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.14.
|
|
1
|
+
0.14.3
|
data/kontena-cli.gemspec
CHANGED
|
@@ -22,12 +22,12 @@ Gem::Specification.new do |spec|
|
|
|
22
22
|
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 1.7"
|
|
24
24
|
spec.add_development_dependency "rake", "~> 10.0"
|
|
25
|
-
spec.add_runtime_dependency
|
|
26
|
-
spec.add_runtime_dependency
|
|
27
|
-
spec.add_runtime_dependency
|
|
28
|
-
spec.add_runtime_dependency
|
|
29
|
-
spec.add_runtime_dependency
|
|
30
|
-
spec.add_runtime_dependency
|
|
31
|
-
spec.add_runtime_dependency
|
|
32
|
-
spec.add_runtime_dependency
|
|
25
|
+
spec.add_runtime_dependency "excon", "~> 0.49.0"
|
|
26
|
+
spec.add_runtime_dependency "colorize"
|
|
27
|
+
spec.add_runtime_dependency "clamp"
|
|
28
|
+
spec.add_runtime_dependency "highline"
|
|
29
|
+
spec.add_runtime_dependency "shell-spinner"
|
|
30
|
+
spec.add_runtime_dependency "ruby_dig"
|
|
31
|
+
spec.add_runtime_dependency "dry-validation", "0.7.4"
|
|
32
|
+
spec.add_runtime_dependency "dry-logic", "0.2.2"
|
|
33
33
|
end
|
|
@@ -19,7 +19,7 @@ module Kontena::Cli::Master::Aws
|
|
|
19
19
|
option "--mongodb-uri", "URI", "External MongoDB uri (optional)"
|
|
20
20
|
option "--version", "VERSION", "Define installed Kontena version", default: 'latest'
|
|
21
21
|
option "--auth-provider-url", "AUTH_PROVIDER_URL", "Define authentication provider url (optional)"
|
|
22
|
-
option "--associate-public-ip-address", :flag, "Whether to associated public IP in case the VPC defaults to not doing it", default:
|
|
22
|
+
option "--associate-public-ip-address", :flag, "Whether to associated public IP in case the VPC defaults to not doing it", default: true, attribute_name: :associate_public_ip
|
|
23
23
|
option "--security-groups", "SECURITY GROUPS", "Comma separated list of security groups (names) where the new instance will be attached (default: create 'kontena_master' group if not already existing)"
|
|
24
24
|
|
|
25
25
|
|
|
@@ -14,7 +14,7 @@ module Kontena::Cli::Nodes::Aws
|
|
|
14
14
|
option "--type", "SIZE", "Instance type", default: 't2.small'
|
|
15
15
|
option "--storage", "STORAGE", "Storage size (GiB)", default: '30'
|
|
16
16
|
option "--version", "VERSION", "Define installed Kontena version", default: 'latest'
|
|
17
|
-
option "--associate-public-ip-address", :flag, "Whether to associated public IP in case the VPC defaults to not doing it", default:
|
|
17
|
+
option "--associate-public-ip-address", :flag, "Whether to associated public IP in case the VPC defaults to not doing it", default: true, attribute_name: :associate_public_ip
|
|
18
18
|
option "--security-groups", "SECURITY GROUPS", "Comma separated list of security groups (names) where the new instance will be attached (default: create grid specific group if not already existing)"
|
|
19
19
|
|
|
20
20
|
def execute
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kontena-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kontena, Inc
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-06-
|
|
11
|
+
date: 2016-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -42,16 +42,16 @@ dependencies:
|
|
|
42
42
|
name: excon
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
|
-
- - "
|
|
45
|
+
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version:
|
|
47
|
+
version: 0.49.0
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
|
-
- - "
|
|
52
|
+
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version:
|
|
54
|
+
version: 0.49.0
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: colorize
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|