Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Run more than one CLI command

Himanshu J Zinzuwadia May 17, 2019

How can I run more than one CLI command on Azure CLI pipeline.  Example shown includes only one command.

1 answer

0 votes
Raul Gomis
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
May 21, 2019

Hey @Himanshu J Zinzuwadia ,

 

There are two options for this:

- Run the pipe multiple times with different commands.

For example:

 - pipe: microsoft/azure-cli-run:1.0.2
    variables:
      AZURE_APP_ID: $AZURE_APP_ID
      AZURE_PASSWORD: $AZURE_PASSWORD
      AZURE_TENANT_ID: $AZURE_TENANT_ID
      CLI_COMMAND: 'az account show'
  - pipe: microsoft/azure-cli-run:1.0.2
    variables:
      AZURE_APP_ID: $AZURE_APP_ID
      AZURE_PASSWORD: $AZURE_PASSWORD
      AZURE_TENANT_ID: $AZURE_TENANT_ID
      CLI_COMMAND: 'az aks create --resource-group myResourceGroup --name myAKSCluster --node-count 1 --enable-addons monitoring --generate-ssh-keys'
      DEBUG: 'true'

 

- If you have many commands, you could workaround it by Creating a bash script in your repository with the commands you want to execute and executing the script in the CLI_COMMAND.

For example:

 - pipe: microsoft/azure-cli-run:1.0.2
variables:
AZURE_APP_ID: $AZURE_APP_ID
AZURE_PASSWORD: $AZURE_PASSWORD
AZURE_TENANT_ID: $AZURE_TENANT_ID
CLI_COMMAND: "bash commands.sh"

Hope that works for you!

 

Regards,

Raul

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events