Sha256: 3cbb6bf811080b3054e850e8461c65534977c8d82f7430ee16a1616e2e4540c9
Contents?: true
Size: 862 Bytes
Versions: 35
Compression:
Stored size: 862 Bytes
Contents
class KuberKit::Actions::KubectlDescribe include KuberKit::Import[ "shell.kubectl_commands", "shell.local_shell", "kubernetes.resource_selector", "ui" ] Contract Maybe[String], Hash => Any def call(resource_name, options) kubeconfig_path = KuberKit.current_configuration.kubeconfig_path deployer_namespace = KuberKit.current_configuration.deployer_namespace if !resource_name resource_name = resource_selector.call("describe", include_ingresses: true, include_pods: true) end args = nil if options[:follow] args = "-f" end kubectl_commands.describe( local_shell, resource_name, args: args, kubeconfig_path: kubeconfig_path, namespace: deployer_namespace ) true rescue KuberKit::Error => e ui.print_error("Error", e.message) false end end
Version data entries
35 entries across 35 versions & 1 rubygems