chilly-plastic-75584
03/28/2022, 7:08 PMbusy-journalist-6936
03/28/2022, 10:34 PMimport {env} from 'process';
const kubeconfig = new k8s.Provider('kubeconfig', {
context: kubeConfigContext,
kubeconfig: env.KUBECONFIG,
suppressHelmHookWarnings: true,
enableDryRun: true,
});
Where kubeconfig: env.KUBECONFIG,
is reading the env var KUBECONFIG.chilly-plastic-75584
03/29/2022, 1:32 AM