在Jenkins中存储Kubernetes集群凭证并在声明式管道中使用

问题描述 投票:0回答:1

我正在尝试使用Helm 3和jenkins部署k8s集群。 Jenkins和k8s运行在不同的服务器上,我合并了kubeconfig文件,所有信息都放在一个配置文件./kube目录中。我想根据GIT_BRANCH值将我的应用程序部署到相关的环境和名称空间。我对以下脚本有两个问题。

1。我应该存储k8s集群凭证并在管道中使用的最佳方法是什么。我看到了一些插件,例如Kubernetes CLI,但不确定是否能满足我的要求。如果我使用此插件,应该手动将k8s文件存储到Jenkins机器中,还是该插件已经可以通过上传配置文件来处理此问题。

2。是否应该更改以下脚本中的任何内容以遵循最佳做法?

         stage('Deploy to dev'){
         script{
             steps{
                 if(env.GIT_BRANCH.contains("dev")){

                        def namespace="dev"
                        def ENV="development"

                        withCredentials([file(credentialsId: ...)]) {
                        // change context with related namespace
                        sh "kubectl config set-context $(kubectl config current-context) --namespace=${namespace}"

                        //Deploy with Helm
                        echo "Deploying"
                        sh "helm upgrade --install road-dashboard -f values.${ENV}.yaml --set tag=$TAG --namespace ${namespace}"    
                 }
             }
         }
     }

    stage('Deploy to Test'){
        script{
            steps{
                 if(env.GIT_BRANCH.contains("test")){

                        def namespace="test"
                        def ENV="test"

                        withCredentials([file(credentialsId: ...)]) {
                        // change context with related namespace
                        sh "kubectl config set-context $(kubectl config current-context) --namespace=${namespace}"


                        //Deploy with Helm
                        echo "Deploying"
                        sh "helm upgrade --install road-dashboard -f values.${ENV}.yaml --set tag=$TAG --namespace ${namespace}"
                    }
                }
            }
        }
    }

    stage ('Deploy to Production'){

        when {
            anyOf{
                environment name: 'DEPLOY_TO_PROD' , value: 'true'
            }
        }

        steps{
            script{
                DEPLOY_PROD = false
                def namespace = "production"

                withCredentials([file(credentialsId: 'kube-config', variable: 'kubecfg')]){
                    //Change context with related namespace
                    sh "kubectl config set-context $(kubectl config current-context) --namespace=${namespace}"

                    //Deploy with Helm
                    echo "Deploying to production"
                    sh "helm upgrade --install road-dashboard -f values.${ENV}.yaml --set tag=$TAG --namespace ${namespace}"
                }
            }
        }
    }
jenkins kubernetes jenkins-pipeline jenkins-plugins kubernetes-helm
1个回答
0
投票

我从未尝试过,但是从理论上讲,凭据变量可以用作环境变量。尝试使用KUBECONFIG作为变量名

withCredentials([file(credentialsId: 'secret', variable: 'KUBECONFIG')]) {

  // change context with related namespace
  sh "kubectl config set-context $(kubectl config current-context) --namespace=${namespace}"

  //Deploy with Helm
  echo "Deploying"
  sh "helm upgrade --install road-dashboard -f values.${ENV}.yaml --set tag=$TAG --namespace ${namespace}"
}
© www.soinside.com 2019 - 2024. All rights reserved.