cloudstack-cli 1.2.6 → 1.2.7
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/Gemfile.lock +1 -1
- data/README.md +1 -0
- data/lib/cloudstack-cli/commands/stack.rb +2 -1
- data/lib/cloudstack-cli/version.rb +1 -1
- metadata +1 -3
- data/test/infrastructure_stack.yaml +0 -36
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5fa2bfbc4a4dda7a046fc21a7798e8a38c8826e
|
|
4
|
+
data.tar.gz: 092f79211f64e0961f68bb8425341401620dafd7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eeb1e3c478edb5bfd9e9e632983b849c33c55e9fc8eccd4b8d6078fd225477ec3f3179e809d6f941eca310a52a2d99426fa98a474bd34df5150f62675b04bb42
|
|
7
|
+
data.tar.gz: c9a1a1d52097bd8de88a30836f42cb81aa3610bc91726d7b8ddd9cfe6067f69ce9f1fc7b9dfcceb5c5a6e885427dcdd05a6e332dd034f6fe974dbec8910e1914
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -31,11 +31,12 @@ class Stack < CloudstackCli::Base
|
|
|
31
31
|
size: instance["disk_size"],
|
|
32
32
|
group: instance["group"] || stack["group"],
|
|
33
33
|
keypair: instance["keypair"] || stack["keypair"],
|
|
34
|
+
ip_address: instance["ip_address"],
|
|
34
35
|
sync: true
|
|
35
36
|
}
|
|
36
37
|
jobs << {
|
|
37
38
|
id: client.deploy_virtual_machine(
|
|
38
|
-
vm_options_to_params
|
|
39
|
+
vm_options_to_params,
|
|
39
40
|
{sync: true}
|
|
40
41
|
)['jobid'],
|
|
41
42
|
name: "Create VM #{name}"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudstack-cli
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nik Wolfgramm
|
|
@@ -124,7 +124,6 @@ files:
|
|
|
124
124
|
- lib/cloudstack-cli/option_resolver.rb
|
|
125
125
|
- lib/cloudstack-cli/thor_patch.rb
|
|
126
126
|
- lib/cloudstack-cli/version.rb
|
|
127
|
-
- test/infrastructure_stack.yaml
|
|
128
127
|
- test/stack_example.json
|
|
129
128
|
- test/stack_example.yml
|
|
130
129
|
homepage: http://github.com/niwo/cloudstack-cli
|
|
@@ -154,6 +153,5 @@ signing_key:
|
|
|
154
153
|
specification_version: 4
|
|
155
154
|
summary: cloudstack-cli CloudStack API client
|
|
156
155
|
test_files:
|
|
157
|
-
- test/infrastructure_stack.yaml
|
|
158
156
|
- test/stack_example.json
|
|
159
157
|
- test/stack_example.yml
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
name: Test Infrastructure Stack
|
|
2
|
-
description: "Web Application Stack"
|
|
3
|
-
version: "1.0"
|
|
4
|
-
domains:
|
|
5
|
-
- name: Testdomain
|
|
6
|
-
network_domain: test.io
|
|
7
|
-
- name: Subdomain
|
|
8
|
-
network_domain: sub.test.io
|
|
9
|
-
parent_domain: Testdomain
|
|
10
|
-
accounts:
|
|
11
|
-
-
|
|
12
|
-
-
|
|
13
|
-
users:
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
projects:
|
|
17
|
-
-
|
|
18
|
-
-
|
|
19
|
-
compute_offerings:
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
network_offerings:
|
|
23
|
-
-
|
|
24
|
-
-
|
|
25
|
-
networks:
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
port_rules:
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
load_balancing_rules:
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
resource_limits:
|
|
35
|
-
-
|
|
36
|
-
-
|