Class: KuberKit::Actions::KubectlApplier

Inherits:
Object
  • Object
show all
Defined in:
lib/kuber_kit/actions/kubectl_applier.rb

Instance Method Summary collapse

Instance Method Details

#call(file_path, options) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/kuber_kit/actions/kubectl_applier.rb', line 9

def call(file_path, options)
  kubeconfig_path  = KuberKit.current_configuration.kubeconfig_path
  deployer_namespace = KuberKit.current_configuration.deployer_namespace
  ui.create_task("Applying file: #{file_path}") do |task|
    kubectl_commands.apply_file(local_shell, file_path, kubeconfig_path: kubeconfig_path, namespace: deployer_namespace)
    task.update_title("Applied file: #{file_path}")
  end

  true
rescue KuberKit::Error => e
  ui.print_error("Error", e.message)
  
  false
end