Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Esta página descreve como conferir todos os pipelines de entrega em um projeto.
É possível conferir uma lista de todos os pipelines de entrega do Cloud Deploy para
todos os seus projetos. É possível listá-los na linha de comando e conferir a
lista no console do Google Cloud .
Conferir uma lista de pipelines de entrega
Console
No Google Cloud console, navegue até a página Pipelines de entrega do Cloud Deploy para conferir uma lista dos seus pipelines de entrega
disponíveis.
Conforme mostrado nessa saída, o comando retorna os detalhes de um
pipeline. Observe os dois stagess e os dois Targets correspondentes.
Também é possível ver os detalhes da versão, incluindo
detalhes de lançamento e a origem de renderização. E você pode comparar artefatos renderizados,
incluindo manifestos e configuração do Skaffold.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Difícil de entender","hardToUnderstand","thumb-down"],["Informações incorretas ou exemplo de código","incorrectInformationOrSampleCode","thumb-down"],["Não contém as informações/amostras de que eu preciso","missingTheInformationSamplesINeed","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-09-03 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)"]]