Deploy Apps in a Multi-cluster Project Using a Jenkinsfile

Prerequisites

Create a Docker Hub Access Token

  1. Log in to Docker Hub and select Account Settings from the menu in the top-right corner.

    dockerhub-settings

  2. Click Security and New Access Token.

    dockerhub-create-token

  3. Enter the token name and click Create.

    dockerhub-token-ok

  4. Click Copy and Close and remember to save the access token.

    dockerhub-token-copy

Create Credentials

You need to create credentials in KubeSphere for the access token created so that the pipeline can interact with Docker Hub for pushing images. Besides, you also need to create kubeconfig credentials for the access to the Kubernetes cluster.

  1. Log in to the web console of KubeSphere as project-regular. Go to your DevOps project and click Create in Credentials.

    create-dockerhub-id

  2. In the dialog that appears, set a Credential ID, which will be used later in the Jenkinsfile, and select Account Credentials for Type. Enter your Docker Hub account name for Username and the access token just created for Token/Password. When you finish, click OK.

    credential-docker-create

    Tip

    For more information about how to create credentials, see Credential Management.
  3. Log out of the KubeSphere web console and log back in as project-admin. Go to your DevOps project and click Create in Credentials. Select kubeconfig for Type. Note that KubeSphere automatically populates the Content field, which is the kubeconfig of the current account. Set a Credential ID and click OK.

    create-kubeconfig

    Note

    In future releases, you will be able to invite the account project-regular to your multi-cluster project and grant it the necessary role to create the kubeconfig credentials.

Create a Pipeline

With the above credentials ready, you can use the account project-regular to create a pipeline with an example Jenkinsfile as below.

  1. To create a pipeline, click Create on the Pipelines page.

    create-pipeline

  2. Set a name in the pop-up window and click Next directly.

    set-pipeline-name

  3. In this tutorial, you can use default values for all the fields. In Advanced Settings, click Create directly.

    create-pipeline-2

Edit the Jenkinsfile

  1. In the pipeline list, click this pipeline to go to its detail page. Click Edit Jenkinsfile to define a Jenkinsfile and your pipeline runs based on it.

    edit-jenkinsfile

  2. Copy and paste all the content below to the pop-up window as an example Jenkinsfile for your pipeline. You must replace the value of DOCKERHUB_USERNAME, DOCKERHUB_CREDENTIAL, KUBECONFIG_CREDENTIAL_ID, MULTI_CLUSTER_PROJECT_NAME, and MEMBER_CLUSTER_NAME with yours. When you finish, click OK.

    pipeline {
      agent {
        node {
          label 'maven'
        }
       
      }
         
      environment {
        REGISTRY = 'docker.io'
        // Docker Hub username
        DOCKERHUB_USERNAME = 'Your Docker Hub username'
        APP_NAME = 'devops-go-sample'
        // ‘dockerhub-go’ is the Docker Hub credentials ID you created on the KubeSphere console
        DOCKERHUB_CREDENTIAL = credentials('dockerhub-go')
        // the kubeconfig credentials ID you created on the KubeSphere console
        KUBECONFIG_CREDENTIAL_ID = 'dockerhub-go-kubeconfig'
        // mutli-cluster project name under your own workspace
        MULTI_CLUSTER_PROJECT_NAME = 'demo-multi-cluster'
        // the name of the Member Cluster where you want to deploy your app
        // in this tutorial, the apps are deployed on Host Cluster and only one Member Cluster
        // for more Member Clusters, please edit manifest/multi-cluster-deploy.yaml
        MEMBER_CLUSTER_NAME = 'Your Member Cluster name'
      }  
         
      stages {
        stage('docker login') {
          steps {
            container('maven') {
              sh 'echo $DOCKERHUB_CREDENTIAL_PSW  | docker login -u $DOCKERHUB_CREDENTIAL_USR --password-stdin'
            }
       
          }
        }
           
        stage('build & push') {
          steps {
            container('maven') {
              sh 'git clone https://github.com/yuswift/devops-go-sample.git'
              sh 'cd devops-go-sample && docker build -t $REGISTRY/$DOCKERHUB_USERNAME/$APP_NAME .'
              sh 'docker push $REGISTRY/$DOCKERHUB_USERNAME/$APP_NAME'
            }
          }
        }
           
        stage('deploy app to multi cluster') {
          steps {
            container('maven') {
              script {
                withCredentials([
                  kubeconfigFile(
                    credentialsId: 'dockerhub-go-kubeconfig',
                    variable: 'KUBECONFIG')
                  ]) {
                  sh 'envsubst < devops-go-sample/manifest/multi-cluster-deploy.yaml | kubectl apply -f -'
                  }
                }
              }
            }
          }
        }
      }
    

    Note

    If your pipeline runs successfully, images will be pushed to Docker Hub. If you are using Harbor, you cannot pass the parameter to docker login -u via the Jenkins credential with environment variables. This is because every Harbor robot account username contains a $ character, which will be converted to $$ by Jenkins when used by environment variables. Learn more.

Run the Pipeline

After you save the Jenkinsfile, click Run. If everything goes well, you will see the Deployment workload in your multi-cluster project.

multi-cluster-ok


Thanks for the feedback. If you have a specific question about how to use KubeSphere, ask it on Slack. Open an issue in the GitHub repo if you want to report a problem or suggest an improvement.