Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Pre-Requisites :
The instructions mentioned here are to set up a private Jenkins lab for the CI/CD process.          1

1. Terraform must be installed as a pre-requisites in the Jenkins containers. Execute the following steps to install terraform.                           wget

Code Block
languagebash
themeEmacs
wget https://releases.hashicorp.com/terraform/0.14.9/terraform_0.14.9_linux_amd64.zip

...


unzip terraform_0.14.9_linux_amd64.zip

...


sudo mv terraform /usr/local/bin/

     

          2.  Ensure the Installation by executing the following command. 
                         terraform

Code Block
languagebash
themeEmacs
terraform --help


     
          3. Jenkins Image used: docker pull Jenkins. Bring up Jenkins with default installations. 

Setup :      
A Jenkins freestyle job with some additional plugins is to be set up for the CI/CD process. The freestyle job waits for events from the Gerrit-Event trigger plugin and then initializes the terraform process. The terraform process validates the template and provisions the infrastructure through terraform commands. Once the terraform is done provisioning the cluster, a post-build task is set up to push the build log to the nexus server. The logs are from terraform init, plan and apply commands which is also stored in a tf.log file. The following are the steps to set up the jenkins job. 

  1. Add Gerrit credentials under Manage Jenkins > Manage credentials > Add new credentials.  Enter your Gerrit user name and password. 
  2. Install Gerrit trigger plugin & post-build task plugin from > Manage Jenkins > Manage plugins > Available plugins.
    To Configure the Gerrit - trigger plugin, Follow the instructions below : 
                a) 
      1. Create a folder ~/.ssh inside Jenkins container
                b) 
      1. Generate ssh key using ssh-keygen -m PEM 
                c) 
      1. Register the id_rsa.pud key in the Gerrit account under settings > ssh keys > add new keys
                d)
      1. Once the key is registered with the Gerrit account, test the connectivity with the following command. 

        
      1. Code Block
        languagebash
        themeEmacs
        ssh -p 29418 <UserName>@<HostName>
                                      
    1. Create a new freestyle job and configure the job with your Gerrit account in the Source Code Management section. Enter the repository URL and select the credentials that were added in step 1. 
    2. Add the following shell script under the 'Build' section.  These instructions are executed in order while building the job. The script mainly exports TF_VAR for terraform purposes,  installs LFtools, and initializes the terraform init, plan and apply processes.  

      Code Block
      languagebash
      themeEmacs
      export TF_VAR_aws_region="us-east-2"
      export TF_VAR_aws_ami="ami-026141f3d5c6d2d0c"
      export TF_VAR_aws_instance="t4g.medium"
      export TF_VAR_vpc_id=""
      export TF_VAR_aws_subnet_id=""
      export TF_VAR_access_key=""
      export TF_VAR_secret_key=""
      export TF_LOG="TRACE"
      export TF_LOG_PATH="./tf.log"
      sudo apt-get update

      
      sudo apt-get -y install python3-pip
      curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
      export CRYPTOGRAPHY_DONT_BUILD_RUST=1
      apt-get install build-essential libssl-dev libffi-dev
      pip3 install lftools
      cd /var/jenkins_home/workspace/gerrit-akraino/src/foundation/microk8s
      terraform init
      terraform plan
      terraform apply -auto-
      approve 
      approve  


    3. Add the following to the post-build task. The post-build script is for pushing the current build's log to the nexus server. Configure the SILO, JENKINS_HOSTNAME, JOB_NAME etc accordingly.  

      Code Block
      languagebash
      themeEmacs
      echo "post build tasks"
      cat /var/jenkins_home/workspace/gerrit-akraino/src/foundation/microk8s/tf.log
      echo $BUILD_NUMBER
      NEXUS_URL=https://nexus.akraino.org
      SILO=gopaddle
      JENKINS_HOSTNAME=<hostName/IP:PORT>
      JOB_NAME=gerrit-akraino
      BUILD_URL="${JENKINS_HOSTNAME}/job/${JOB_NAME}/${BUILD_NUMBER}/"
      NEXUS_PATH="${SILO}/job/${JOB_NAME}/${BUILD_NUMBER}"
      lftools deploy logs $NEXUS_URL $NEXUS_PATH $BUILD_URL
      echo "Logs uploaded to $NEXUS_URL/content/sites/logs/$NEXUS_PATH"
       
         


    4.  Once Once configuring the job is done, build it. It might take some time to complete. To check if the source code is pulled from gerrit, go to /var/jenkins_home/workspace/<jobName>/src/foundation/microk8s.

    ...