Cloud Platform

Using the Cloud Platform Pipelines client

The Cloud Platform Pipelines client gives you access to a set of commands you can run to start, manage, and troubleshoot your continuous delivery pipeline jobs from the command line.

Note

  • Installing the Pipelines command-line client is optional, and not required for Pipelines to function with your application.
  • For a list of custom commands available for use in your YAML file, see Commands available in Pipelines.

Pipelines client commands

The Pipelines client provides the following commands:

CommandParameterDescription
pipelinesstartExecute a Pipelines job. Learn more.
pipelinesconfigureConfigure the client with the credentials required to authenticate with Cloud Platform.
pipelinesencryptEncrypt confidential data for use with Cloud Platform. For more information, see Encrypting keys and variables.
pipelinesgithub-connectUse a GitHub repository as the source repository, instead of your Cloud Platform repository. For more information, see Using GitHub with the Pipelines client.
pipelinesgithub-disconnectDisconnect Pipelines from a GitHub repository. For more information, see Disconnecting from GitHub.
pipelineshelpDisplay help for a command.
pipelineslistList the available commands.
pipelineslist-applicationsList the application ID and other information about all of the Cloud Platform applications that you have access to. Learn more.
pipelineslist-jobsReturn a list of jobs for a given application ID, including the start time and duration of the jobs.
pipelineslogsDisplay the logs for a given application and job.
pipelinesself-updateCheck for a newer version of the Pipelines client, and if found, update to the latest version.
pipelinesset-application-idSet the default application ID, for cases where you are not using a Cloud Platform repository as a remote. Learn more.
pipelinesshow-connectionVerify the connection used to execute Pipelines jobs.
pipelinesstatusDisplay the status of a Pipelines job. Learn more.
pipelinesterminate-jobTerminates a Pipelines job. Learn more.
pipelines-artifactstartStart the upload of a artifact. Be sure to enter the artifact’s custom name as a second parameter; otherwise, Cloud Platform will expect a branch_name@commit_hash artifact name structure. (Used only with Node.js applications.)
pipelines-artifactuploadUpload the artifact and provide notifications regarding its status. (Used only with Node.js applications.)
pipelines-artifactfailNotify with the failure status. (Used only with Node.js applications.)
pipelines-deploy Deploy a completed build to a Platform CD environment. Execute only after the build event. Learn more.
pipelines-sync-dbs Synchronizes databases from an existing environment to a Cloud Platform CD environment after executing pipelines-deploy. Learn more.

Help and troubleshooting

Each of these commands is documented in the Pipelines client help. To find the documentation for a command from the client, enter a command similar to the following:

pipelines help [command]

where [command] is the name of the command for which you want to obtain help.

If a command fails, re-running the command with the -x flag will enable debugging output, which may help you identify the cause of the error.

Using the start command

Using Pipelines with Node.js applications

For information about using the pipelines-artifact command to access Pipelines in your Node.js applications, see Getting started with Node.js applications and environments.

The command that does most of the work in the Pipelines client is the start command, which has the following syntax:

pipelines start

Use the start command with a build definition file to build your application. The start command accepts the following parameters:

ParameterDescription
--application-idThe Cloud Platform application ID 
See Application IDs for more information
--format, -fThe output format—either``text`` (default) or json
--vcs-pathThe Git branch or tag that contains the build definition file for executing the build job
--deploy-vcs-pathThe Git branch or tag to which the build artifact should be written. By default, this value is pipelines-build-[BRANCHNAME]
--source-vcs-uriThe URI of a Git repository from which the source will be cloned. If present, the specified URI will be used instead of the Cloud Platform code repository
--source-key-pathThe path to an SSH private key file used to access an external code repository
--environment-variable, -DSpecify one or more environment variables for this job, which are set for the duration of the job and can supplement or override variables set in the build definition file 
For example: pipelines start -D [variable name 1]=[value] -D [another variable name]=[value]
--keep-process-aliveKeeps the container process active for up to 60 minutes for debugging purposes
--tailTail your complete build logs
--retriesNumber of retries (default: 50)
--delayNumber of seconds to wait between retries (default: 1)
--help, -hDisplay information about the start command’s parameters
--quiet, -qDo not output any message
--version, -VDisplay this application version
--ansiForce ANSI output
--no-ansiDisable ANSI output
--no-interaction, -nDo not provide any interactive questions
--verbose, -v|vv|vvvUse this to output more verbose messages, which can help with debugging (1 for normal output, 2 for more verbose output and 3 for debug)

Application IDs

Some Pipelines client commands require an application ID, which corresponds to the Cloud Platform application or website that you want to build against. The pipelines start command determines the application ID itself when you run it from within a Platform Git repository clone. To run the start command from outside of a Cloud Platform Git repository clone, use the --application-id argument. To find the application ID, run the following command:

pipelines list-applications

The response will include the application ID for each of your applications. If you have many applications, you can run list-applications through grep to filter for the name of the application you are looking for:

pipelines list-applications|grep my_app

You can also find the application ID in the Cloud Platform interface. Sign in at cloud.acquia.com, and then click your subscription. The application ID is in the URL, which appears similar to the following:

https://cloud.acquia.com/app/develop/applications/12cc63dd-57db-4d50-6bc5-4b60d2198d14

In this example, 12cc63dd-57db-4d50-6bc5-4b60d2198d14 is the application ID.

Viewing job status

You can view the output of a Pipelines job using the status command. If a build job does not complete as expected, the status output will include descriptions of any errors. For example, you may get errors if your build definition file is malformed (contains missing elements or elements that cannot be parsed) or if it includes secure elements that cannot be decrypted. For more information, see FAQs and troubleshooting.

The status command displays the results of the most recent build job. You can optionally specify a different job, using the --job-id option. You can find the job ID in the output of the start command, or by running the list-jobs command.

If you are using the pipelines_metadata element in your build definition file to set tracking variables for any purpose, adding the --format=json option to the status command will return the keys you set and their values.

Did not find what you were looking for?

If this content did not answer your questions, try searching or contacting our support team for further assistance.

Acquia Help

Filter by product:

Cloud Platform common questions