Hello guys, has anyone encountered this issue? ```...
# general
c
Hello guys, has anyone encountered this issue?
Copy code
identity and username/password_secret_name are mutually exclusive: invalid registry config for Container App
Anything I can do to remedy this? Thank you 🙂
f
Sounds like you've added the registry and specified BOTH
identity
and `username`/`password_secret_name` . The
identity
property is there if you want your container app to pull using a managed identity. The others are there if you want to use password credentials instead, so you need to provide either (but not both).
c
Thank you @freezing-jelly-32585, this helps 🙂