vagrant-subutai 7.0.9 → 7.0.10

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: 337e2dc6ce4441a23651ec10956a94e0cda4f9e2
4
- data.tar.gz: 64f885bb4fb9db5331b730ec16e968317d72bda1
3
+ metadata.gz: 252afebfb28bdac7c68bf41bfd3a9101f72412d0
4
+ data.tar.gz: 1bef11d7fd678fbd8ea7e6a9758958249e68d8e5
5
5
  SHA512:
6
- metadata.gz: c81431f346f59decb399ee2de61a19bbe1087d97150c35893aa3296d487e285fa2e51e08455e8aa782669fa6468f429f9ac886e8daa3fa16adbe6c6c64cc43a5
7
- data.tar.gz: 0ef52419f5fa5d3c105f283707f13522781a133f6e306492644fbc1ddce89891d8f5b55374fbbde5627d89eaf0eece313650cb0e6fb69657beeb9e17c63a29fc
6
+ metadata.gz: 0613f02879c8d02b42571cc7a341841e25d6ebcca60078639edb0b3ab393ddf8960f625a988c27b944b3c284e3a33d73637c084e602e1b2dad79693750ea6bb1
7
+ data.tar.gz: e2a513f0e0dc7e299b3f2af23004c57ae07326a2fd10de20147a2f1a2276c86847516c2db1d730ecf1b69a1acccf7fc2df9b34547fc376d95930df88ee763f1d
@@ -1,3 +1,7 @@
1
+ ## 7.0.10 (Decemeber 29, 2018)
2
+ IMPROVEMENTS:
3
+ - Plugin help command output info is updated.
4
+
1
5
  ## 7.0.9 (December 28, 2018)
2
6
  FEATURES:
3
7
  - Use new the PeerOs REST API for peer registration and unregistering. #124
data/README.md CHANGED
@@ -11,44 +11,159 @@ Vagrant Subutai Plugin - executes Subutai scripts in target hosts
11
11
  Usage: vagrant subutai command [command options] [arguments...]
12
12
 
13
13
  COMMANDS:
