Questions tagged [acr]
100 questions
0
votes
0 answers
Docker login failed in Jenkins pipeline
I have below piece of code written in Groovy language in Jenkins pipeline. I just want to do docker login but its failing.
`
pipeline {
agent any
stages {
stage('Build Agent Image') {
steps {
…

Affan Naim
- 19
- 2
- 9
0
votes
0 answers
move acr into aks from visual studio 2022
Im studying about azure kubernetes.
what i did is, in Visual Studio 2022, .net 6 Created an web api which will bring data from azure sql db, first I did make it into my local docker containers using DockerFile and DockerCompose. Its fine, it has…

user20051042
- 37
- 2
0
votes
0 answers
docker build and push pipeline tasks tagging the image with Asterisks and then not able to find them
We are trying to build and push a docker image to Azure Container Registry. If we do build and push in the same step, everything works fine. But we are trying to build once and promote to all environments from that build. So, we need to build in the…

Myla
- 7
- 3
0
votes
0 answers
Pushing a signed image to ACR from Azure Release pipeline
I'm following this documentation to push signed images to ACR from Azure pipelines.
However, this only describes the changes needed in yaml tasks. I'm using a classic release pipeline, and I'm facing some issues.
I'm trying to push the image using…

Kruti Joshi
- 384
- 3
- 16
0
votes
1 answer
ACR purge - How can i set regular expression to skip specific image which starts with v from purging
I am managing a Azure Container Registry. I have scheduled a ACR Purge task which is deleting all image tag if they are older than 7 days and exclude versioned images which are starting with v so that we can skip certain image from cleanup.
For…

Ashish Kumar
- 173
- 2
- 13
0
votes
0 answers
Photoshop: Run script on file open event from ACR / Adobe Camera RAW
I have a script that does a variety of things to the active document on file open in Photoshop (currently on v 23.x - I keep it relatively up to date so that'll change over time)
I run this from the File > Scripts > Script Events Manager: "Open…

Ned Martin
- 494
- 6
- 12
0
votes
1 answer
Certificate error when pulling docker images from Azure Container Repository
We're using Azure DevOps pipelines to build and deploy images to Azure Container Repository. All goes well, but when I try to pull the image I get this error:
certificate has expired or is not yet valid: current time 2021-12-12T09:05:46Z is before…

wmmhihaa
- 744
- 8
- 21
0
votes
0 answers
Image triggered K8 deployments in Jenkins
I have a K8 cluster set up on an on-prem server and I already have an azure build pipeline that pushes the image to an ACR. I was wondering if it was possible to trigger (or run a schedule for) Jenkins to pull the image from the ACR and do the new…

lp_nave
- 244
- 3
- 17
0
votes
1 answer
Possible to do Azure RBAC Role Assignment for ACR Repository?
I was hoping to be able to create an RBAC role assignment for specific repository in an Azure Container Registry but I can only find the resource ID/scope to create a role assignment for the entire ACR.
Is there a way to do this or find the…

Kyle N
- 75
- 1
- 8
0
votes
1 answer
How to Deploy local Docker image to Azure app services?
Created Azure app services web app without using any Docker registry integration.
I want achieve below.
1] create, tag image on my Linux machine
2] deploy local Docker image to App services web app using below
az webapp config container set --name…

Srinivas Charan Mamidi
- 301
- 1
- 13
0
votes
1 answer
I am trying to deploy my docker image from ACR to AKS. The pods are getting created properly but getting ERR_CONNECTION_TIMED_OUT through external IP
The same deployment and service yaml files are working properly when I am using a standard image from docker like nginx and set it's containerPort to default port of nginx i.e. 80 but when I am changing it's container port to 8080 then also I am…

Sushant Saurav
- 73
- 1
- 5
0
votes
1 answer
Set environment variable in Jenkins from command output
Is it possible to set the output of a command to an environment variable in Jenkins? Something like this:
environment{
...
...
registryAddress=sh(az acr list --query "[?contains(name, 'myname')].name" --output tsv --resource-group…

lo labs
- 89
- 13
0
votes
2 answers
AKS integration with ACR
trying to create ACR and integrate the same with existing AKS cluster
below is the resource block where will be doing role assignment {User Assigned Managed Identity} to aks nodepool and trying datablock to fetch existing aks details
#Create…

Satyam Pandey
- 593
- 2
- 10
- 32
0
votes
1 answer
How to notifiy in MS Teams Channel when a new Image in Azure Container Registry by a Webhook to MS Teams
I try hard to push a Notification into aour Teams Channel if a new Action is happend in our Azure Container Registry.
The Webhook works on a nother Eventhandler
If i push it to MS Teams i got the Response: Text is missing
Question is:
How can i…

Matthias
- 1
- 1
0
votes
1 answer
Creating dynamic private dns zone records for private endpoints of Azure Container Registry (ACR)
I'm struggling with setting dynamic private dns zone records for multiple private endpoints for same resource in Azure (ACR - Azure Container Registry).
So I have currently setup this simple example. Basically it simulate creation of ACR and…

termil0r
- 131
- 2
- 14