cdp

Cloud Deploy

Dev ToolsGCP
General

General information about the service.

Description

Cloud Deploy is a managed continuous delivery service for GKE, Cloud Run, and Anthos. It automates delivery pipelines with promotion, approval, and rollback across environments.

Service ID

clouddeploy.googleapis.com

Resource Pattern

projects/{project}/locations/{location}/deliveryPipelines/{pipeline}

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

cdp-{workload}-{env}

Length

4-63

Valid Characters

Lowercase letters, numbers, hyphens

Scope

regional

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "google_clouddeploy_delivery_pipeline" "main" {
2 location = var.region
3 name = "cdp-${var.workload}-${var.environment}"
4 serial_pipeline {
5 stages {
6 target_id = "dev"
7 }
8 stages {
9 target_id = "staging"
10 }
11 stages {
12 target_id = "prod"
13 }
14 }
15}
Utilities

Utilities to support app deployment or configuration.