14
- attach - attach to Subutai container
15
- backup - backup Subutai container
16
- batch - batch commands execution
17
- checkpoint - checkpoint/restore in user space
18
- clone - clone Subutai container
19
- cleanup - clean Subutai environment
20
- config - edit container config
21
- daemon - start Subutai agent
22
- demote - demote Subutai container
23
- destroy - destroy Subutai container
24
- export - export Subutai container
25
- import - import Subutai template
26
- info - information about host system
27
- hostname - Set hostname of container or host
28
- list - list Subutai container
29
- log - print application logs
30
- map - Subutai port mapping
31
- metrics - list Subutai container
32
- migrate - migrate Subutai container
33
- p2p - P2P network operations
34
- promote - promote Subutai container
35
- proxy - Subutai reverse proxy
36
- quota - set quotas for Subutai container
37
- rename - rename Subutai container
38
- restore - restore Subutai container
39
- stats - statistics from host
40
- start - start Subutai container
41
- stop - stop Subutai container
42
- tunnel - SSH tunnel management
43
- update - update Subutai management, container or Resource host
44
- vxlan - VXLAN tunnels operation
45
- register - register Subutai PeerOS to Bazaar
46
- unregister - unregister Subutai PeerOS from Bazaar
47
- fingerprint - shows fingerprint Subutai Console
48
- open - open the Subutai PeerOS in browser
49
- blueprint - run blueprint provisioning
14
+ help [<command>...]
15
+ Show help.
16
+
17
+ daemon
18
+ Run subutai agent daemon
19
+
20
+ list containers
21
+ List containers
22
+
23
+ list templates
24
+ List templates
25
+
26
+ list all
27
+ List all
28
+
29
+ list info
30
+ List containers info
31
+
32
+ attach <name> [<command>]
33
+ Attach to Subutai container
34
+
35
+ clone [<flags>] <template> <container>
36
+ Create Subutai container
37
+
38
+ cleanup <vlan>
39
+ Cleanup environment
40
+
41
+ prune
42
+ Prune templates with no child containers
43
+
44
+ destroy <name>
45
+ Destroy Subutai container/template
46
+
47
+ export --token=TOKEN [<flags>] <container>
48
+ Export container as a template
49
+
50
+ import [<flags>] <template>
51
+ Import Subutai template
52
+
53
+ info id [<container>]
54
+ host/container id
55
+
56
+ info system
57
+ Host info
58
+
59
+ info os
60
+ Host os
61
+
62
+ info ipaddr
63
+ Host ip address
64
+
65
+ info ports
66
+ Host used ports
67
+
68
+ info du <container>
69
+ Container disk usage
70
+
71
+ info qu <container>
72
+ Container quota usage
73
+
74
+ hostname rh <hostname>
75
+ Set RH hostname
76
+
77
+ hostname con <container> <hostname>
78
+ Set container hostname
79
+
80
+ map add --protocol=PROTOCOL --external port=EXTERNAL PORT --internal server=INTERNAL SERVER [<flags>]
81
+ Add port mapping
82
+
83
+ map rm --protocol=PROTOCOL --external port=EXTERNAL PORT [<flags>]
84
+ Remove port mapping
85
+
86
+ map list [<flags>]
87
+ List mapped ports
88
+
89
+ metrics --start=START --end=END <name>
90
+ Print host/container metrics
91
+
92
+ proxy create --protocol=PROTOCOL --port=PORT --tag=TAG [<flags>]
93
+ Create proxy
94
+
95
+ proxy list [<flags>]
96
+ List proxies
97
+
98
+ proxy remove --tag=TAG
99
+ Remove proxy
100
+
101
+ proxy server add --tag=TAG --server=SERVER
102
+ Add proxied server
103
+
104
+ proxy server remove --tag=TAG --server=SERVER
105
+ Remove proxied server
106
+
107
+ proxy server list --tag=TAG
108
+ List servers for proxy
109
+
110
+ quota get --resource=RESOURCE --container=CONTAINER
111
+ Print container resource quota
112
+
113
+ quota set --resource=RESOURCE --container=CONTAINER <limit>
114
+ Set container resource quota
115
+
116
+ start <name(s)>...
117
+ Start Subutai container
118
+
119
+ stop <name(s)>...
120
+ Stop Subutai container
121
+
122
+ restart <name(s)>...
123
+ Restart Subutai container
124
+
125
+ update [<flags>] <component>
126
+ Update peer components
127
+
128
+ tunnel add [<flags>] <socket> [<ttl>]
129
+ Create ssh tunnel
130
+
131
+ tunnel del <socket>
132
+ Delete ssh tunnel
133
+
134
+ tunnel list
135
+ List ssh tunnels
136
+
137
+ vxlan add --remoteip=REMOTEIP --vni=VNI --vlan=VLAN <name>
138
+ Add vxlan tunnel
139
+
140
+ vxlan del <name>
141
+ Delete vxlan tunnel
142
+
143
+ vxlan list
144
+ List vxlan tunnels
145
+
146
+ batch <commands>
147
+ Execute a batch of commands
148
+
149
+ register
150
+ Register Subutai PeerOS to Bazaar
151
+
152
+ unregister
153
+ Unregister Subutai PeerOS from Bazaar
154
+
155
+ fingerprint
156
+ Shows fingerprint Subutai Console
157
+
158
+ open
159
+ Open the Subutai PeerOS in browser
160
+
161
+ blueprint
162
+ Run blueprint provisioning
163
+
50
164
 
51
165
  GLOBAL OPTIONS:
