This document describes the relationships between Google Cloud Deploy and the external systems it works with in order to deploy your applications. These systems are other Google Cloud services and third-party tools.
The high-level view
The following diagram shows the relationships between Google Cloud Deploy and the separate systems it relies on.
As shown in this diagram, Google Cloud Deploy interacts with the following systems:
Your CI system
Google Cloud Deploy supports most CI tools, as long as one output from your CI process can be a call to the Google Cloud Deploy API or CLI to create a release.
-
Google Cloud Deploy calls Cloud Build to render your manifests and to deploy to the target runtime.
-
Google Cloud Deploy uses Skaffold through Cloud Build to render and deploy your manifests, thus deploying your application.
-
Google Cloud Deploy stores rendering source and rendered manifests in a Cloud Storage bucket.
Google Cloud's operations suite and Cloud Audit Logs.
Google Cloud's operations suite collects and makes available logging data for Google Cloud Deploy.
See also Audit logging.
-
Google Cloud Deploy publishes messages to several Pub/Sub topics. You can use this service to integrate with external workflow, testing, and other related systems.
See Subscribing to Google Cloud Deploy notifications for more information.
Target runtime
Google Cloud Deploy uses
skaffold apply
, through Cloud Build, to deploy your applications to your target runtime (GKE or Anthos).
Google Cloud Deploy resources
The following diagram shows the resources that Google Cloud Deploy uses to deliver your applications, and the relationships among those resources:
As shown in this diagram, the relationships among the resources are as follows:
The delivery pipeline can yield zero or more releases and can reference one or more targets, including multi-targets and their associated child-targets.
Each release includes the pipeline instance—a "snapshot" of the delivery pipeline and targets as they were configured when the release was created.
Each release can yield zero or more rollouts, and can reference zero or more artifacts.
Each rollout includes at least one phase, representing a collection of operations (jobs) in a rollout that are logically grouped together, for example, a deploy or a deploy and verify.
Each phase includes one or more jobs, representing what is to be done on the rollout—either deploy or verify. Each job can include one or more job runs, which are instances of jobs, for example, an attempt to deploy. A job run is a child resource of the rollout.
Multi-targets, used for parallel deployment, create controller rollouts, which create child rollouts, which correspond to child targets.
Each rollout is associated with one target.
For parallel deployment , each child target is associated with one child rollout.
Each target is associated with one GKE or Anthos cluster, or other runtime destination for the application.
A target can be associated with one or more delivery pipelines.
An artifact is any output from your CI process (for example, a container image) that is deployed to a target runtime as part of a rollout.
Further, a rollout has one or more phases, and phases have one or more jobs and one or more job runs.
As shown in this diagram, a rollout includes the following:
Phases
A phase contains one or more jobs (for example deploy, or deploy and verify). Each rollout has one or more phases. A phase is a sub-message in a rollout.
Jobs
The specific operation to be performed on a rollout, for example deploy or verify. A job is a sub-message in a rollout.
JobRuns
An instance of a job, for example an attempt to verify. Each job may have zero or more JobRuns. The JobRun is a child resource of a rollout.
How they fit together to deliver your release
This section describes how Google Cloud Deploy interacts with the components listed in this document to automate the delivery of your application as a release.
Your CI system invokes a Google Cloud Deploy delivery pipeline.
Your CI process calls Google Cloud Deploy using the CLI or API to create a new release, passing the build artifacts or references to images.
For more information about integrating your CI system, see Integrating Google Cloud Deploy with other systems.
When a new release is created, Google Cloud Deploy does the following:
Stores an instance of the delivery pipeline as part of the release.
This pipeline instance remains unchanged for this release, even if the delivery pipeline configuration is changed. See Pipeline instances per release for more information.
Also, the Skaffold version is stored as a part of the release. In most cases, this will be the default Skaffold version, but because you can specify other versions, that information is stored.
Calls Cloud Build, which gets the Skaffold rendering source from Cloud Storage.
Google Cloud Deploy stores the rendering source in the default or alternate Cloud Storage bucket.
Calls
skaffold diagnose
(using the Skaffold version stored upon release creation) to generate a single effective manifest.Calls
skaffold render
to render the manifest using the provided images or build artifacts.Google Cloud Deploy substitutes image names in
spec.templates.spec.containers.image
with the full image paths (including digests or tags) provided on thegcloud deploy releases create
command or in a build artifacts file referenced by that command.Google Cloud Deploy stores the rendered manifest in the default or alternate Cloud Storage bucket.
Google Cloud Deploy performs these actions using the default or an alternate execution environment.
Automatically creates and deploys a rollout to the first target, by calling
skaffold apply
.This is only true when Google Cloud Deploy is invoked from the CLI to create a release.
The process of deploying to the first target is the same as for promotions, as described in the next step.
Calls
skaffold verify
, ifverify
istrue
for the target in the delivery pipeline config and if verification is specified in the Skaffold configuration.
When it's time to promote the release to the next target, Cloud Build retrieves the target-specific manifest from Cloud Storage. Then Cloud Build invokes
skaffold apply
to apply the rendered manifest to the specified target runtime.If the target requires approval, you can approve or reject through the CLI or using the Console.
Also, Google Cloud Deploy generates a Pub/Sub message, which you can subscribe to in order to automatically initiate an approval workflow.
Google Cloud Deploy uses the Skaffold version and the pipeline instance that are associated with this release, and performs this step in the default or custom execution environment.
This process is true not only for promotions, but also for rollbacks and for redeployments.
Throughout Google Cloud Deploy operations, the service publishes notifications to several Pub/Sub topics (for example, when a rollout requires approval).
This and other integrations are described further in Integrating Google Cloud Deploy with external systems.
Throughout Google Cloud Deploy operation, the service writes platform logs and audit logs to Google Cloud's operations suite and Cloud Audit Logs.
Through all of these steps, flow control and access to resources are restricted using Identity and Access Management.
What's next
Learn more about how to integrate Google Cloud Deploy with other systems
See important information about the Skaffold version lifecycle.
Learn about Google Cloud Deploy execution environments.
Learn how to combine Google Cloud CI/CD tools to develop and deliver software effectively to GKE.