Questions tagged [azure-yaml-pipelines]
146 questions
0
votes
1 answer
Why my multi stage full yaml azure devops pipeline breaks when moved to template?
I have a multi stage full yaml pipeline in azure devops services. The different stages consist of a build stage, a Dev stage (Deploys azure resources to an azure resource group) and a UAT stage (Deploys azure resources to a different resource…

user2503480
- 193
- 3
- 16
0
votes
2 answers
DevOps Pipeline Automation - Infrastructure and Application deployment
I am facing an implementation issues with the below scenario using Azure DevOps pipelines
Provision two resources in Azure Subscription using ARM templates
Azure Container Registry
Azure Kubernetes Services
Deploy the containerized application…

programmerP
- 43
- 2
0
votes
1 answer
Pass a variable to template in an Azure YAML pipeline
Consider the following working job from an azure yaml pipeline
- job: create_slot
dependsOn: setup
displayName: 'Create slot'
pool:
vmImage: 'windows-latest'
variables:
slotName: $[…

Jeanluca Scaljeri
- 26,343
- 56
- 205
- 333
-1
votes
1 answer
Dynamic Pipeline Variable in Azure DevOps
I have a pipeline variable called DeployPath
with bash script as a straight method I will be able to display the value of DeployPath using
echo $(DeployPath)
so if the name of the variable is dynamic is their any way i will be able to access the…

Sebastian Peter
- 119
- 1
- 12
-1
votes
1 answer
How to integrate service now with Azure YAML pipeline to create change ticket
I have integrated service now with azure release pipeline but the same need to be integrate with Azure YAML pipeline. Does service now supports YAML pipeline integration to create change ticket.

shakil ahamed
- 9
- 2
-1
votes
1 answer
Azure pipeline to build public github project, pipeline yaml stored in Azure Devops Git
I want to create a pipeline which builds and packages a public/opensource codebase from a public github repo.
I don't want to store the pipeline yaml definition github, I want this in my private Azure Devops repo.
Basically I want the pipeline…

crig
- 859
- 6
- 19
-1
votes
1 answer
how many models can be deployed in single node in azure kubernetes service?
Working on deployment of 170 ml models using ML studio and azure Kubernetes service which is referred on the below doc link…

suvedharan M
- 1
- 3
-1
votes
1 answer
YAML pipeline unable to parse input parameter with special characters to a Python task
How do I escape/handle parentheses/arbitrary inputs with special characters such as the one I have shown below so that my python code gets the proper string argument?
I have a YAML pipeline and it takes an input parameter as a string from the user,…

phnsh
- 24
- 2
- 5
-1
votes
1 answer
Azure Devops Yaml pipeline variable(eg Process.Clean) scopped to a stage
We need to run Selenium Grid on environment agent. To Start Selenium Grid we start PowerShell script StartSeleniumGrid.ps1. That powershell file starts java process which is Selenium Hub. By default after task is executed all processes started by a…

Alex K
- 135
- 1
- 12
-1
votes
1 answer
Azure yml - Search folder recursively in $(System.DefaultWorkingDirectory)
In azure.yml script, I would like to recursively search for a folder that ends with _test in $(System.DefaultWorkingDirectory)
So far, tried out
[ -d "**/$(System.DefaultWorkingDirectory)/**/?(*_test)" ]
and
[ -d…

Yamuna
- 71
- 1
- 2
- 13