module Dapp::Kube::Dapp::Command::SecretEdit

Public Instance Methods

kube_secret_edit(file_path) click to toggle source
# File lib/dapp/kube/dapp/command/secret_edit.rb, line 6
def kube_secret_edit(file_path)
  ruby2go_deploy_command(command: :secret_edit, options: kube_secret_edit_command_options(file_path))
end
kube_secret_edit_command_options(file_path) click to toggle source
# File lib/dapp/kube/dapp/command/secret_edit.rb, line 10
def kube_secret_edit_command_options(file_path)
  {
    tmp_dir: _ruby2go_tmp_dir,
    file_path: file_path,
    values: options[:values]
  }
end