Review Apps

For a video introduction to Review Apps, see 8.14 Webcast: Review Apps & Time Tracking Beta (EE) - GitLab Release.

Overview

Review Apps are a collaboration tool that takes the hard work out of providing an environment to showcase product changes.

Review Apps:

  • Provide an automatic live preview of changes made in a feature branch by spinning up a dynamic environment for your merge requests.
  • Allow designers and product manages to see your changes without needing to check out your branch and run your changes in a sandbox environment.
  • Are fully integrated with the GitLab DevOps LifeCycle.
  • Allow you to deploy your changes wherever you want.

Review Apps Workflow

Reviewing anything, from performance to interface changes, becomes much easier with a live environment and so Review Apps can make a large impact on your development flow.

What are Review Apps?

A Review App is a mapping of a branch with an environment. The following is an example of a merge request with an environment set dynamically.

Review App in merge request

In this example, you can see a branch was:

  • Successfully built.
  • Deployed under a dynamic environment that can be reached by clicking on the View app button.

How do Review Apps work?

The basis of Review Apps in GitLab is dynamic environments, which allow you to dynamically create a new environment for each branch.

Access to the Review App is made available as a link on the merge request relevant to the branch. Review Apps enable you to review all changes proposed by the merge request in live environment.

Use cases

Some supported use cases include the:

  • Simple case of deploying a simple static HTML website.
  • More complicated case of an application that uses a database. Deploying a branch on a temporary instance and booting up this instance with all required software and services automatically on the fly is not a trivial task. However, it is possible, especially if you use Docker or a configuration management tool like Chef, Puppet, Ansible, or Salt.

Review Apps usually make sense with web applications, but you can use them any way you'd like.

Implementing Review Apps

Implementing Review Apps depends on your:

  • Technology stack.
  • Deployment process.

Prerequisite Knowledge

To get a better understanding of Review Apps, review documentation on how environments and deployments work. Before you implement your own Review Apps:

  1. Learn about environments and their role in the development workflow.
  2. Learn about CI variables and how they can be used in your CI jobs.
  3. Explore the environment syntax as defined in .gitlab-ci.yml. This will become a primary reference.
  4. Additionally, find out about manual actions and how you can use them to deploy to critical environments like production with the push of a button.
  5. Follow the example tutorials. These will guide you through setting up infrastructure and using Review Apps.

Configuring dynamic environments

Configuring Review Apps dynamic environments depends on your technology stack and infrastructure.

For more information, see dynamic environments documentation to understand how to define and create them.

Creating and destroying Review Apps

Creating and destroying Review Apps is defined in .gitlab-ci.yml at a job level under the environment keyword.

For more information, see Introduction to environments and deployments.

Adding Review Apps to your workflow

The process of adding Review Apps in your workflow is as follows:

  1. Set up the infrastructure to host and deploy the Review Apps.
  2. Install and configure a Runner to do deployment.
  3. Set up a job in .gitlab-ci.yml that uses the predefined predefined CI environment variable ${CI_COMMIT_REF_NAME} to create dynamic environments and restrict it to run only on branches.
  4. Optionally, set a job that manually stops the Review Apps.

After adding Review Apps to your workflow, you follow the branched Git flow. That is:

  1. Push a branch and let the Runner deploy the Review App based on the script definition of the dynamic environment job.
  2. Wait for the Runner to build and deploy your web application.
  3. Click on the link that provided in the merge request related to the branch to see the changes live.

Limitations

Check the environments limitations.

Examples

The following are example projects that use Review Apps with:

See also the video Demo: Cloud Native Development with GitLab, which includes a Review Apps example.