Class: Bosh::Cli::Command::BlobManagement

Inherits:
Base show all
Defined in:
lib/cli/commands/blob_management.rb

Constant Summary

Constants inherited from Base

Bosh::Cli::Command::Base::DEFAULT_DIRECTOR_PORT

Instance Attribute Summary

Attributes inherited from Base

#args, #exit_code, #info, #options, #out, #runner, #work_dir

Instance Method Summary collapse

Methods inherited from Base

#add_option, #blob_manager, #blobstore, #cache_dir, #config, #confirmed?, #credentials, #deployment, #director, #initialize, #interactive?, #logged_in?, #non_interactive?, #progress_renderer, #redirect, #release, #remove_option, #run_nested_command, #show_current_state, #target, #target_name, #verbose?

Methods included from Bosh::Cli::CommandDiscovery

#desc, #method_added, #option, #register_command, #usage

Methods included from DeploymentHelper

#build_manifest, #cancel_deployment, #deployment_changed?, #inspect_deployment_changes, #job_exists_in_deployment?, #job_unique_in_deployment?, #jobs_and_indexes, #prepare_deployment_manifest, #prompt_for_errand_name, #prompt_for_job_and_index

Constructor Details

This class inherits a constructor from Bosh::Cli::Command::Base

Instance Method Details

#add(local_path, blob_dir = nil) ⇒ Object



19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/cli/commands/blob_management.rb', line 19

def add(local_path, blob_dir = nil)
  blob_path = File.basename(local_path)
  if blob_dir
    # We don't need 'blobs/' prefix,
    # but it might be handy for people who rely on auto-completion
    if blob_dir[0..5] == "blobs/"
      blob_dir = blob_dir[6..-1]
    end
    blob_path = File.join(blob_dir, blob_path)
  end
  blob_manager.add_blob(local_path, blob_path)
end

#statusObject



9
10
11
# File 'lib/cli/commands/blob_management.rb', line 9

def status
  blob_manager.print_status
end

#syncObject



49
50
51
52
# File 'lib/cli/commands/blob_management.rb', line 49

def sync
  blob_manager.sync
  blob_manager.print_status
end

#uploadObject



35
36
37
38
39
40
41
42
43
44
# File 'lib/cli/commands/blob_management.rb', line 35

def upload
  blob_manager.print_status

  blob_manager.blobs_to_upload.each do |blob|
    nl
    if confirmed?("Upload blob #{blob.make_yellow}?")
      blob_manager.upload_blob(blob)
    end
  end
end