bosh_cli 1.2992.0 → 1.2999.0
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/bin/bosh +2 -2
- data/lib/cli/base_command.rb +7 -0
- data/lib/cli/client/credentials.rb +8 -0
- data/lib/cli/client/uaa/token_provider.rb +13 -6
- data/lib/cli/commands/backup.rb +2 -0
- data/lib/cli/commands/cloud_config.rb +2 -0
- data/lib/cli/commands/cloudcheck.rb +2 -0
- data/lib/cli/commands/deployment.rb +14 -10
- data/lib/cli/commands/errand.rb +1 -0
- data/lib/cli/commands/export_compiled_packages.rb +1 -0
- data/lib/cli/commands/import_compiled_packages.rb +1 -0
- data/lib/cli/commands/job_management.rb +1 -0
- data/lib/cli/commands/job_rename.rb +1 -0
- data/lib/cli/commands/locks.rb +1 -0
- data/lib/cli/commands/log_management.rb +2 -1
- data/lib/cli/commands/maintenance.rb +1 -0
- data/lib/cli/commands/property_management.rb +1 -0
- data/lib/cli/commands/release/delete_release.rb +1 -0
- data/lib/cli/commands/release/list_releases.rb +1 -0
- data/lib/cli/commands/release/upload_release.rb +1 -0
- data/lib/cli/commands/snapshot.rb +5 -5
- data/lib/cli/commands/stemcell.rb +7 -2
- data/lib/cli/commands/task.rb +4 -0
- data/lib/cli/commands/user.rb +2 -0
- data/lib/cli/commands/vms.rb +5 -3
- data/lib/cli/core_ext.rb +4 -0
- data/lib/cli/release_tarball.rb +8 -10
- data/lib/cli/version.rb +1 -1
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71ce11e10b7400a97f4913d79639104e0f23638b
|
4
|
+
data.tar.gz: 4285045ce6ab28b096101b324bdddb55a58a05bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 932270337ada50c2ac83a0ebd88651cda7b67ff5b0b237498466a96b53ad1831ad14034d53e0426e2bfde0531fe5bfdc71ede449dca4f3c87af109d6c05aeeff
|
7
|
+
data.tar.gz: bb685aaf474b8d566d21420f165ab0bf2b2661c61e3274433923984fc51d5a22d54fa594d642e324ffd190abe7a50b2dd72f5caee8baac77a2414a2e996db119
|
data/bin/bosh
CHANGED
@@ -7,9 +7,9 @@ begin
|
|
7
7
|
|
8
8
|
load_threshold = 5
|
9
9
|
if !ENV.has_key?("BOSH_CLI_SILENCE_SLOW_LOAD_WARNING") && require_cli_time > load_threshold
|
10
|
-
|
10
|
+
err_nl
|
11
11
|
warning sprintf("Loading the cli took %.1f seconds, consider cleaning your gem environment", require_cli_time)
|
12
|
-
|
12
|
+
err_nl
|
13
13
|
end
|
14
14
|
|
15
15
|
Thread.abort_on_exception = true
|
data/lib/cli/base_command.rb
CHANGED
@@ -187,6 +187,13 @@ module Bosh::Cli
|
|
187
187
|
say("Current deployment is #{deployment.make_green}")
|
188
188
|
end
|
189
189
|
|
190
|
+
def show_current_state(deployment_name=nil)
|
191
|
+
msg = "Acting as user '#{credentials.username.to_s.make_green}'"
|
192
|
+
msg += " on deployment '#{deployment_name.make_green}'" if deployment_name
|
193
|
+
msg += " on '#{target_name.make_green}'" if target_name
|
194
|
+
say(msg)
|
195
|
+
end
|
196
|
+
|
190
197
|
def no_track_unsupported
|
191
198
|
if @options.delete(:no_track)
|
192
199
|
say('Ignoring `' + '--no-track'.make_yellow + "' option")
|
@@ -6,6 +6,10 @@ module Bosh
|
|
6
6
|
@token_provider = token_provider
|
7
7
|
end
|
8
8
|
|
9
|
+
def username
|
10
|
+
@token_provider.username
|
11
|
+
end
|
12
|
+
|
9
13
|
def authorization_header
|
10
14
|
@token_provider.token
|
11
15
|
end
|
@@ -17,6 +21,10 @@ module Bosh
|
|
17
21
|
@password = password
|
18
22
|
end
|
19
23
|
|
24
|
+
def username
|
25
|
+
@username
|
26
|
+
end
|
27
|
+
|
20
28
|
def authorization_header
|
21
29
|
'Basic ' + Base64.encode64("#{@username}:#{@password}").strip
|
22
30
|
end
|
@@ -13,17 +13,24 @@ module Bosh
|
|
13
13
|
end
|
14
14
|
|
15
15
|
def token
|
16
|
-
|
17
|
-
access_info = client_access_info
|
18
|
-
else
|
19
|
-
access_info = password_access_info
|
20
|
-
end
|
21
|
-
|
16
|
+
access_info = get_access_info
|
22
17
|
access_info.auth_header if access_info
|
23
18
|
end
|
24
19
|
|
20
|
+
def username
|
21
|
+
get_access_info.username
|
22
|
+
end
|
23
|
+
|
25
24
|
private
|
26
25
|
|
26
|
+
def get_access_info
|
27
|
+
if @auth_info.client_auth?
|
28
|
+
client_access_info
|
29
|
+
else
|
30
|
+
password_access_info
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
27
34
|
def uaa_client
|
28
35
|
@uaa_client ||= Bosh::Cli::Client::Uaa::Client.new(@target, @auth_info, @config)
|
29
36
|
end
|
data/lib/cli/commands/backup.rb
CHANGED
@@ -7,6 +7,7 @@ module Bosh::Cli::Command
|
|
7
7
|
|
8
8
|
def show
|
9
9
|
auth_required
|
10
|
+
show_current_state
|
10
11
|
|
11
12
|
config = director.get_cloud_config
|
12
13
|
if !config.nil?
|
@@ -19,6 +20,7 @@ module Bosh::Cli::Command
|
|
19
20
|
|
20
21
|
def update(cloud_config_path)
|
21
22
|
auth_required
|
23
|
+
show_current_state
|
22
24
|
|
23
25
|
cloud_config_yaml = read_yaml_file(cloud_config_path)
|
24
26
|
|
@@ -86,7 +86,8 @@ module Bosh::Cli::Command
|
|
86
86
|
recreate = !!options[:recreate]
|
87
87
|
redact_diff = !!options[:redact_diff]
|
88
88
|
|
89
|
-
|
89
|
+
manifest = prepare_deployment_manifest(resolve_properties: true)
|
90
|
+
manifest_yaml = Psych.dump(manifest)
|
90
91
|
|
91
92
|
inspect_deployment_changes(
|
92
93
|
Psych.load(manifest_yaml),
|
@@ -95,11 +96,9 @@ module Bosh::Cli::Command
|
|
95
96
|
)
|
96
97
|
say('Please review all changes carefully'.make_yellow) if interactive?
|
97
98
|
|
98
|
-
deployment_name = File.basename(deployment)
|
99
|
-
|
100
99
|
header('Deploying')
|
101
|
-
|
102
|
-
|
100
|
+
deployment_name = manifest['name']
|
101
|
+
show_current_state(deployment_name)
|
103
102
|
|
104
103
|
unless confirmed?('Are you sure you want to deploy?')
|
105
104
|
cancel_deployment
|
@@ -114,11 +113,13 @@ module Bosh::Cli::Command
|
|
114
113
|
usage "delete deployment"
|
115
114
|
desc "Delete deployment"
|
116
115
|
option "--force", "ignore errors while deleting"
|
117
|
-
def delete(
|
116
|
+
def delete(deployment_name)
|
118
117
|
auth_required
|
118
|
+
show_current_state(deployment_name)
|
119
|
+
|
119
120
|
force = !!options[:force]
|
120
121
|
|
121
|
-
say("\nYou are going to delete deployment `#{
|
122
|
+
say("\nYou are going to delete deployment `#{deployment_name}'.".make_red)
|
122
123
|
nl
|
123
124
|
say("THIS IS A VERY DESTRUCTIVE OPERATION AND IT CANNOT BE UNDONE!\n".make_red)
|
124
125
|
|
@@ -128,10 +129,10 @@ module Bosh::Cli::Command
|
|
128
129
|
end
|
129
130
|
|
130
131
|
begin
|
131
|
-
status, result = director.delete_deployment(
|
132
|
-
task_report(status, result, "Deleted deployment `#{
|
132
|
+
status, result = director.delete_deployment(deployment_name, :force => force)
|
133
|
+
task_report(status, result, "Deleted deployment `#{deployment_name}'")
|
133
134
|
rescue Bosh::Cli::ResourceNotFound
|
134
|
-
task_report(:done, nil, "Skipped delete of missing deployment `#{
|
135
|
+
task_report(:done, nil, "Skipped delete of missing deployment `#{deployment_name}'")
|
135
136
|
end
|
136
137
|
end
|
137
138
|
|
@@ -203,6 +204,8 @@ module Bosh::Cli::Command
|
|
203
204
|
desc "Show the list of available deployments"
|
204
205
|
def list
|
205
206
|
auth_required
|
207
|
+
show_current_state
|
208
|
+
|
206
209
|
deployments = director.list_deployments
|
207
210
|
|
208
211
|
err("No deployments") if deployments.empty?
|
@@ -226,6 +229,7 @@ module Bosh::Cli::Command
|
|
226
229
|
desc "Download deployment manifest locally"
|
227
230
|
def download_manifest(deployment_name, save_as = nil)
|
228
231
|
auth_required
|
232
|
+
show_current_state(deployment_name)
|
229
233
|
|
230
234
|
if save_as && File.exists?(save_as) &&
|
231
235
|
!confirmed?("Overwrite `#{save_as}'?")
|
data/lib/cli/commands/errand.rb
CHANGED
@@ -39,6 +39,7 @@ module Bosh::Cli::Command
|
|
39
39
|
private
|
40
40
|
def perform_run_errand(errand_name)
|
41
41
|
deployment_name = prepare_deployment_manifest['name']
|
42
|
+
show_current_state(deployment_name)
|
42
43
|
|
43
44
|
errands_client = Bosh::Cli::Client::ErrandsClient.new(director)
|
44
45
|
status, task_id, errand_result = errands_client.run_errand(deployment_name, errand_name, options[:keep_alive] || FALSE)
|
@@ -8,6 +8,7 @@ module Bosh::Cli::Command
|
|
8
8
|
desc 'Download compiled packages for a specific release and stemcell combination'
|
9
9
|
def perform(release, stemcell, download_dir)
|
10
10
|
auth_required
|
11
|
+
show_current_state
|
11
12
|
|
12
13
|
release = Bosh::Cli::NameVersionPair.parse(release)
|
13
14
|
stemcell = Bosh::Cli::NameVersionPair.parse(stemcell)
|
@@ -6,6 +6,7 @@ module Bosh::Cli::Command
|
|
6
6
|
desc 'Import compiled packages for a specific release and stemcell combination'
|
7
7
|
def perform(exported_tar_path)
|
8
8
|
auth_required
|
9
|
+
show_current_state
|
9
10
|
|
10
11
|
unless File.exist?(exported_tar_path)
|
11
12
|
raise Bosh::Cli::CliError, 'Archive does not exist'
|
@@ -71,6 +71,7 @@ module Bosh::Cli
|
|
71
71
|
def check_arguments(operation, job)
|
72
72
|
auth_required
|
73
73
|
job_must_exist_in_deployment(job)
|
74
|
+
show_current_state(prepare_deployment_manifest['name'])
|
74
75
|
|
75
76
|
if hard? && soft?
|
76
77
|
err('Cannot handle both --hard and --soft options, please choose one')
|
@@ -9,6 +9,7 @@ module Bosh::Cli::Command
|
|
9
9
|
auth_required
|
10
10
|
manifest_yaml = prepare_deployment_manifest(:yaml => true)
|
11
11
|
manifest = Psych.load(manifest_yaml)
|
12
|
+
show_current_state(manifest['name'])
|
12
13
|
|
13
14
|
force = options[:force]
|
14
15
|
say("You are about to rename `#{old_name.make_green}' to `#{new_name.make_green}'")
|
data/lib/cli/commands/locks.rb
CHANGED
@@ -41,6 +41,7 @@ module Bosh::Cli::Command
|
|
41
41
|
|
42
42
|
def check_arguments(index)
|
43
43
|
auth_required
|
44
|
+
show_current_state(deployment_name)
|
44
45
|
no_track_unsupported
|
45
46
|
|
46
47
|
err('Job index is expected to be a positive integer') if index !~ /^\d+$/
|
@@ -74,7 +75,7 @@ module Bosh::Cli::Command
|
|
74
75
|
end
|
75
76
|
|
76
77
|
def deployment_name
|
77
|
-
prepare_deployment_manifest['name']
|
78
|
+
@deployment_name ||= prepare_deployment_manifest['name']
|
78
79
|
end
|
79
80
|
end
|
80
81
|
end
|
@@ -8,7 +8,7 @@ module Bosh::Cli::Command
|
|
8
8
|
auth_required
|
9
9
|
|
10
10
|
deployment_name = prepare_deployment_manifest['name']
|
11
|
-
|
11
|
+
show_current_state(deployment_name)
|
12
12
|
|
13
13
|
snapshots = director.list_snapshots(deployment_name, job, index)
|
14
14
|
|
@@ -40,7 +40,7 @@ module Bosh::Cli::Command
|
|
40
40
|
auth_required
|
41
41
|
|
42
42
|
deployment_name = prepare_deployment_manifest['name']
|
43
|
-
|
43
|
+
show_current_state(deployment_name)
|
44
44
|
|
45
45
|
unless job && index
|
46
46
|
unless confirmed?("Are you sure you want to take a snapshot of all deployment `#{deployment_name}'?")
|
@@ -60,7 +60,7 @@ module Bosh::Cli::Command
|
|
60
60
|
auth_required
|
61
61
|
|
62
62
|
deployment_name = prepare_deployment_manifest['name']
|
63
|
-
|
63
|
+
show_current_state(deployment_name)
|
64
64
|
|
65
65
|
unless confirmed?("Are you sure you want to delete snapshot `#{snapshot_cid}'?")
|
66
66
|
say('Canceled deleting snapshot'.make_green)
|
@@ -78,7 +78,7 @@ module Bosh::Cli::Command
|
|
78
78
|
auth_required
|
79
79
|
|
80
80
|
deployment_name = prepare_deployment_manifest['name']
|
81
|
-
|
81
|
+
show_current_state(deployment_name)
|
82
82
|
|
83
83
|
unless confirmed?("Are you sure you want to delete all snapshots of deployment `#{deployment_name}'?")
|
84
84
|
say('Canceled deleting snapshots'.make_green)
|
@@ -90,4 +90,4 @@ module Bosh::Cli::Command
|
|
90
90
|
task_report(status, task_id, "Deleted all snapshots of deployment `#{deployment_name}'")
|
91
91
|
end
|
92
92
|
end
|
93
|
-
end
|
93
|
+
end
|
@@ -31,6 +31,7 @@ module Bosh::Cli
|
|
31
31
|
option '--skip-if-exists', 'skips upload if stemcell already exists'
|
32
32
|
def upload(stemcell_location)
|
33
33
|
auth_required
|
34
|
+
show_current_state
|
34
35
|
|
35
36
|
stemcell_type = stemcell_location =~ /^#{URI::regexp}$/ ? 'remote' : 'local'
|
36
37
|
if stemcell_type == 'local'
|
@@ -85,6 +86,8 @@ module Bosh::Cli
|
|
85
86
|
desc 'Show the list of available stemcells'
|
86
87
|
def list
|
87
88
|
auth_required
|
89
|
+
show_current_state
|
90
|
+
|
88
91
|
stemcells = director.list_stemcells.sort do |sc1, sc2|
|
89
92
|
if sc1['name'] == sc2['name']
|
90
93
|
Bosh::Common::Version::StemcellVersion.parse_and_compare(sc1['version'], sc2['version'])
|
@@ -96,7 +99,7 @@ module Bosh::Cli
|
|
96
99
|
err('No stemcells') if stemcells.empty?
|
97
100
|
|
98
101
|
stemcells_table = table do |t|
|
99
|
-
t.headings = 'Name', 'Version', 'CID'
|
102
|
+
t.headings = 'Name', 'OS', 'Version', 'CID'
|
100
103
|
stemcells.each do |sc|
|
101
104
|
t << get_stemcell_table_record(sc)
|
102
105
|
end
|
@@ -133,6 +136,8 @@ module Bosh::Cli
|
|
133
136
|
option '--force', 'ignore errors while deleting the stemcell'
|
134
137
|
def delete(name, version)
|
135
138
|
auth_required
|
139
|
+
show_current_state
|
140
|
+
|
136
141
|
force = !!options[:force]
|
137
142
|
|
138
143
|
say('Checking if stemcell exists...')
|
@@ -187,7 +192,7 @@ module Bosh::Cli
|
|
187
192
|
def get_stemcell_table_record(sc)
|
188
193
|
deployments = sc.fetch('deployments', [])
|
189
194
|
|
190
|
-
[sc['name'], "#{sc['version']}#{deployments.empty? ? '' : '*'}", sc['cid']]
|
195
|
+
[sc['name'], sc['operating_system'], "#{sc['version']}#{deployments.empty? ? '' : '*'}", sc['cid']]
|
191
196
|
end
|
192
197
|
end
|
193
198
|
end
|
data/lib/cli/commands/task.rb
CHANGED
@@ -14,6 +14,7 @@ module Bosh::Cli::Command
|
|
14
14
|
option "--no-filter", INCLUDE_ALL
|
15
15
|
def track(task_id = nil)
|
16
16
|
auth_required
|
17
|
+
show_current_state
|
17
18
|
use_filter = !options.key?(:no_filter)
|
18
19
|
raw_output = options[:raw]
|
19
20
|
|
@@ -67,6 +68,7 @@ module Bosh::Cli::Command
|
|
67
68
|
option "--no-filter", INCLUDE_ALL
|
68
69
|
def list_running
|
69
70
|
auth_required
|
71
|
+
show_current_state
|
70
72
|
use_filter = !options.key?(:no_filter)
|
71
73
|
tasks = director.list_running_tasks(get_verbose_level(use_filter))
|
72
74
|
err("No running tasks") if tasks.empty?
|
@@ -80,6 +82,7 @@ module Bosh::Cli::Command
|
|
80
82
|
option "--no-filter", INCLUDE_ALL
|
81
83
|
def list_recent(count = 30)
|
82
84
|
auth_required
|
85
|
+
show_current_state
|
83
86
|
use_filter = !options.key?(:no_filter)
|
84
87
|
tasks = director.list_recent_tasks(count, get_verbose_level(use_filter))
|
85
88
|
err("No recent tasks") if tasks.empty?
|
@@ -92,6 +95,7 @@ module Bosh::Cli::Command
|
|
92
95
|
desc "Cancel task once it reaches the next checkpoint"
|
93
96
|
def cancel(task_id)
|
94
97
|
auth_required
|
98
|
+
show_current_state
|
95
99
|
task = Bosh::Cli::DirectorTask.new(director, task_id)
|
96
100
|
task.cancel
|
97
101
|
say("Task #{task_id} is getting canceled")
|
data/lib/cli/commands/user.rb
CHANGED
@@ -8,6 +8,7 @@ module Bosh::Cli::Command
|
|
8
8
|
desc "Create user"
|
9
9
|
def create(username = nil, password = nil)
|
10
10
|
auth_required
|
11
|
+
show_current_state
|
11
12
|
|
12
13
|
if interactive?
|
13
14
|
username = ask("Enter new username: ") if username.blank?
|
@@ -34,6 +35,7 @@ module Bosh::Cli::Command
|
|
34
35
|
desc "Deletes the user from the director"
|
35
36
|
def delete(username = nil)
|
36
37
|
auth_required
|
38
|
+
show_current_state
|
37
39
|
|
38
40
|
if interactive?
|
39
41
|
username ||= ask("Username to delete: ")
|
data/lib/cli/commands/vms.rb
CHANGED
@@ -9,20 +9,22 @@ module Bosh::Cli::Command
|
|
9
9
|
option '--vitals', 'Return VM vitals information'
|
10
10
|
def list(deployment_name = nil)
|
11
11
|
auth_required
|
12
|
+
show_current_state(deployment_name)
|
12
13
|
no_track_unsupported
|
13
14
|
|
14
15
|
if deployment_name.nil?
|
15
16
|
deps = director.list_deployments
|
16
17
|
err('No deployments') if deps.empty?
|
17
|
-
deps.each
|
18
|
+
deps.each do |dep|
|
19
|
+
say("Deployment `#{dep['name'].make_green}'")
|
20
|
+
show_deployment(dep['name'], options)
|
21
|
+
end
|
18
22
|
else
|
19
23
|
show_deployment deployment_name, options
|
20
24
|
end
|
21
25
|
end
|
22
26
|
|
23
27
|
def show_deployment(name, options={})
|
24
|
-
say("Deployment `#{name.make_green}'")
|
25
|
-
|
26
28
|
vms = director.fetch_vm_state(name)
|
27
29
|
|
28
30
|
if vms.empty?
|
data/lib/cli/core_ext.rb
CHANGED
data/lib/cli/release_tarball.rb
CHANGED
@@ -16,15 +16,14 @@ module Bosh::Cli
|
|
16
16
|
# Unpacks tarball to @unpack_dir, returns true if succeeded, false if failed
|
17
17
|
def unpack
|
18
18
|
return @unpacked unless @unpacked.nil?
|
19
|
-
|
20
|
-
@unpacked =
|
19
|
+
exit_success = system("tar", "-C", @unpack_dir, "-xzf", @tarball_path, out: "/dev/null", err: "/dev/null")
|
20
|
+
@unpacked = !!exit_success
|
21
21
|
end
|
22
22
|
|
23
23
|
# Creates a new tarball from the current contents of @unpack_dir
|
24
24
|
def create_from_unpacked(target_path)
|
25
25
|
raise "Not unpacked yet!" unless @unpacked
|
26
|
-
|
27
|
-
$?.exitstatus == 0
|
26
|
+
!!system("tar", "-C", @unpack_dir, "-pczf", File.expand_path(target_path), ".", out: "/dev/null", err: "/dev/null")
|
28
27
|
end
|
29
28
|
|
30
29
|
def exists?
|
@@ -76,8 +75,8 @@ module Bosh::Cli
|
|
76
75
|
repacked_path = File.join(tmpdir, 'release-reformat.tgz')
|
77
76
|
|
78
77
|
Dir.chdir(@unpack_dir) do
|
79
|
-
|
80
|
-
return repacked_path if
|
78
|
+
exit_success = system("tar", "-czf", repacked_path, ".", out: "/dev/null", err: "/dev/null")
|
79
|
+
return repacked_path if exit_success
|
81
80
|
end
|
82
81
|
end
|
83
82
|
|
@@ -117,8 +116,8 @@ module Bosh::Cli
|
|
117
116
|
end
|
118
117
|
|
119
118
|
return nil if @skipped == 0
|
120
|
-
|
121
|
-
return repacked_path if
|
119
|
+
exit_success = system("tar", "-czf", repacked_path, ".", out: "/dev/null", err: "/dev/null")
|
120
|
+
return repacked_path if exit_success
|
122
121
|
end
|
123
122
|
end
|
124
123
|
|
@@ -233,8 +232,7 @@ module Bosh::Cli
|
|
233
232
|
|
234
233
|
job_tmp_dir = Dir.mktmpdir
|
235
234
|
FileUtils.mkdir_p(job_tmp_dir)
|
236
|
-
|
237
|
-
job_extracted = $?.exitstatus == 0
|
235
|
+
job_extracted = !!system("tar", "-C", job_tmp_dir, "-xzf", job_file, out: "/dev/null", err: "/dev/null")
|
238
236
|
|
239
237
|
step("Extract job '#{name}'", "Cannot extract job '#{name}'") do
|
240
238
|
job_extracted
|
data/lib/cli/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bosh_cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.2999.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- VMware
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-06-
|
11
|
+
date: 2015-06-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bosh_common
|
@@ -16,28 +16,28 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.2999.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.2999.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bosh-template
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.2999.0
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.
|
40
|
+
version: 1.2999.0
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: cf-uaa-lib
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - "~>"
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 1.
|
131
|
+
version: 1.2999.0
|
132
132
|
type: :runtime
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - "~>"
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 1.
|
138
|
+
version: 1.2999.0
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: net-ssh
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|
@@ -306,7 +306,7 @@ dependencies:
|
|
306
306
|
version: '0'
|
307
307
|
description: |-
|
308
308
|
BOSH CLI
|
309
|
-
|
309
|
+
321dd5
|
310
310
|
email: support@cloudfoundry.com
|
311
311
|
executables:
|
312
312
|
- bosh
|