-
Notifications
You must be signed in to change notification settings - Fork 1.5k
[Containerapp] az containerapp create: Support --kind {functionapp} #8472
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
Changes from 3 commits
33a9d37
23b6c40
d991b6b
9188068
9b21747
f9b4c82
59e0c08
b2f84f2
882a098
992351f
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -36,6 +36,7 @@ def load_arguments(self, _): | |
| c.argument('build_env_vars', nargs='*', help="A list of environment variable(s) for the build. Space-separated values in 'key=value' format.", | ||
pragatikushwaha marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| validator=validate_build_env_vars, is_preview=True) | ||
| c.argument('max_inactive_revisions', type=int, help="Max inactive revisions a Container App can have.", is_preview=True) | ||
| c.argument('kind ', type=str, help="kind of containerApp is Function", is_preview=True) | ||
|
||
| c.argument('registry_identity', help="The managed identity with which to authenticate to the Azure Container Registry (instead of username/password). Use 'system' for a system-defined identity, Use 'system-environment' for an environment level system-defined identity or a resource id for a user-defined environment/containerapp level identity. The managed identity should have been assigned acrpull permissions on the ACR before deployment (use 'az role assignment create --role acrpull ...').") | ||
| c.argument('target_label', help="The label to apply to new revisions. Required for revisions-mode 'labels'.", is_preview=True) | ||
|
|
||
|
|
@@ -69,6 +70,7 @@ def load_arguments(self, _): | |
| validator=validate_build_env_vars, is_preview=True) | ||
| c.argument('max_inactive_revisions', type=int, help="Max inactive revisions a Container App can have.", is_preview=True) | ||
| c.argument('target_label', help="The label to apply to new revisions. Required for revisions-mode 'labels'.", is_preview=True) | ||
| c.argument('kind ', type=str, help="kind of containerApp is Function", is_preview=True) | ||
pragatikushwaha marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| # Springboard | ||
| with self.argument_context('containerapp update', arg_group='Service Binding', is_preview=True) as c: | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.