Monitor CI Providers Deployments
Cette page n'est pas encore disponible en français, sa traduction est en cours.
Si vous avez des questions ou des retours sur notre projet de traduction actuel,
n'hésitez pas à nous contacter.
CD Visibility is not available in the selected site () at this time.
CD Visibility for CI providers deployments is in private beta. To request access, complete the form.
Request AccessOverview
Deployments can be performed in your continuous integration (CI) pipelines. Typically, these pipelines have a deployment step that is executed after the source code is tested and the image is built.
If you are executing deployments using a CI provider, you can monitor your deployments with Deployment Visibility. Ensure the following requirements are met:
- You are using Pipeline Visibility to monitor your CI pipelines.
- Your CI provider supports the Custom tags and measures at runtime feature, which allows you to add user-defined text and numerical tags to pipelines and jobs in Pipeline Visibility.
- You are executing deployments in a CI job (or a related level in your CI provider). The concept of a CI job may vary depending on your provider. For more information about how Datadog defines a CI job, see the Terminology section.
Setup
To set up CD Visibility, use the datadog-ci deployment mark
command inside the CI job that is performing the deployment.
Two environment variables are required:
DD_API_KEY
: Point to your Datadog API key.DD_BETA_COMMANDS_ENABLED
: Set to 1.
Optionally, you can set DD_SITE
environment variable to a specific Datadog site. Your site is
.
You can enrich the deployment event that is generated by the datadog-ci deployment mark
command using the following parameters:
Parameter | Description |
---|
--env | The environment to which this deployment is performed. For example, prod . |
--service | The name of the service being deployed. For example, transaction-service . This option requires datadog-ci version 2.31.1 or later |
--revision | The revision or version that is being deployed. For example, 1.0.0 or v123-456 . |
--is-rollback | Specifies that the deployment is a rollback. |
--tags | An array of key-value pairs in the key:value format. These tags are added to the deployment event shown in Datadog. |
Use --no-fail
(default: false
) to prevent the deployment command from failing if there are issues submitting the data.
If you are using GitHub Actions as your CI provider, see the section below for additional considerations.
Once you have added the command to a CI job, the Deployments page and the Deployment Executions Explorer populates with data after pipelines are executed.
For more information, see Search and Manage Deployments and the CD Visibility Explorer documentation.
Examples
This set of commands specifies that the CI job executes a deployment to the prod
environment with version 1.0.0
:
export DD_BETA_COMMANDS_ENABLED=1
export DD_API_KEY="<YOUR_API_KEY>"
export DD_SITE=
datadog-ci deployment mark --env prod --revision 1.0.0
This set of commands specifies that the CI job performs a rollback deployment to the prod
environment:
export DD_BETA_COMMANDS_ENABLED=1
export DD_API_KEY="<YOUR_API_KEY>"
export DD_SITE=
datadog-ci deployment mark --env prod --is-rollback
This set of commands specifies that the CI job executes a deployment to the prod
environment and adds the team:backend
and reason:scheduled
tags to the deployment event:
export DD_BETA_COMMANDS_ENABLED=1
export DD_API_KEY="<YOUR_API_KEY>"
export DD_SITE=
datadog-ci deployment mark --env prod --tags team:backend --tags reason:scheduled
Mark GitHub Actions jobs as deployments
To mark GitHub jobs as deployments, datadog-ci CLI
version 2.29.0
or higher is required.
If the job name does not match the entry defined in the workflow configuration file (the GitHub job ID),
the DD_GITHUB_JOB_NAME
environment variable needs to be exposed, pointing to the job name. For example:
If the job name is changed using the name property:
jobs:
deploy:
name: My deployment job name
env:
DD_GITHUB_JOB_NAME: My deployment job name
steps:
- run: datadog-ci deployment mark ...
If the matrix strategy is used, several job names are generated by GitHub by adding the matrix values at the end of the job name,
within parenthesis. The DD_GITHUB_JOB_NAME
environment variable should then be conditional on the matrix values:
jobs:
deployment:
strategy:
matrix:
env: [dev, staging]
env:
DD_GITHUB_JOB_NAME: deployment (${{ matrix.env }})
steps:
- run: datadog-ci deployment mark ...
Further reading
Documentation, liens et articles supplémentaires utiles: