117 questions
1
vote
0
answers
61
views
Read NFC TAGID via BLE using ACR1555U
Has anyone succeded to read an iso14443 tag ID using a BLE connection out of a ACR1555U?
So far this is what I have...
That device exposes the following services/characteristics:
For custom Service: ...
0
votes
1
answer
118
views
ACR task command fails with unmarshall error
I have a Azure Container registry with few docker images. I want to manage it through DevOps via acr task. I have created an ACR task with following bicep
resource cr_purge_image_task 'Microsoft....
0
votes
1
answer
62
views
Enable System managed identity for ACR integration
currently In my container app i am using sp based authentication with ACR by providing the username/password like below.
registry {
server = var.acr_registry_name
username ...
0
votes
0
answers
32
views
Spinnaker pipeline is not auto triggering on Azure acr image push
We have installed spinnaker inside a Azure vm using halyard.
Spinnaker version is 1.34.5, we have enabled the auto trigger in the Spinnaker UI.
This is the halyard configuration:
dockerRegistry:
...
0
votes
1
answer
247
views
Beginner in terraform: azurerm_container_group 400 bad request
I'm getting the following error:
Error: creating Container Group (Subscription: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
Resource Group Name: "mudkip-rg"
Container Group Name: "...
0
votes
1
answer
237
views
How to execute bash script in azure task?
I want to execute some bash scripts with azure task, the task is created successfully but it doesn't do anything and also it doesn't log anything, it seems that the script never gets executed, here is ...
0
votes
1
answer
338
views
Cannot cannot push to Azure Container Registry from WSL (Ubuntu 24.04 LTS)
Receiving an authorization error:
unauthorized: {"errors":[{"code":"UNAUTHORIZED","message":"authentication required, visit https://aka.ms/acr/...
1
vote
1
answer
51
views
Powershell is not excluding the right values to delete the images from the azure repository
I'm having powershell script as below but it is not working as expected trying to retrieve images and delete the non running images from the acr .
I was able to pull the images but not able to delete ...
0
votes
1
answer
1k
views
Why I my Azure Container App cant access ACR
Hi guys I have an issue.
I pushed my docker image to ACR and when I tried to configure it in Container app to create a container to deploy it in Cotainer Apps Env..It throw me an error saying that ‘...
0
votes
2
answers
356
views
Finding hostname and port of db2 database connection in JAVA
In Java while making database connection we are constructing dburl using configured db2 hostname and port from properties file and then assigning alternate servers(clientRerouteAlternateServerName) ...
1
vote
1
answer
215
views
How to input data through Kafka REST in an environment where message payload cannot be edited
I want to send push and pull events of images to Kafka using the Azure ACR Webhook function.
'Event Hub' is not available due to cost.
The webhook is set to be thrown to the Kafka Rest Proxy URI with ...
1
vote
2
answers
4k
views
AKS private cluster deployment from Azure DevOps
I have an Azure subscription in which I have deployed an AKS private cluster. I created a VM in same virtual network and I can access AKS kubeapi and am able to create/update/delete resources in AKS ...
0
votes
1
answer
382
views
ACR Tags are overwriting
I am trying to push docker images in Azure Container Registry (ACR). When I push an image with a tag, and next time another modified image with the same tag, I lost access to the previous image.
Is ...
1
vote
1
answer
689
views
How do I implement soft delete for acr using terraform
I have a pre-existing ACR and I need to enable soft-deletion policy using terraform. I don't want to use null-resource, is there any other way I can achieve this?
resource "null_resource" &...
0
votes
1
answer
3k
views
How to enable Azure Kubernetes Service (AKS) to pull images from an Azure Container Registry (ACR) located in a different Azure AD tenant?
I have an Azure Kubernetes Service (AKS) cluster hosted in one Azure AD tenant and an Azure Container Registry (ACR) hosted in another Azure AD tenant. The ACR is secured using a service principal, ...
0
votes
1
answer
122
views
My External ip in AKS for deployed Nodejs api app not working
I try to deploy simple nodejs API to AKS. API works fine in local docker. I get no errors. AKS that status is running. However browser does not respond. Could someone check yaml and give me some tips?
...
0
votes
1
answer
518
views
ACR Purge - Retain the 10 latest images in my registry
I want to retain the 10 latest (order by date) images and delete the rest, how do i achieve that using command line? I dig through the documentation from azure but didn't find anything related to ...
0
votes
2
answers
425
views
az acr build fails because of access to file he does not need
I'm building manually docker images from .NET 6 projects on Windows and uploading them to a docker container registry in Azure.
I'm in the folder with the dockerfile and run:
az acr build --registry ...
0
votes
1
answer
2k
views
Kubernetes pod gives image pull error despite docker login to ACR
I have an AKS deployed in Azure and my pod is not able to pull the images from the ACR, the error is ImagePullBackOff, The error is failed to resolve reference "//:": failed to authorize: ...
1
vote
1
answer
278
views
ACR task for cleanup avoiding specific tags giving syntax error
I'm trying to create ACR tasks that would run acr purge command to cleanup of ACR registry.
Here is a command for ACR cleanup of 3 repositories, except those with the tag latest :
az acr run --cmd '...
1
vote
2
answers
2k
views
Repositories are not getting listed in Azure Container Registry
I've Azure free Subscription and trying out ACR. I've pushed an image into the ACR. But the image is not getting listed in Repositories. Any leads are helpful. Attached the screenshot. Under ...
0
votes
1
answer
347
views
Exclude certain tags while deleting repositories in Azure Container registry
Is there a way we can exclude deleting certain tags from a Azure container repository and delete rest all tags present.
I have been trying with below command but doesn't seem to work
az acr run --...
0
votes
1
answer
525
views
Attach an aks (azure k8s cluster) to ACR in deferenet subscription
i have 2 Susbscription first is called Prod and the 2nd is called Non-Prod.
the non prod subscription containes an aks "ttr-aks" and i want to attach it to the ACR which exists into the ...
1
vote
2
answers
2k
views
Azure container registry (ACR) webhook to App Service (with container apps) fails with 401 unauthorized
I am following this article to create a simple app service wiht container image pulled from an ACR: https://learn.microsoft.com/en-us/azure/app-service/tutorial-custom-container?tabs=azure-cli&...
0
votes
1
answer
674
views
In Azure pipeline - how to build docker image with multiple image tags
task: Docker@2
inputs:
containerRegistry: 'my-registry'
repository: '$(System.TeamProject)/$(Build.Repository.Name)'
command: 'buildAndPush'
Dockerfile: 'Dockerfile'
tags: |
$(Build.SourceVersion)
$(...
0
votes
0
answers
616
views
How to optimize JDBC DB2 Automatic client reroute (ACR) it Takes too long
We have a DB2 environment in a HADR cluster.
The Java application connects to the database via JDBC. In the event of an error, this should connect to the backup database.
This connection takes about ...
1
vote
0
answers
1k
views
error parsing HTTP 403 response body: unexpected end of JSON input: in Azure DevOps Pipeline
While pushing the image to ACR in azure pipelines, I'm getting below error.
a70b11b076fe: Waiting
3ad1014f96c7: Waiting
bca938d9b956: Waiting
5a48accd2033: Waiting
32ee4143301d: Waiting
c73ad13a1488: ...
0
votes
1
answer
3k
views
Getting timeouts on `az acr login` in Windows though `az acr health-check` shows that ACR is healthy
Whenever I'm running az acr login -n i'm getting following message:
Error response from daemon: Get "https://acrau*****.azurecr.io/v2/": net/http: request canceled while waiting for ...
0
votes
1
answer
733
views
Can we move docker images from one repository to another repository inside same azure container registry
I have docker images with some tags uploaded at one of my repository but I need to pick some images from that repository and move it to another repository. Both of them are residing inside a same ...
0
votes
1
answer
1k
views
How to use docker build task in the Azure devops
I am trying to build a docker image through Azure DevOps am using sample app (Node Js) to build tag and push to the azure acr, unfortunately its getting failed to find the image
In my yaml config I ...
3
votes
2
answers
2k
views
The resource with name 'name' and type 'Microsoft.ContainerRegistry/registries' could not be found in subscription
I am working on a script where I want to run az acr import. The command tries to list the repository but fails with the error: The resource with name 'name' and type 'Microsoft.ContainerRegistry/...
0
votes
0
answers
338
views
Deploy a docker container through Azure pipelines without pulling a new image from ACR
I have been burning my remaining neurons during the last week with this issue.
The challenge that I am facing is that I am trying to upload or push a modified container to my Azure Container Registry ...
1
vote
1
answer
101
views
Azure Web App (Linux) running old files compare to ACR artefact
WebApp is configured to fetch artefact from ACR as part of CI/CD.
The WebApp seems to be running old file compare to what the ACR artefact has (verified by pulling it down from ACR to localhost).
Have ...
0
votes
0
answers
137
views
Xamarin Forms - ACR UserDialog smooth transition
I have an app with two pages. One of them is the MainPage, which is opened first when the app is opened. The second page is there to update values (user input), sent them to a server and returning to ...
0
votes
1
answer
634
views
How to connect ACR with Azure devops pipeline such that whenever there is a new image in ACR azure devops pipeline trigger
How to connect ACR with Azure devops pipeline such that whenever there is a new image in ACR azure devops pipeline trigger. Webhook is one option but how to setup it what should be URI need to specify ...
1
vote
1
answer
1k
views
How to copy images from GHCR to ACR
Looking for an example in GitHub actions workflow to clone a specifc image name by commit SHA from GHCR (GitHub registry) to ACR (Azure registry) with a need to copy all the tags and labels from the ...
1
vote
3
answers
3k
views
Create imagePullSecrets from Azure key vault
To preface, I am new to leveraging Kubernetes in Azure, so I might get some terms wrong. Sorry in advance.
I have been attempting to find a way to create Kubernetes secret objects that are populated ...
1
vote
1
answer
4k
views
net/http: TLS handshake timeout while login to Azure container registry from ubuntu
I'm trying to push an image to Azure container registry but before pushing an image when I tried to login to azure container registry login server, I'm getting below error
Error response from daemon: ...
0
votes
3
answers
2k
views
Unable to import images from public registry
I'm following this guide and when I try to import cert-manager images in my private ACR from command line I receive this error:
(InvalidParameters) Operation
registries-561d08e9-81e5-11ed-baec-...
0
votes
2
answers
1k
views
AzureDevOps Pipeline Create Secret Fail
I have 3 stages in my pipeline for deploying to AKS.
Create Secret
Kubectl apply
Deploy to AKS
but I got this error in Kubectl apply:
2022-12-14T08:01:54.5561492Z [command]/usr/local/bin/kubectl ...
1
vote
1
answer
8k
views
AKS unable to pull ACR image ImagePullBackOff
I use Azure Kubernetes Service in order to perform docker images deployment from Azure Container Registry.
After deployment I got:
Failed to pull image "<reg_name>.azurecr.io/service:latest&...
0
votes
0
answers
959
views
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') {
...
1
vote
0
answers
630
views
Authenticate private registry (ACR) with Minikube on developer machine
At my company, we're setting up an on-prem k8s cluster in combination with a private image repository hosted on Azure (Azure Container Registry).
For development purposes, I'd like our developers to ...
0
votes
1
answer
950
views
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 ...
1
vote
1
answer
2k
views
Azure ACR: why can i push to ACR having ONLY AcrPull role?
I created a private registry having only AcrPull role, as showing below :
But when i build my own image and PUSH, it works fine! (instead of deny me )
I would like to know why ? (since it has only ...
1
vote
1
answer
685
views
Migrate(copy) ACR with tag using Import-AzContainerRegistry
I am trying to import Azure container registry with tags.
I know the Azure cli command:
az acr import --name $TARGET_REG --source $SOURCE_REG.azurecr.io/$repo":"$tag;
But Azure cli doesn't ...
1
vote
0
answers
691
views
Java smartcardio // transmitControlCommand response is always empty // ACR 39
after very useful tips from user vlp, I have finally been able to connect to an AT24C16 I2C card with my ACR39 card reader through the java smartcard API (original thread).
Since the free memory card ...
2
votes
1
answer
2k
views
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 ...
0
votes
0
answers
394
views
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 ...
2
votes
1
answer
3k
views
Setting the `acr_values` does not return acr value in `id_token` after authentication
I want to send an acr value to Identity Server 4 during the authentication challenge, and have it returned inside the id_token on the redirect back after login.
From what I have read online, I got the ...