Class: Bosh::Cli::Command::RuntimeConfig

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

Constant Summary

Constants inherited from Base

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

#showObject



8
9
10
11
12
13
14
15
16
# File 'lib/cli/commands/runtime_config.rb', line 8

def show
  auth_required
  show_current_state

  config = director.get_runtime_config
  if !config.nil?
    say(config.properties)
  end
end

#update(runtime_config_path) ⇒ Object



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/cli/commands/runtime_config.rb', line 21

def update(runtime_config_path)
  auth_required
  show_current_state

  runtime_config_yaml = read_yaml_file(runtime_config_path)

  if director.update_runtime_config(runtime_config_yaml)
    say("Successfully updated runtime config")
  else
    err("Failed to update runtime config")
  end
end