FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects

Add detached pipeline and deployment workflow templates

Closed Dave Hart requested to merge 5-detached-pipelines-and-deploy into master
8 unresolved threads

Adds a detached pipeline workflow template which runs the CI flow for both merge requests and branches without merge requests. An additional deployment template is added to implement the default webapp deployment flow.

The detached pipeline template in this MR is a copy of gitlab-ci/auto-devops-for-detached-pipelines.yml in MR uis/devops/uga/smi!221, so see that MR for a test pipeline based on the detached pipeline workflow template.

The deployment template in this MR is basically a copy of the SMI deploy CI config file with the webapp URLs converted to variables, and some optimisation of the rules.

Closes #5 (closed)

Closes #6 (closed)

Edited by Dave Hart

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
5 # configurations. It pulls in the UIS detached pipeline workflow template
6 # (which also pulls in the Auto-DevOps template). To use this template,
7 # make sure it's the first template to be "include"-d.
8 #
9 # include:
10 # - project: 'uis/devops/continuous-delivery/ci-templates'
11 # file: '/auto-devops/deploy.yml'
12 #
13 # Speed up deployment jobs by disabling Auto-DevOps jobs that are not needed
14 # in the deployment project, and all non-deployment jobs when actually
15 # deploying (that is, when DEPLOY_ENABLED is defined to indicate the deployment
16 # target).
17 #
18 # The webapp URL for each deployment target must be specified by defining the
19 # variables WEBAPP_URL_DEVELOPMENT, WEBAPP_URL_STAGING and
20 # WEBAPP_URL_PRODUCTION.
  • assigned to @amc203

  • 15 # deploying (that is, when DEPLOY_ENABLED is defined to indicate the deployment
    16 # target).
    17 #
    18 # The webapp URL for each deployment target must be specified by defining the
    19 # variables WEBAPP_URL_DEVELOPMENT, WEBAPP_URL_STAGING and
    20 # WEBAPP_URL_PRODUCTION.
    21 #
    22 # This template will need updating as Auto-DevOps updates.
    23
    24 include:
    25 - project: 'uis/devops/continuous-delivery/ci-templates'
    26 file: '/auto-devops/detached-pipelines.yml'
    27
    28 variables:
    29 # Disable Auto-DevOps jobs that we don't need in the deployment project
    30 DEPENDENCY_SCANNING_DISABLED: "any-value"
    • We need to start versioning our CI templates to avoid having the same problems we have with tox-tests.yml which we can't update because it will break some pipelines. I think for this we should follow the same solution proposed in #7

  • 16 # target).
    17 #
    18 # The webapp URL for each deployment target must be specified by defining the
    19 # variables WEBAPP_URL_DEVELOPMENT, WEBAPP_URL_STAGING and
    20 # WEBAPP_URL_PRODUCTION.
    21 #
    22 # This template will need updating as Auto-DevOps updates.
    23
    24 include:
    25 - project: 'uis/devops/continuous-delivery/ci-templates'
    26 file: '/auto-devops/detached-pipelines.yml'
    27
    28 variables:
    29 # Disable Auto-DevOps jobs that we don't need in the deployment project
    30 DEPENDENCY_SCANNING_DISABLED: "any-value"
    31 DAST_DISABLED: "any-value"
  • 17 #
    18 # The webapp URL for each deployment target must be specified by defining the
    19 # variables WEBAPP_URL_DEVELOPMENT, WEBAPP_URL_STAGING and
    20 # WEBAPP_URL_PRODUCTION.
    21 #
    22 # This template will need updating as Auto-DevOps updates.
    23
    24 include:
    25 - project: 'uis/devops/continuous-delivery/ci-templates'
    26 file: '/auto-devops/detached-pipelines.yml'
    27
    28 variables:
    29 # Disable Auto-DevOps jobs that we don't need in the deployment project
    30 DEPENDENCY_SCANNING_DISABLED: "any-value"
    31 DAST_DISABLED: "any-value"
    32 SAST_DISABLED: "any-value"
  • 19 # variables WEBAPP_URL_DEVELOPMENT, WEBAPP_URL_STAGING and
    20 # WEBAPP_URL_PRODUCTION.
    21 #
    22 # This template will need updating as Auto-DevOps updates.
    23
    24 include:
    25 - project: 'uis/devops/continuous-delivery/ci-templates'
    26 file: '/auto-devops/detached-pipelines.yml'
    27
    28 variables:
    29 # Disable Auto-DevOps jobs that we don't need in the deployment project
    30 DEPENDENCY_SCANNING_DISABLED: "any-value"
    31 DAST_DISABLED: "any-value"
    32 SAST_DISABLED: "any-value"
    33
    34 .default-no-deploy: &default-no-deploy
    • I think having all these exceptions is showing that probably we are not doing it properly to make it work with AutoDevOps. I believe this is because we are executing CD jobs in the Infrastructure as code (IAC) repository. IAC still requires Gitlab CI pipelines as our infrastructure is code, so it needs testing, SAST, etc.

      If we look at this CI template there is nothing in there is nothing in here that uses any code of the IAC repo. When deploying, it does not even uses the build step, or any terraform code.

      The only thing that we use from the repo are the secrets. I wonder then if we are architecting our repos wrong and we need:

      • WebApp repo. Webapp code. Normal AutoDevOps but with review apps. Maybe review apps deployment should used the CD repo defined below?
      • Infra as code repo. Terraform code for the infrastructure. Normal AutoDevOps for checking dependencies, secrets, test, etc. Deployment happens only once (or rarely when the infra definition changes). No need for auto-deployment of infra.
      • CD repo. Will only contain gitlab-ci.yml file as code. That file will only import this template. Deployment secrets will only be stored as CI env vars in this repo. Will have a button to deploy to production, after a a staging deployment has happened DAST and E2E tests have been executed against staging (probably calling the webapp repo which will contain the e2e test code).
    • Please register or sign in to reply
  • 44 <<: *only-merge-requests-branches-and-tags
    45 container_scanning:
    46 <<: *only-merge-requests-branches-and-tags
    47 dast:
    48 <<: *only-merge-requests-branches-and-tags
    49 license_scanning:
    50 <<: *only-merge-requests-branches-and-tags
    51 # TODO: Add `secret_detection` when upgrading to GitLab 13.1
    52 #secret_detection:
    53 # <<: *only-merge-requests-branches-and-tags
    54 # interruptible: true
    55 test:
    56 <<: *only-merge-requests-branches-and-tags
    57 needs: ["build"]
    58
    59 # Dependency scanning
    • I think this section is too fragile and won't cope with future GitLab CI upgrades. What are we trying to achieve with this?

    • Author Maintainer

      The purpose of this section (and indeed the rest of the file) is to change our workflow. The GitLab default is the rule if: '$CI_COMMIT_TAG || $CI_COMMIT_BRANCH' (which is the "branch pipeline" workflow), whereas using if: $CI_MERGE_REQUEST_IID || $CI_COMMIT_TAG || $CI_COMMIT_BRANCH gives us a merge request + branch workflow (a variant of the "merge request pipeline" workflow).

      I don't think there's a way to change the Auto-DevOps workflow other than to change the rules for every single job. This situation might improve when this GitLab issue is implemented to permit variables to be defined based on other variables (scheduled for GitLab 13.5).

    • Please register or sign in to reply
  • Author Maintainer

    Closing without merging as detached pipelines will no longer be used. A new merge request will be created with just the deployment template (for #6 (closed)).

  • closed

  • Dave Hart changed the description

    changed the description

  • Please register or sign in to reply
    Loading