52
- -h, --help - show help
166
+ -h, --help
167
+ Show help
53
168
  ```
54
169
 
@@ -72,45 +72,160 @@ module VagrantSubutai
72
72
  Usage: vagrant subutai command [command options] [arguments...]
73
73
 
74
74
  COMMANDS:
75
- attach - attach to Subutai container
76
- backup - backup Subutai container
77
- batch - batch commands execution
78
- checkpoint - checkpoint/restore in user space
79
- clone - clone Subutai container
80
- cleanup - clean Subutai environment
81
- config - edit container config
82
- daemon - start Subutai agent
83
- demote - demote Subutai container
84
- destroy - destroy Subutai container
85
- export - export Subutai container
86
- import - import Subutai template
87
- info - information about host system
88
- hostname - Set hostname of container or host
89
- list - list Subutai container
90
- log - print application logs
91
- map - Subutai port mapping
92
- metrics - list Subutai container
93
- migrate - migrate Subutai container
94
- p2p - P2P network operations
95
- promote - promote Subutai container
96
- proxy - Subutai reverse proxy
97
- quota - set quotas for Subutai container
98
- rename - rename Subutai container
99
- restore - restore Subutai container
100
- stats - statistics from host
101
- start - start Subutai container
102
- stop - stop Subutai container
103
- tunnel - SSH tunnel management
104
- update - update Subutai management, container or Resource host
105
- vxlan - VXLAN tunnels operation
106
- register - register Subutai PeerOS to Bazaar
107
- unregister - unregister Subutai PeerOS from Bazaar
108
- fingerprint - shows fingerprint Subutai Console
109
- open - open the Subutai PeerOS in browser
110
- blueprint - run blueprint provisioning
75
+ help [<command>...]
76
+ Show help.
77
+
78
+ daemon
79
+ Run subutai agent daemon
80
+
81
+ list containers
82
+ List containers
83
+
84
+ list templates
85
+ List templates
86
+
87
+ list all
88
+ List all
89
+
90
+ list info
91
+ List containers info
92
+
93
+ attach <name> [<command>]
94
+ Attach to Subutai container
95
+
96
+ clone [<flags>] <template> <container>
97
+ Create Subutai container
98
+
99
+ cleanup <vlan>
100
+ Cleanup environment
101
+
102
+ prune
103
+ Prune templates with no child containers
104
+
105
+ destroy <name>
106
+ Destroy Subutai container/template
107
+
108
+ export --token=TOKEN [<flags>] <container>
109
+ Export container as a template
110
+
111
+ import [<flags>] <template>
112
+ Import Subutai template
113
+
114
+ info id [<container>]
115
+ host/container id
116
+
117
+ info system
118
+ Host info
119
+
120
+ info os
121
+ Host os
122
+
123
+ info ipaddr
124
+ Host ip address
125
+
126
+ info ports
127
+ Host used ports
128
+
129
+ info du <container>
130
+ Container disk usage
131
+
132
+ info qu <container>
133
+ Container quota usage
134
+
135
+ hostname rh <hostname>
136
+ Set RH hostname
137
+
138
+ hostname con <container> <hostname>
139
+ Set container hostname
140
+
141
+ map add --protocol=PROTOCOL --external port=EXTERNAL PORT --internal server=INTERNAL SERVER [<flags>]
142
+ Add port mapping
143
+
144
+ map rm --protocol=PROTOCOL --external port=EXTERNAL PORT [<flags>]
145
+ Remove port mapping
146
+
147
+ map list [<flags>]
148
+ List mapped ports
149
+
150
+ metrics --start=START --end=END <name>
151
+ Print host/container metrics
152
+
153
+ proxy create --protocol=PROTOCOL --port=PORT --tag=TAG [<flags>]
154
+ Create proxy
155
+
156
+ proxy list [<flags>]
157
+ List proxies
158
+
159
+ proxy remove --tag=TAG
160
+ Remove proxy
161
+
162
+ proxy server add --tag=TAG --server=SERVER
163
+ Add proxied server
164
+
165
+ proxy server remove --tag=TAG --server=SERVER
166
+ Remove proxied server
167
+
168
+ proxy server list --tag=TAG
169
+ List servers for proxy
170
+
171
+ quota get --resource=RESOURCE --container=CONTAINER
172
+ Print container resource quota
173
+
174
+ quota set --resource=RESOURCE --container=CONTAINER <limit>
175
+ Set container resource quota
176
+
177
+ start <name(s)>...
178
+ Start Subutai container
179
+
180
+ stop <name(s)>...
181
+ Stop Subutai container
182
+
183
+ restart <name(s)>...
184
+ Restart Subutai container
185
+
186
+ update [<flags>] <component>
187
+ Update peer components
188
+
189
+ tunnel add [<flags>] <socket> [<ttl>]
190
+ Create ssh tunnel
191
+
192
+ tunnel del <socket>
193
+ Delete ssh tunnel
194
+
195
+ tunnel list
196
+ List ssh tunnels
197
+
198
+ vxlan add --remoteip=REMOTEIP --vni=VNI --vlan=VLAN <name>
199
+ Add vxlan tunnel
200
+
201
+ vxlan del <name>
202
+ Delete vxlan tunnel
203
+
204
+ vxlan list
205
+ List vxlan tunnels
206
+
207
+ batch <commands>
208
+ Execute a batch of commands
209
+
210
+ register
211
+ Register Subutai PeerOS to Bazaar
212
+
213
+ unregister
214
+ Unregister Subutai PeerOS from Bazaar
215
+
216
+ fingerprint
217
+ Shows fingerprint Subutai Console
218
+
219
+ open
220
+ Open the Subutai PeerOS in browser
221
+
222
+ blueprint
223
+ Run blueprint provisioning
224
+
111
225
 
112
226
  GLOBAL OPTIONS:
113
- -h, --help - show help
227
+ -h, --help
228
+ Show help
114
229
  EOF
115
230
  commands
116
231
  end
@@ -1,3 +1,3 @@
1
1
  module VagrantSubutai
2
- VERSION = '7.0.9'
2
+ VERSION = '7.0.10'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-subutai
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.0.9
4
+ version: 7.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Subutai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-12-28 00:00:00.000000000 Z
11
+ date: 2018-12-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -136,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
136
  version: '0'
137
137
  requirements: []
138
138
  rubyforge_project:
139
- rubygems_version: 2.6.14
139
+ rubygems_version: 2.5.2.1
140
140
  signing_key:
141
141
  specification_version: 4
142
142
  summary: '["Subutai CLI. Execute subutai commands outside the Vagrant box"]'