Skip to content

Latest commit

History

History
161 lines (120 loc) 路 7.2 KB

development-pipeline.html.md

File metadata and controls

161 lines (120 loc) 路 7.2 KB
owner_slack title parent layout section type last_reviewed_on review_in
#govuk-developers
The development and deployment pipeline
/manual.html
manual_layout
Deployment
learn
2020-06-10
6 months

When responding to a security incident, you should make any code changes in private, so that you don't accidentally disclose the vulnerability. To do this, follow the instructions for making a repo private.

Our development and deployment pipeline looks like this:

  1. Open a Pull Request (PR)
  2. Wait for Continuous Integration to pass
  3. Review your own changes
  4. Get someone to review your Pull Request
  5. Check if there is a deploy freeze
  6. Merge your own Pull Request
  7. Deploy through each of the environments

Wait for Continuous Integration to pass

When a Pull Request (PR) is opened, it often triggers an automated job, which typically lints the code and runs the tests.

Increasingly we're using GitHub Actions to perform these checks, but historically we've run these jobs on our CI infrastructure. Some applications also trigger a run of the end-to-end tests.

Review your own changes

As well as double-checking your code and commits, you may refer to the following:

Heroku App Review

Sometimes you may need to demo a running version of your change. All frontend applications and some publishing apps have Heroku Review Apps enabled, with a link near the bottom of each PR.

Branch Deploy Review

Sometimes you may need to deploy your change in Integration in order to test it works on real infrastructure. Go to the Deploy_App job in Jenkins and click 'Build with Parameters':

  • TARGET_APPLICATION - the name of the repository you want to deploy
  • DEPLOY_TASK - usually 'deploy' is most appropriate
  • TAG - put the name of your branch
  • Typically you can leave the checkboxes as they are

Get someone to review your Pull Request

The GDS Way has guidelines on how to review code.

Only when the tests pass and the code has been approved the Pull Request can be merged, since we've configured GitHub to prevent merges otherwise.

Check if there is a deploy freeze

In exceptional circumstances, we may wish to block or freeze deployments for a short period of time. This should be done by checking "Freeze deployments?" and adding an explanatory note to the application in the Release app.

Checking "Freeze deployments?" will turn off all automatic deployments for the application. You can still deploy urgent changes manually if necessary.

When a deploy freeze is in effect, you should avoid merging any PRs. This is because your changes may block other, urgent changes related to the deploy freeze. Your changes will also remain undeployed for a long time.

People don't always check the Release app before merging their PRs. If you need to freeze deployments for an application, you should also make people aware using other channels.

Merge your own Pull Request

We've got guidelines on merging of Pull Requests.

Some applications have restrictions on who can merge PRs. If you are unable to merge your own PR, you should ask someone else to merge (and deploy) it for you.

Code that is merged to master is tested again on CI. This is because the master branch may have changed since the tests last ran on the PR. If the tests on master pass, Jenkins pushes a release_123 git tag to GitHub.

WARNING: some applications have Continuous Deployment enabled, which means the deployment process is fully automated. You should do any manual testing with a temporary, branch deployment before you merge.

Deployment

Teams are responsible for deploying their own work. We believe that regular releases minimise the risk of major problems and improve recovery time. The 2nd line team is responsible for providing access to deploy software for teams who can't deploy it themselves.

Continuous Deployment

  • Check the notes in the Release app to see if Continuous Deployment is enabled.
  • If so, after merging, you should check the Release app to see if the deployment succeeds.
  • If the latest release is not on Production within about 15 minutes, something went wrong:
    • Refer to the Continuous Deployment Demo slides for details of the deployment process so you can pinpoint where in the pipeline it failed.
    • You can manually deploy your change if the automation fails e.g. due to a flakey Smokey test.

Manual Deployment

Wait for the release to deploy to Integration

When a new release is created, CI sends a message to Integration Deploy Jenkins to deploy the tag and run Smokey. You should verify your changes work in Integration before deploying downstream:

  • Check the results of the smoke tests.
  • Look for any Icinga alerts related to your application.

Our apps should always be in a state where master is deployable. You should raise a PR to revert your changes if they cause a problem and you're unable to resolve that problem straight away.

Manually deploy to Staging, then Production

Deployments to these environments are manual and require production access. Go to the Release application and find the application you want to deploy, then select the release tag you want to deploy. Follow these rules:

  • Deployments should generally take place between 9.30am and 5pm (4pm on Fridays), the core hours when most people are in the office.
  • If there's other people's code to deploy, ask them whether they're okay for the changes to go out.
  • Announce in #govuk-2ndline if you anticipate your release causing any issues. Stay around for a while just in case something goes wrong.
  • Check the Release app for a deploy note for the application, to see if there are any special instructions or reasons not to deploy. Individual app deploy freezes are usually announced here.

After a deployment: