debian-mirror-gitlab/doc/topics/autodevops/stages.md

650 lines
28 KiB
Markdown
Raw Normal View History

2020-04-22 19:07:51 +05:30
# Stages of Auto DevOps
2020-05-24 23:13:21 +05:30
The following sections describe the stages of [Auto DevOps](index.md).
Read them carefully to understand how each one works.
2020-04-22 19:07:51 +05:30
## Auto Build
Auto Build creates a build of the application using an existing `Dockerfile` or
2020-05-24 23:13:21 +05:30
Heroku buildpacks. The resulting Docker image is pushed to the
[Container Registry](../../user/packages/container_registry/index.md), and tagged
with the commit SHA or tag.
2020-04-22 19:07:51 +05:30
### Auto Build using a Dockerfile
2020-05-24 23:13:21 +05:30
If a project's repository contains a `Dockerfile` at its root, Auto Build uses
2020-04-22 19:07:51 +05:30
`docker build` to create a Docker image.
2020-05-24 23:13:21 +05:30
If you're also using Auto Review Apps and Auto Deploy, and you choose to provide
your own `Dockerfile`, you must either:
- Expose your application to port `5000`, as the
[default Helm chart](https://gitlab.com/gitlab-org/charts/auto-deploy-app)
assumes this port is available.
- Override the default values by
[customizing the Auto Deploy Helm chart](customize.md#custom-helm-chart).
2020-04-22 19:07:51 +05:30
### Auto Build using Heroku buildpacks
2020-05-24 23:13:21 +05:30
Auto Build builds an application using a project's `Dockerfile` if present. If no
`Dockerfile` is present, it uses [Herokuish](https://github.com/gliderlabs/herokuish)
2020-04-22 19:07:51 +05:30
and [Heroku buildpacks](https://devcenter.heroku.com/articles/buildpacks)
2020-05-24 23:13:21 +05:30
to detect and build the application into a Docker image.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
Each buildpack requires your project's repository to contain certain files for
Auto Build to build your application successfully. For example, your application's
root directory must contain the appropriate file for your application's
language:
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
- For Python projects, a `Pipfile` or `requirements.txt` file.
- For Ruby projects, a `Gemfile` or `Gemfile.lock` file.
2020-04-22 19:07:51 +05:30
For the requirements of other languages and frameworks, read the
2020-05-24 23:13:21 +05:30
[Heroku buildpacks documentation](https://devcenter.heroku.com/articles/buildpacks#officially-supported-buildpacks).
2020-04-22 19:07:51 +05:30
TIP: **Tip:**
If Auto Build fails despite the project meeting the buildpack requirements, set
2020-05-24 23:13:21 +05:30
a project variable `TRACE=true` to enable verbose logging, which may help you
2020-04-22 19:07:51 +05:30
troubleshoot.
### Auto Build using Cloud Native Buildpacks (beta)
> Introduced in [GitLab 12.10](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/28165).
Auto Build supports building your application using [Cloud Native Buildpacks](https://buildpacks.io)
through the [`pack` command](https://github.com/buildpacks/pack). To use Cloud Native Buildpacks,
2020-06-23 00:09:42 +05:30
set the CI variable `AUTO_DEVOPS_BUILD_IMAGE_CNB_ENABLED` to a non-empty
value. The default builder is `heroku/buildpacks:18` but a different builder
can be selected using the CI variable `AUTO_DEVOPS_BUILD_IMAGE_CNB_BUILDER`.
2020-04-22 19:07:51 +05:30
Cloud Native Buildpacks (CNBs) are an evolution of Heroku buildpacks, and
will eventually supersede Herokuish-based builds within Auto DevOps. For more
information, see [this issue](https://gitlab.com/gitlab-org/gitlab/-/issues/212692).
Builds using Cloud Native Buildpacks support the same options as builds using
Heroku buildpacks, with the following caveats:
- The buildpack must be a Cloud Native Buildpack. A Heroku buildpack can be
converted to a Cloud Native Buildpack using Heroku's
[`cnb-shim`](https://github.com/heroku/cnb-shim).
- `BUILDPACK_URL` must be in a form
[supported by `pack`](https://buildpacks.io/docs/app-developer-guide/specific-buildpacks/).
- The `/bin/herokuish` command is not present in the resulting image, and prefixing
commands with `/bin/herokuish procfile exec` is no longer required (nor possible).
2020-07-28 23:09:34 +05:30
NOTE: **Note:**
Auto Test still uses Herokuish, as test suite detection is not
2020-04-22 19:07:51 +05:30
yet part of the Cloud Native Buildpack specification. For more information, see
[this issue](https://gitlab.com/gitlab-org/gitlab/-/issues/212689).
## Auto Test
2020-05-24 23:13:21 +05:30
Auto Test runs the appropriate tests for your application using
[Herokuish](https://github.com/gliderlabs/herokuish) and
[Heroku buildpacks](https://devcenter.heroku.com/articles/buildpacks) by analyzing
2020-04-22 19:07:51 +05:30
your project to detect the language and framework. Several languages and
frameworks are detected automatically, but if your language is not detected,
2020-05-24 23:13:21 +05:30
you may be able to create a [custom buildpack](customize.md#custom-buildpacks).
2020-06-23 00:09:42 +05:30
Check the [currently supported languages](#currently-supported-languages).
2020-04-22 19:07:51 +05:30
Auto Test uses tests you already have in your application. If there are no
tests, it's up to you to add them.
2020-06-23 00:09:42 +05:30
### Currently supported languages
Note that not all buildpacks support Auto Test yet, as it's a relatively new
enhancement. All of Heroku's
[officially supported languages](https://devcenter.heroku.com/articles/heroku-ci#supported-languages)
support Auto Test. The languages supported by Heroku's Herokuish buildpacks all
support Auto Test, but notably the multi-buildpack does not.
The supported buildpacks are:
```plaintext
- heroku-buildpack-multi
- heroku-buildpack-ruby
- heroku-buildpack-nodejs
- heroku-buildpack-clojure
- heroku-buildpack-python
- heroku-buildpack-java
- heroku-buildpack-gradle
- heroku-buildpack-scala
- heroku-buildpack-play
- heroku-buildpack-php
- heroku-buildpack-go
- buildpack-nginx
```
If your application needs a buildpack that is not in the above list, you
might want to use a [custom buildpack](customize.md#custom-buildpacks).
2020-04-22 19:07:51 +05:30
## Auto Code Quality **(STARTER)**
Auto Code Quality uses the
[Code Quality image](https://gitlab.com/gitlab-org/ci-cd/codequality) to run
2020-05-24 23:13:21 +05:30
static analysis and other code checks on the current code. After creating the
report, it's uploaded as an artifact which you can later download and check
out. The merge request widget also displays any
[differences between the source and target branches](../../user/project/merge_requests/code_quality.md).
2020-04-22 19:07:51 +05:30
## Auto SAST **(ULTIMATE)**
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 10.3.
Static Application Security Testing (SAST) uses the
[SAST Docker image](https://gitlab.com/gitlab-org/security-products/sast) to run static
2020-05-24 23:13:21 +05:30
analysis on the current code, and checks for potential security issues. The
Auto SAST stage will be skipped on licenses other than
[Ultimate](https://about.gitlab.com/pricing/), and requires
[GitLab Runner](https://docs.gitlab.com/runner/) 11.5 or above.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
After creating the report, it's uploaded as an artifact which you can later
download and check out. The merge request widget also displays any security
warnings.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To learn more about [how SAST works](../../user/application_security/sast/index.md),
see the documentation.
2020-04-22 19:07:51 +05:30
2020-06-23 00:09:42 +05:30
## Auto Secret Detection **(ULTIMATE)**
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 13.1.
Secret Detection uses the
[Secret Detection Docker image](https://gitlab.com/gitlab-org/security-products/analyzers/secrets) to run Secret Detection on the current code, and checks for leaked secrets. The
Auto Secret Detection stage runs only on the
[Ultimate](https://about.gitlab.com/pricing/) tier, and requires
[GitLab Runner](https://docs.gitlab.com/runner/) 11.5 or above.
After creating the report, it's uploaded as an artifact which you can later
download and evaluate. The merge request widget also displays any security
warnings.
To learn more, see [Secret Detection](../../user/application_security/secret_detection/index.md).
2020-04-22 19:07:51 +05:30
## Auto Dependency Scanning **(ULTIMATE)**
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 10.7.
Dependency Scanning uses the
[Dependency Scanning Docker image](https://gitlab.com/gitlab-org/security-products/dependency-scanning)
2020-05-24 23:13:21 +05:30
to run analysis on the project dependencies and check for potential security issues.
The Auto Dependency Scanning stage is skipped on licenses other than
[Ultimate](https://about.gitlab.com/pricing/) and requires
[GitLab Runner](https://docs.gitlab.com/runner/) 11.5 or above.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
After creating the report, it's uploaded as an artifact which you can later download and
check out. The merge request widget displays any security warnings detected,
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To learn more about
[Dependency Scanning](../../user/application_security/dependency_scanning/index.md),
see the documentation.
2020-04-22 19:07:51 +05:30
## Auto License Compliance **(ULTIMATE)**
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 11.0.
License Compliance uses the
[License Compliance Docker image](https://gitlab.com/gitlab-org/security-products/license-management)
to search the project dependencies for their license. The Auto License Compliance stage
2020-05-24 23:13:21 +05:30
is skipped on licenses other than [Ultimate](https://about.gitlab.com/pricing/).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
After creating the report, it's uploaded as an artifact which you can later download and
check out. The merge request displays any detected licenses.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To learn more about
[License Compliance](../../user/compliance/license_compliance/index.md), see the
documentation.
2020-04-22 19:07:51 +05:30
## Auto Container Scanning **(ULTIMATE)**
> Introduced in GitLab 10.4.
2020-05-24 23:13:21 +05:30
Vulnerability Static Analysis for containers uses [Clair](https://github.com/quay/clair)
to check for potential security issues on Docker images. The Auto Container Scanning
stage is skipped on licenses other than [Ultimate](https://about.gitlab.com/pricing/).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
After creating the report, it's uploaded as an artifact which you can later download and
check out. The merge request displays any detected security issues.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To learn more about
[Container Scanning](../../user/application_security/container_scanning/index.md),
see the documentation.
2020-04-22 19:07:51 +05:30
## Auto Review Apps
2020-05-24 23:13:21 +05:30
This is an optional step, since many projects don't have a Kubernetes cluster
2020-06-23 00:09:42 +05:30
available. If the [requirements](requirements.md) are not met, the job is
2020-05-24 23:13:21 +05:30
silently skipped.
2020-04-22 19:07:51 +05:30
[Review Apps](../../ci/review_apps/index.md) are temporary application environments based on the
branch's code so developers, designers, QA, product managers, and other
reviewers can actually see and interact with code changes as part of the review
process. Auto Review Apps create a Review App for each branch.
2020-05-24 23:13:21 +05:30
Auto Review Apps deploy your application to your Kubernetes cluster only. If no cluster
is available, no deployment occurs.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
The Review App has a unique URL based on a combination of the project ID, the branch
or tag name, a unique number, and the Auto DevOps base domain, such as
`13083-review-project-branch-123456.example.com`. The merge request widget displays
a link to the Review App for easy discovery. When the branch or tag is deleted,
such as after merging a merge request, the Review App is also deleted.
2020-04-22 19:07:51 +05:30
Review apps are deployed using the
[auto-deploy-app](https://gitlab.com/gitlab-org/charts/auto-deploy-app) chart with
2020-05-24 23:13:21 +05:30
Helm, which you can [customize](customize.md#custom-helm-chart). The application deploys
into the [Kubernetes namespace](../../user/project/clusters/index.md#deployment-variables)
2020-04-22 19:07:51 +05:30
for the environment.
2020-05-24 23:13:21 +05:30
Since GitLab 11.4, [local Tiller](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/22036) is
2020-04-22 19:07:51 +05:30
used. Previous versions of GitLab had a Tiller installed in the project
namespace.
CAUTION: **Caution:**
Your apps should *not* be manipulated outside of Helm (using Kubernetes directly).
This can cause confusion with Helm not detecting the change and subsequent
deploys with Auto DevOps can undo your changes. Also, if you change something
and want to undo it by deploying again, Helm may not detect that anything changed
2020-05-24 23:13:21 +05:30
in the first place, and thus not realize that it needs to re-apply the old configuration.
2020-04-22 19:07:51 +05:30
## Auto DAST **(ULTIMATE)**
> Introduced in [GitLab Ultimate](https://about.gitlab.com/pricing/) 10.4.
2020-05-24 23:13:21 +05:30
Dynamic Application Security Testing (DAST) uses the popular open source tool
[OWASP ZAProxy](https://github.com/zaproxy/zaproxy) to analyze the current code
and check for potential security issues. The Auto DAST stage is skipped on
licenses other than [Ultimate](https://about.gitlab.com/pricing/).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
- On your default branch, DAST scans an application deployed specifically for that purpose
unless you [override the target branch](#overriding-the-dast-target).
The app is deleted after DAST has run.
- On feature branches, DAST scans the [review app](#auto-review-apps).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
After the DAST scan completes, any security warnings are displayed
on the [Security Dashboard](../../user/application_security/security_dashboard/index.md)
and the merge request widget.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To learn more about
[Dynamic Application Security Testing](../../user/application_security/dast/index.md),
see the documentation.
2020-04-22 19:07:51 +05:30
### Overriding the DAST target
To use a custom target instead of the auto-deployed review apps,
set a `DAST_WEBSITE` environment variable to the URL for DAST to scan.
2020-05-24 23:13:21 +05:30
DANGER: **Danger:**
If [DAST Full Scan](../../user/application_security/dast/index.md#full-scan) is
enabled, GitLab strongly advises **not**
2020-04-22 19:07:51 +05:30
to set `DAST_WEBSITE` to any staging or production environment. DAST Full Scan
2020-05-24 23:13:21 +05:30
actively attacks the target, which can take down your application and lead to
2020-04-22 19:07:51 +05:30
data loss or corruption.
### Disabling Auto DAST
2020-05-24 23:13:21 +05:30
You can disable DAST:
2020-04-22 19:07:51 +05:30
- On all branches by setting the `DAST_DISABLED` environment variable to `"true"`.
2020-05-24 23:13:21 +05:30
- Only on the default branch by setting the `DAST_DISABLED_FOR_DEFAULT_BRANCH`
environment variable to `"true"`.
- Only on feature branches by setting `REVIEW_DISABLED` environment variable to
`"true"`. This also disables the Review App.
2020-04-22 19:07:51 +05:30
## Auto Browser Performance Testing **(PREMIUM)**
> Introduced in [GitLab Premium](https://about.gitlab.com/pricing/) 10.4.
2020-07-28 23:09:34 +05:30
Auto [Browser Performance Testing](../../user/project/merge_requests/browser_performance_testing.md)
measures the browser performance of a web page with the
2020-05-24 23:13:21 +05:30
[Sitespeed.io container](https://hub.docker.com/r/sitespeedio/sitespeed.io/),
creates a JSON report including the overall performance score for each page, and
uploads the report as an artifact. By default, it tests the root page of your Review and
Production environments. If you want to test additional URLs, add the paths to a
file named `.gitlab-urls.txt` in the root directory, one file per line. For example:
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
```plaintext
2020-04-22 19:07:51 +05:30
/
/features
/direction
```
2020-07-28 23:09:34 +05:30
Any browser performance differences between the source and target branches are also
2020-04-22 19:07:51 +05:30
[shown in the merge request widget](../../user/project/merge_requests/browser_performance_testing.md).
2020-07-28 23:09:34 +05:30
## Auto Load Performance Testing **(PREMIUM)**
> Introduced in [GitLab Premium](https://about.gitlab.com/pricing/) 13.2.
Auto [Load Performance Testing](../../user/project/merge_requests/load_performance_testing.md)
measures the server performance of an application with the
[k6 container](https://hub.docker.com/r/loadimpact/k6/),
creates a JSON report including several key result metrics, and
uploads the report as an artifact.
Some initial setup is required. A [k6](https://k6.io/) test needs to be
written that's tailored to your specific application. The test also needs to be
configured so it can pick up the environment's dynamic URL via an environment variable.
Any load performance test result differences between the source and target branches are also
[shown in the merge request widget](../../user/project/merge_requests/load_performance_testing.md).
2020-04-22 19:07:51 +05:30
## Auto Deploy
2020-05-24 23:13:21 +05:30
This is an optional step, since many projects don't have a Kubernetes cluster
2020-06-23 00:09:42 +05:30
available. If the [requirements](requirements.md) are not met, the job is skipped.
2020-04-22 19:07:51 +05:30
After a branch or merge request is merged into the project's default branch (usually
`master`), Auto Deploy deploys the application to a `production` environment in
the Kubernetes cluster, with a namespace based on the project name and unique
2020-05-24 23:13:21 +05:30
project ID, such as `project-4321`.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
Auto Deploy does not include deployments to staging or canary environments by
default, but the
[Auto DevOps template](https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/Auto-DevOps.gitlab-ci.yml)
contains job definitions for these tasks if you want to enable them.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
You can use [environment variables](customize.md#environment-variables) to automatically
scale your pod replicas, and to apply custom arguments to the Auto DevOps `helm upgrade`
commands. This is an easy way to
[customize the Auto Deploy Helm chart](customize.md#custom-helm-chart).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
Helm uses the [auto-deploy-app](https://gitlab.com/gitlab-org/charts/auto-deploy-app)
chart to deploy the application into the
[Kubernetes namespace](../../user/project/clusters/index.md#deployment-variables)
2020-04-22 19:07:51 +05:30
for the environment.
2020-05-24 23:13:21 +05:30
Since GitLab 11.4, a
[local Tiller](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/22036) is
2020-04-22 19:07:51 +05:30
used. Previous versions of GitLab had a Tiller installed in the project
namespace.
CAUTION: **Caution:**
Your apps should *not* be manipulated outside of Helm (using Kubernetes directly).
This can cause confusion with Helm not detecting the change and subsequent
deploys with Auto DevOps can undo your changes. Also, if you change something
and want to undo it by deploying again, Helm may not detect that anything changed
2020-05-24 23:13:21 +05:30
in the first place, and thus not realize that it needs to re-apply the old configuration.
### GitLab deploy tokens
2020-04-22 19:07:51 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/19507) in GitLab 11.0.
2020-05-24 23:13:21 +05:30
[GitLab Deploy Tokens](../../user/project/deploy_tokens/index.md#gitlab-deploy-token)
are created for internal and private projects when Auto DevOps is enabled, and the
Auto DevOps settings are saved. You can use a Deploy Token for permanent access to
the registry. After you manually revoke the GitLab Deploy Token, it won't be
automatically created.
If the GitLab Deploy Token can't be found, `CI_REGISTRY_PASSWORD` is
used.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
NOTE: **Note:**
`CI_REGISTRY_PASSWORD` is only valid during deployment. Kubernetes will be able
to successfully pull the container image during deployment, but if the image must
be pulled again, such as after pod eviction, Kubernetes will fail to do so
as it attempts to fetch the image using `CI_REGISTRY_PASSWORD`.
2020-04-22 19:07:51 +05:30
### Kubernetes 1.16+
> - [Introduced](https://gitlab.com/gitlab-org/charts/auto-deploy-app/-/merge_requests/51) in GitLab 12.8.
> - Support for deploying a PostgreSQL version that supports Kubernetes 1.16+ was [introduced](https://gitlab.com/gitlab-org/cluster-integration/auto-deploy-image/-/merge_requests/49) in GitLab 12.9.
2020-05-24 23:13:21 +05:30
> - Supported out of the box for new deployments as of GitLab 13.0.
2020-04-22 19:07:51 +05:30
2020-07-28 23:09:34 +05:30
CAUTION: **Deprecation:**
2020-05-24 23:13:21 +05:30
The default value for the `deploymentApiVersion` setting was changed from
2020-06-23 00:09:42 +05:30
`extensions/v1beta` to `apps/v1` in [GitLab 13.0](https://gitlab.com/gitlab-org/charts/auto-deploy-app/-/issues/47).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
In Kubernetes 1.16 and later, a number of
[APIs were removed](https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16/),
2020-04-22 19:07:51 +05:30
including support for `Deployment` in the `extensions/v1beta1` version.
2020-05-24 23:13:21 +05:30
To use Auto Deploy on a Kubernetes 1.16+ cluster:
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
1. If you are deploying your application for the first time on GitLab 13.0 or
newer, no configuration should be required.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
1. On GitLab 12.10 or older, set the following in the [`.gitlab/auto-deploy-values.yaml` file](customize.md#customize-values-for-helm-chart):
```yaml
2020-04-22 19:07:51 +05:30
deploymentApiVersion: apps/v1
```
2020-05-24 23:13:21 +05:30
1. If you have an in-cluster PostgreSQL database installed with
`AUTO_DEVOPS_POSTGRES_CHANNEL` set to `1`, follow the [guide to upgrade
PostgreSQL](upgrading_postgresql.md).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
1. If you are deploying your application for the first time and are using
GitLab 12.9 or 12.10, set `AUTO_DEVOPS_POSTGRES_CHANNEL` to `2`.
2020-04-22 19:07:51 +05:30
2020-07-28 23:09:34 +05:30
DANGER: **Danger:**
On GitLab 12.9 and 12.10, opting into
2020-05-24 23:13:21 +05:30
`AUTO_DEVOPS_POSTGRES_CHANNEL` version `2` deletes the version `1` PostgreSQL
database. Follow the [guide to upgrading PostgreSQL](upgrading_postgresql.md)
to back up and restore your database before opting into version `2` (On
GitLab 13.0, an additional variable is required to trigger the database
deletion).
2020-04-22 19:07:51 +05:30
### Migrations
> [Introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/21955) in GitLab 11.4
2020-05-24 23:13:21 +05:30
You can configure database initialization and migrations for PostgreSQL to run
2020-04-22 19:07:51 +05:30
within the application pod by setting the project variables `DB_INITIALIZE` and
`DB_MIGRATE` respectively.
2020-05-24 23:13:21 +05:30
If present, `DB_INITIALIZE` is run as a shell command within an application pod
as a Helm post-install hook. As some applications can't run without a successful
database initialization step, GitLab deploys the first release without the
application deployment, and only the database initialization step. After the database
initialization completes, GitLab deploys a second release with the application
deployment as normal.
2020-04-22 19:07:51 +05:30
Note that a post-install hook means that if any deploy succeeds,
2020-05-24 23:13:21 +05:30
`DB_INITIALIZE` won't be processed thereafter.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
If present, `DB_MIGRATE` is run as a shell command within an application pod as
2020-04-22 19:07:51 +05:30
a Helm pre-upgrade hook.
For example, in a Rails application in an image built with
[Herokuish](https://github.com/gliderlabs/herokuish):
- `DB_INITIALIZE` can be set to `RAILS_ENV=production /bin/herokuish procfile exec bin/rails db:setup`
- `DB_MIGRATE` can be set to `RAILS_ENV=production /bin/herokuish procfile exec bin/rails db:migrate`
2020-05-24 23:13:21 +05:30
Unless your repository contains a `Dockerfile`, your image is built with
Herokuish, and you must prefix commands run in these images with
`/bin/herokuish procfile exec` to replicate the environment where your application
will run.
2020-04-22 19:07:51 +05:30
2020-07-28 23:09:34 +05:30
### Upgrade auto-deploy-app Chart
You can upgrade auto-deploy-app chart by following the [upgrade guide](upgrading_chart.md).
2020-04-22 19:07:51 +05:30
### Workers
2020-05-24 23:13:21 +05:30
Some web applications must run extra deployments for "worker processes". For
example, Rails applications commonly use separate worker processes
2020-04-22 19:07:51 +05:30
to run background tasks like sending emails.
The [default Helm chart](https://gitlab.com/gitlab-org/charts/auto-deploy-app)
2020-05-24 23:13:21 +05:30
used in Auto Deploy
[has support for running worker processes](https://gitlab.com/gitlab-org/charts/auto-deploy-app/-/merge_requests/9).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To run a worker, you must ensure the worker can respond to
2020-04-22 19:07:51 +05:30
the standard health checks, which expect a successful HTTP response on port
2020-05-24 23:13:21 +05:30
`5000`. For [Sidekiq](https://github.com/mperham/sidekiq), you can use
the [`sidekiq_alive` gem](https://rubygems.org/gems/sidekiq_alive).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To work with Sidekiq, you must also ensure your deployments have
access to a Redis instance. Auto DevOps won't deploy this instance for you, so
you must:
2020-04-22 19:07:51 +05:30
- Maintain your own Redis instance.
2020-05-24 23:13:21 +05:30
- Set a CI variable `K8S_SECRET_REDIS_URL`, which is the URL of this instance,
to ensure it's passed into your deployments.
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
After configuring your worker to respond to health checks, run a Sidekiq
2020-04-22 19:07:51 +05:30
worker for your Rails application. You can enable workers by setting the
following in the [`.gitlab/auto-deploy-values.yaml` file](customize.md#customize-values-for-helm-chart):
2020-05-24 23:13:21 +05:30
```yaml
2020-04-22 19:07:51 +05:30
workers:
sidekiq:
replicaCount: 1
command:
2020-07-28 23:09:34 +05:30
- /bin/herokuish
- procfile
- exec
- sidekiq
2020-04-22 19:07:51 +05:30
preStopCommand:
2020-07-28 23:09:34 +05:30
- /bin/herokuish
- procfile
- exec
- sidekiqctl
- quiet
2020-04-22 19:07:51 +05:30
terminationGracePeriodSeconds: 60
```
### Network Policy
> [Introduced](https://gitlab.com/gitlab-org/charts/auto-deploy-app/-/merge_requests/30) in GitLab 12.7.
By default, all Kubernetes pods are
[non-isolated](https://kubernetes.io/docs/concepts/services-networking/network-policies/#isolated-and-non-isolated-pods),
2020-05-24 23:13:21 +05:30
and accept traffic to and from any source. You can use
2020-04-22 19:07:51 +05:30
[NetworkPolicy](https://kubernetes.io/docs/concepts/services-networking/network-policies/)
to restrict connections to and from selected pods, namespaces, and the Internet.
NOTE: **Note:**
You must use a Kubernetes network plugin that implements support for
`NetworkPolicy`. The default network plugin for Kubernetes (`kubenet`)
[does not implement](https://kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/network-plugins/#kubenet)
support for it. The [Cilium](https://cilium.io/) network plugin can be
installed as a [cluster application](../../user/clusters/applications.md#install-cilium-using-gitlab-cicd)
to enable support for network policies.
You can enable deployment of a network policy by setting the following
in the `.gitlab/auto-deploy-values.yaml` file:
```yaml
networkPolicy:
enabled: true
```
2020-05-24 23:13:21 +05:30
The default policy deployed by the Auto Deploy pipeline allows
traffic within a local namespace, and from the `gitlab-managed-apps`
namespace. All other inbound connections are blocked. Outbound
2020-04-22 19:07:51 +05:30
traffic (for example, to the Internet) is not affected by the default policy.
2020-06-23 00:09:42 +05:30
You can also provide a custom [policy specification](https://kubernetes.io/docs/concepts/services-networking/network-policies/)
2020-05-24 23:13:21 +05:30
in the `.gitlab/auto-deploy-values.yaml` file, for example:
2020-04-22 19:07:51 +05:30
```yaml
networkPolicy:
enabled: true
spec:
podSelector:
matchLabels:
app.gitlab.com/env: staging
ingress:
2020-07-28 23:09:34 +05:30
- from:
- podSelector:
matchLabels: {}
- namespaceSelector:
matchLabels:
app.gitlab.com/managed_by: gitlab
2020-04-22 19:07:51 +05:30
```
2020-05-24 23:13:21 +05:30
For more information on installing Network Policies, see
2020-04-22 19:07:51 +05:30
[Install Cilium using GitLab CI/CD](../../user/clusters/applications.md#install-cilium-using-gitlab-cicd).
### Web Application Firewall (ModSecurity) customization
> [Introduced](https://gitlab.com/gitlab-org/charts/auto-deploy-app/-/merge_requests/44) in GitLab 12.8.
2020-05-24 23:13:21 +05:30
Customization on an [Ingress](https://kubernetes.io/docs/concepts/services-networking/ingress/)
or on a deployment base is available for clusters with
[ModSecurity installed](../../user/clusters/applications.md#web-application-firewall-modsecurity).
2020-04-22 19:07:51 +05:30
2020-05-24 23:13:21 +05:30
To enable ModSecurity with Auto Deploy, you must create a `.gitlab/auto-deploy-values.yaml`
file in your project with the following attributes.
2020-04-22 19:07:51 +05:30
|Attribute | Description | Default |
-----------|-------------|---------|
|`enabled` | Enables custom configuration for ModSecurity, defaulting to the [Core Rule Set](https://coreruleset.org/) | `false` |
|`secRuleEngine` | Configures the [rules engine](https://github.com/SpiderLabs/ModSecurity/wiki/Reference-Manual-(v2.x)#secruleengine) | `DetectionOnly` |
|`secRules` | Creates one or more additional [rule](https://github.com/SpiderLabs/ModSecurity/wiki/Reference-Manual-(v2.x)#SecRule) | `nil` |
In the following `auto-deploy-values.yaml` example, some custom settings
are enabled for ModSecurity. Those include setting its engine to
process rules instead of only logging them, while adding two specific
2020-05-24 23:13:21 +05:30
header-based rules:
2020-04-22 19:07:51 +05:30
```yaml
ingress:
modSecurity:
enabled: true
secRuleEngine: "On"
secRules:
- variable: "REQUEST_HEADERS:User-Agent"
operator: "printer"
action: "log,deny,id:'2010',status:403,msg:'printer is an invalid agent'"
- variable: "REQUEST_HEADERS:Content-Type"
operator: "text/plain"
action: "log,deny,id:'2011',status:403,msg:'Text is not supported as content type'"
```
### Running commands in the container
Applications built with [Auto Build](#auto-build) using Herokuish, the default
2020-05-24 23:13:21 +05:30
unless your repository contains [a custom Dockerfile](#auto-build-using-a-dockerfile),
may require commands to be wrapped as follows:
2020-04-22 19:07:51 +05:30
```shell
/bin/herokuish procfile exec $COMMAND
```
2020-05-24 23:13:21 +05:30
Some of the reasons you may need to wrap commands:
2020-04-22 19:07:51 +05:30
- Attaching using `kubectl exec`.
2020-05-24 23:13:21 +05:30
- Using GitLab's [Web Terminal](../../ci/environments/index.md#web-terminals).
2020-04-22 19:07:51 +05:30
For example, to start a Rails console from the application root directory, run:
```shell
/bin/herokuish procfile exec bin/rails c
```
## Auto Monitoring
2020-05-24 23:13:21 +05:30
After your application deploys, Auto Monitoring helps you monitor
2020-04-22 19:07:51 +05:30
your application's server and response metrics right out of the box. Auto
Monitoring uses [Prometheus](../../user/project/integrations/prometheus.md) to
2020-05-24 23:13:21 +05:30
retrieve system metrics, such as CPU and memory usage, directly from
2020-04-22 19:07:51 +05:30
[Kubernetes](../../user/project/integrations/prometheus_library/kubernetes.md),
2020-05-24 23:13:21 +05:30
and response metrics, such as HTTP error rates, latency, and throughput, from the
2020-04-22 19:07:51 +05:30
[NGINX server](../../user/project/integrations/prometheus_library/nginx_ingress.md).
The metrics include:
- **Response Metrics:** latency, throughput, error rate
- **System Metrics:** CPU utilization, memory utilization
GitLab provides some initial alerts for you after you install Prometheus:
- Ingress status code `500` > 0.1%
- NGINX status code `500` > 0.1%
2020-05-24 23:13:21 +05:30
To use Auto Monitoring:
2020-04-22 19:07:51 +05:30
2020-06-23 00:09:42 +05:30
1. [Install and configure the Auto DevOps requirements](requirements.md).
2020-05-24 23:13:21 +05:30
1. [Enable Auto DevOps](index.md#enablingdisabling-auto-devops), if you haven't done already.
1. Navigate to your project's **{rocket}** **CI/CD > Pipelines** and click **Run Pipeline**.
1. After the pipeline finishes successfully, open the
[monitoring dashboard for a deployed environment](../../ci/environments/index.md#monitoring-environments)
2020-04-22 19:07:51 +05:30
to view the metrics of your deployed application. To view the metrics of the
2020-05-24 23:13:21 +05:30
whole Kubernetes cluster, navigate to **{cloud-gear}** **Operations > Metrics**.
2020-04-22 19:07:51 +05:30
![Auto Metrics](img/auto_monitoring.png)