fix setting kubeconfig

This commit is contained in:
Nana Janashia
2020-12-20 17:43:37 +01:00
parent 808024df04
commit 8a5eca28bd

4
Jenkinsfile vendored
View File

@@ -37,9 +37,9 @@ pipeline {
script: "terraform output ecr_user_password",
returnStdout: true
).trim()
env.KUBECONFIG="./kubeconfig.yaml"
sh "kubectl get node"
}
env.KUBECONFIG="terraform/kubeconfig.yaml"
sh "kubectl get node"
}
}
}