GitLab Advanced CI/CD - Hands-On Lab: Review Apps

This Hands-On Guide walks you through the process of creating review apps

The purpose of this lab is to create a review app from a Node.js application. A review app is a temporary application environment automatically created for each merge request in a project. It allows developers and stakeholders to preview and interact with proposed changes in a live, isolated environment before merging them into the main branch.

Estimate time to complete: 15 minutes

Objectives

  • Create a review app from the Node.js application

Task A. Creating a Web App

For this task, we will be creating a web application to run in our review environment.

  1. Navigate to your project repository.

  2. Select your .gitlab-ci.yml file.

  3. Select Edit > Edit in pipeline editor.

  4. In your install deps job, add an install for express:

    install deps &cachedef:
      stage: deps
      script:
        - npm install jest-junit
        - npm install express
      cache:
        key: $CI_COMMIT_REF_SLUG
        paths:
          - node_modules
    
  5. Select Commit changes.

  6. Navigate back to your project repository.

  7. Select your index.js file.

  8. Select Edit > Edit single file.

  9. At the bottom of the file, add the following code:

    const express = require('express')
    const app = express()
    const port = 4001
    
    app.get('/', (req, res) => {
      res.send('Hello World!')
    })
    
    app.listen(port, () => {
      console.log(`Example app listening on port ${port}`)
    })
    

After these changes, the index.js file should look like this:

  //A binary search will search a sorted list in log(n) time
  module.exports.binarySearch = function binarySearch(arr, val) { 
      let start = 0; 
      let end = arr.length - 1; 
      while (start <= end) { 
          let mid = Math.floor((start + end) / 2); 
          if (arr[mid] === val) { 
              return mid; 
          } 
          if (val < arr[mid]) { 
              end = mid - 1; 
          } else { 
              start = mid + 1; 
          } 
      } 
      return -1; 
  }

  module.exports.linearSearch = function linearSearch(arr, val){
    let index = 0;
    let found = false;
    while (!found && index < arr.length){
      if (arr[index] == val){
          found = true;
      }else{
        index += 1;
      }
      }

      if (!found){
          index = -1;
      }

    return index;
  }

  const express = require('express')
  const app = express()
  const port = 4001

  app.get('/', (req, res) => {
    res.send('Hello World!')
  })

  app.listen(port, () => {
    console.log(`Example app listening on port ${port}`)
  })

Task B. Creating a Review App

  1. In the left sidebar, select Operate > Environments.

  2. Select Enable Review Apps.

  3. Copy the provided script, which will look like this:

    deploy_review:
      stage: deploy
      script:
        - echo "Add script here that deploys the code to your infrastructure"
      environment:
        name: review/$CI_COMMIT_REF_NAME
        url: https://$CI_ENVIRONMENT_SLUG.example.com
      rules:
        - if: $CI_PIPELINE_SOURCE == "merge_request_event"
    

If for any reason GitLab does not display this script when clicking Enable Review Apps, just copy the reference script above to use.

  1. Navigate back to your code repository.

  2. Select your .gitlab-ci.yml file.

  3. Select Edit > Edit in pipeline editor.

  4. Paste the copied deploy_review job at the end of the .gitlab-ci.yml file.

  5. For our example, we will alter the URL slightly to use an IP address as the URL. This variable $ip is a group level variable created when you redeemed your invitation code. To use this variable, we will also remove the HTTPS since our server only uses HTTP. Below is our finished deploy_review definition:

    deploy_review:
      stage: deploy
      script:
        - echo "Add script here that deploys the code to your infrastructure"
      environment:
        name: review/$CI_COMMIT_REF_NAME
        url: http://$ip:4001
      rules:
        - if: $CI_PIPELINE_SOURCE == "merge_request_event"
    
  6. Add the deploy stage to the .gitlab-ci.yml file.

    stages:
      - deps
      - test
      - deploy
    
  7. Now, we can deploy our changes to the Review App. In your deploy_review job, add an image of ubuntu:latest.

    deploy_review:
      stage: deploy
      image: ubuntu:latest
    
  8. Directly above the script of the deploy_review job, add the following before_script:

      before_script:
        - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client git -y )'
        - eval $(ssh-agent -s)
        - chmod 400 "$SSH_PRIVATE_KEY"
        - ssh-add "$SSH_PRIVATE_KEY"
        - mkdir -p ~/.ssh
        - chmod 700 ~/.ssh
    
  9. Finally, update the job script to match the following job definition:

      script:
        - ssh-keyscan -t rsa,ed25519 $ip >> ~/.ssh/known_hosts
        - ssh root@$ip 'mkdir -p /www'
        - ssh root@$ip 'sudo apt-get install nodejs npm -y'
        - ssh root@$ip 'cd /www/ && npm init -y'
        - ssh root@$ip 'cd /www/ && npm i express'
        - ssh root@$ip 'cd /www/ && npm i -g pm2'
        - scp index.js root@$ip:/www
        - ssh root@$ip 'pm2 start /www/index.js'
    
  10. Here is what your final job script should look like:

    deploy_review:
      stage: deploy
      image: ubuntu:latest
      before_script:
        - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client git -y )'
        - eval $(ssh-agent -s)
        - chmod 400 "$SSH_PRIVATE_KEY"
        - ssh-add "$SSH_PRIVATE_KEY"
        - mkdir -p ~/.ssh
        - chmod 700 ~/.ssh
      script:
        - ssh-keyscan -t rsa,ed25519 $ip >> ~/.ssh/known_hosts
        - ssh root@$ip 'mkdir -p /www'
        - ssh root@$ip 'sudo apt-get install nodejs npm -y'
        - ssh root@$ip 'cd /www/ && npm init -y'
        - ssh root@$ip 'cd /www/ && npm i express'
        - ssh root@$ip 'cd /www/ && npm i -g pm2'
        - scp index.js root@$ip:/www
        - ssh root@$ip 'pm2 start -f /www/index.js'
      environment:
        name: review/$CI_COMMIT_REF_NAME
        url: http://$ip:4001
      rules:
        - if: $CI_PIPELINE_SOURCE == "merge_request_event"
    
  11. Select Commit changes.

Task C. Verify the review app

To test that your review app works, let’s create a new merge request.

  1. Select Code > Branches.

  2. Select New branch.

  3. Set the branch name to test_review and select Create branch.

  4. Select index.js.

  5. Select Edit > Edit single file.

  6. Update your res.send to display any message you like. Below is an example:

    const express = require('express')
        const app = express()
        const port = 4001
    
        app.get('/', (req, res) => {
          res.send('Our app is running!')
        })
    
        app.listen(port, () => {
          console.log(`Example app listening on port ${port}`)
    })
    
  7. Select Commit changes.

  8. Select Create merge request.

  9. Leave all options as default and select Create merge request.

  10. Wait for the pipeline to complete.

  11. Select View app after the pipeline completes.

Lab Guide Complete

You have completed this lab exercise. You can view the other lab guides for this course.

Suggestions?

If you wish to make a change to the Hands-On Guide for GitLab CI/CD, please submit your changes via Merge Request!

Last modified October 10, 2024: Adding a new folder for ILT labs (0e627865)