The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Run more than one CLI command

Himanshu J Zinzuwadia
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 17, 2019

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

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

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

TAGS
AUG Leaders

Atlassian Community Events