Stay organized with collections
Save and categorize content based on your preferences.
This page describes how to view all your delivery pipelines in a project.
You can see a list of all your Cloud Deploy delivery pipelines for
all your projects. You can list them from the command line, and you can view the
list in Google Cloud console.
View a list of delivery pipelines
Console
In the Google Cloud console, navigate to the Cloud Deploy
Delivery pipelines page to view a list of your available delivery
pipelines.
As shown in this output, the command returns the details for the one
pipeline. Note the two stages and the two corresponding Targets.
You can also view release details, including
rollout details and rendering source. And you can diff rendered artifacts,
including manifests and Skaffold config.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-08-25 UTC."],[[["\u003cp\u003eYou can view all Cloud Deploy delivery pipelines for your projects through the Google Cloud console or by using the command line.\u003c/p\u003e\n"],["\u003cp\u003eThe Google Cloud console's Delivery pipelines page displays a list of available delivery pipelines, but does not show pipelines that are configured but not registered with the Cloud Deploy service.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003egcloud deploy delivery-pipelines list\u003c/code\u003e command returns a list of all delivery pipelines within the current project, including details like creation time, description, and targets.\u003c/p\u003e\n"],["\u003cp\u003eDetailed information about a specific delivery pipeline, including metadata and target progression, can be viewed in the Google Cloud console or by using the \u003ccode\u003egcloud deploy delivery-pipelines describe\u003c/code\u003e command.\u003c/p\u003e\n"],["\u003cp\u003eThe output of \u003ccode\u003egcloud deploy delivery-pipelines describe\u003c/code\u003e includes stages and corresponding target information for a delivery pipeline.\u003c/p\u003e\n"]]],[],null,["# View delivery pipelines\n\nThis page describes how to view all your delivery pipelines in a project.\n\nYou can see a list of all your Cloud Deploy delivery pipelines for\nall your projects. You can list them from the command line, and you can view the\nlist in Google Cloud console.\n\nView a list of delivery pipelines\n---------------------------------\n\n### Console\n\nIn the Google Cloud console, navigate to the Cloud Deploy\n**Delivery pipelines** page to view a list of your available delivery\npipelines.\n\n[Open the Delivery pipelines page](https://console.cloud.google.com/deploy/delivery-pipelines)\n\nThe list of delivery pipelines is shown in Google Cloud console.\n\nDelivery pipelines that have been configured but not [registered with the\nCloud Deploy service](/deploy/docs/create-pipeline-targets#register_the_delivery_pipeline_and_targets)\nare not shown.\n\n### gcloud\n\nThe following command returns a list of all delivery pipelines in the\ncurrent project. \n\n gcloud deploy delivery-pipelines list\n\nYou should see an output similar to the following: \n\n $ gcloud deploy delivery-pipelines list --region=$REGION\n ---\n createTime: '2021-05-03T16:03:11.687046682Z'\n description: main application pipeline\n etag: a9721c6cf665fcc7\n name: projects/try-cd-dev6/locations/us-central1/deliveryPipelines/my-demo-app-1\n serialPipeline:\n stages:\n - targetId: qsdev\n - targetId: qsprod\n uid: f0b8148d5ddf4071964803e278acb1da\n updateTime: '2021-05-03T16:03:12.780948171Z'\n\nAs shown in this output, the command returns only one pipeline, with two\ntargets.\n\nView delivery-pipeline details\n------------------------------\n\nFor an existing delivery pipeline, you can view pipeline details, including\npipeline metadata and the progression of targets. \n\n### Console\n\n1. In the Google Cloud console, navigate to the Cloud Deploy\n **Delivery pipelines** page to view of list of your available delivery\n pipelines.\n\n [Open the Delivery pipelines page](https://console.cloud.google.com/deploy/delivery-pipelines)\n\n The list of delivery pipelines is shown in Google Cloud console.\n\n Delivery pipelines that have been configured but not [registered with the\n Cloud Deploy service](/deploy/docs/create-pipeline-targets#register_the_delivery_pipeline_and_targets)\n are not shown.\n2. Click the **Name** of the delivery pipeline whose details you want to\n view.\n\nGoogle Cloud console shows a visualization of the delivery pipeline, as well\nas pipeline metadata and status:\n\nYou can click the **Targets** tab to see details of the targets that this\ndelivery pipeline uses:\n\n### gcloud\n\nThe following command returns details of the specified delivery pipelines: \n\n gcloud deploy delivery-pipelines describe \u003cpipeline-name\u003e --region=\u003cregion\u003e\n\nYou should see an output similar to the following: \n\n $ gcloud deploy delivery-pipelines describe my-demo-app-1 --region=us-central1\n Delivery Pipeline:\n createTime: '2021-05-03T16:03:11.687046682Z'\n description: main application pipeline\n etag: a9721c6cf665fcc7\n name: projects/try-cd-dev6/locations/us-central1/deliveryPipelines/my-demo-app-1\n serialPipeline:\n stages:\n - targetId: qsdev\n - targetId: qsprod\n uid: f0b8148d5ddf4071964803e278acb1da\n updateTime: '2021-05-03T16:03:12.780948171Z'\n Targets:\n - Target: qsdev\n - Target: qsprod\n\nAs shown in this output, the command returns the details for the one\npipeline. Note the two `stages` and the two corresponding `Target`s.\n\nYou can also [view release details](/deploy/docs/view-release), including\nrollout details and rendering source. And you can diff rendered artifacts,\nincluding manifests and Skaffold config.\n\nWhat's next\n-----------\n\n- Find out how to [update a delivery pipeline](/deploy/docs/update-pipeline)\n that's already in use.\n\n- Learn how to [suspend a delivery pipeline](/deploy/docs/suspend-pipeline).\n\n- Find out how to [delete a delivery pipeline](/deploy/docs/delete-pipeline).\n\n- Learn how to [use service notifications](/deploy/docs/subscribe-deploy-notifications)"]]