adtk pipelines
The pipelines command group (alias: pipe) lets you list and inspect CI/CD pipeline definitions, their runs, variable groups, and deployment environments.
Shared Flags
Section titled “Shared Flags”| Flag | Short | Default | Description |
|---|---|---|---|
--project | -p | Project name (required) | |
--top | 25 | Max results to return |
List pipeline definitions in a project.
adtk pipelines list --project MyProjectID NAME FOLDER1 CI Build \2 Deploy to Staging \deployments3 Release Pipeline \deployments
3 pipelinesGet details about a specific pipeline.
adtk pipelines get <pipeline-id> --project MyProjectExample:
adtk pipe get 1 -p MyProject ID: 1 Name: CI Build Folder: \List runs for a specific pipeline.
adtk pipelines runs <pipeline-id> --project MyProject [--top 25]Example:
adtk pipe runs 1 -p MyProject --top 5ID NAME STATE RESULT CREATED100 Run 100 completed succeeded 2025-01-15 14:3099 Run 99 completed succeeded 2025-01-14 09:1598 Run 98 completed failed 2025-01-13 16:00
3 runsdefinitions
Section titled “definitions”List build definitions in a project. Outputs raw JSON.
adtk pipelines definitions --project MyProjectvar-groups
Section titled “var-groups”List variable groups in a project.
adtk pipelines var-groups --project MyProjectExample:
adtk pipe var-groups -p MyProjectID NAME DESCRIPTION1 staging-vars Variables for staging environment2 production-secrets Production secrets and keys
2 variable groupsvar-group
Section titled “var-group”Get a specific variable group by ID.
adtk pipelines var-group <id> --project MyProjectExample:
adtk pipe var-group 1 -p MyProjectenvironments
Section titled “environments”List deployment environments in a project.
adtk pipelines environments --project MyProjectExample:
adtk pipe environments -p MyProjectID NAME1 Development2 Staging3 Production
3 environments