部署阶段:
先把下边的源码粘贴到 jenkinsfile 中
stage('server-gateway 部署到dev环境') {
steps {
container ('maven') {
withCredentials([
kubeconfigFile(
credentialsId: env.KUBECONFIG_CREDENTIAL_ID,
variable: 'KUBECONFIG')
]) {
sh 'envsubst < server-gateway/deploy/deploy.yml | kubectl apply -f -'
}
}
}
}
然后回到界面
点击创建凭证
demo-kubeconfig
上边操作,会在 凭证中 创建 一个类型为 kubeconfig
欢迎来撩 : 汇总all