-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
az webapp create
doesnt support using a acr image
#7261
Comments
We have it on our backlog and will update the thread once we finish the work, that's said we don't have an ETA to share right now |
+1 for this, could be useful for us as well |
Also, if you have a container that needs certain environment variables set, there is no obvious way to create the webapp with the app settings. you have to first do Would be nice to be able to create a new webapp from ACR and with environment variables correctly configured in a single step |
@yiliaomsft & @Nking92 can you look at this request |
+1 from me as well. This is really needed. |
We're looking into it. |
CC: //@apwestgarth for windows containers |
this is needed as soon as possible for Microsoft engagements with other companies (I'm an employee in CSE) |
We are on track for s69 |
This has been fixed. |
Using az webapp create using an ACR image still returns "Access is denied. Not authorized. latest". Is this in production now? Even using the Azure CLI shell in the portal (therefore latest) gives the same error. |
It works today, but in an odd way. I assume it was an outage, though I have switched to linux containers / service plan. I noticed that it still doesn't connect using the ACR option - inspecting the app service created its connecting using a "private repository" connecting using my ACR access tokens. |
I tried creating a web app for container I used the -i option yet it didn’t give me acr as a default container reg instead it treated my parameter as a private container repo.where as i supplied my acr url and image name to the command.please any idea.?????? |
I had this issue when my ACR url didn't start with https://. Setting with https:// registered it as a container registry instead. |
Describe the bug
az webapp create
can only create a webapp using a public dockerhub or built in image, it doesnt support passing in registry credentials for a acr image.I'm trying to create a webapp based on a image in acr, but I cannot pass in the registry credentials into the create command. So I need to first create the webapp with a random public container, then run the
az webapp config container set
command that accepts registry credentialsTo Reproduce
run
az webapp create --deployment-container-image-name
no way of passing in registry credentialsExpected behavior
I'd like to see consistency between the command line options for
az webapp create --deployment-container-image-name
andaz webapp config container set --docker-custom-image-name
Environment summary
Bash on Windows
The text was updated successfully, but these errors were encountered: