Skip to content
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

[ContainerApp] Fix: az containerapp create --yaml always shows warning. #7279

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/containerapp/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ upcoming
* 'az containerapp env identity': support for container app environment assign/remove/show commands
* 'az containerapp env storage set': Support create or update managed environment storage with NFS Azure File.
* 'az containerapp up': Update the Docker error string used to identify unauthorized push.
* 'az containerapp create --yaml': Fix incorrect warning additional flag are passed.

0.3.46
++++++
Expand Down
2 changes: 1 addition & 1 deletion src/containerapp/azext_containerapp/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def create_containerapp(cmd,
transport="auto",
ingress=None,
allow_insecure=False,
revisions_mode="single",
revisions_mode=None,
secrets=None,
env_vars=None,
cpu=None,
Expand Down
Loading