Skip to content

Commit b43eb0e

Browse files
committed
fixing help description for kind argument in az containerapp create command
1 parent 77e5c8b commit b43eb0e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

src/containerapp/HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ Release History
55
upcoming
66
++++++
77

8+
1.2.0b4
9+
++++++
10+
* 'az containerapp create': Update help text for `--kind` parameter to clarify its usage for Azure Functions.
11+
812
1.2.0b3
913
++++++
1014
* 'az containerapp job list': Fix only 20 items returned

src/containerapp/azext_containerapp/_params.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ def load_arguments(self, _):
3636
c.argument('build_env_vars', nargs='*', help="A list of environment variable(s) for the build. Space-separated values in 'key=value' format.",
3737
validator=validate_build_env_vars, is_preview=True)
3838
c.argument('max_inactive_revisions', type=int, help="Max inactive revisions a Container App can have.", is_preview=True)
39-
c.argument('kind', type=str, help="Set to 'functionapp' to get built in support and autoscaling to run Azure functions on Azure Container apps", is_preview=True)
39+
c.argument('kind', type=str, help="Set the kind property to 'functionapp' when deploying Azure Functions container images to Azure Container Apps. This configuration enables built-in support and autoscaling capabilities.", is_preview=True)
4040
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 ...').")
4141
c.argument('target_label', help="The label to apply to new revisions. Required for revisions-mode 'labels'.", is_preview=True)
4242

src/containerapp/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
# TODO: Confirm this is the right version number you want and it matches your
2929
# HISTORY.rst entry.
3030

31-
VERSION = '1.2.0b3'
31+
VERSION = '1.2.0b4'
3232

3333
# The full list of classifiers is available at
3434
# https://pypi.python.org/pypi?%3Aaction=list_classifiers

0 commit comments

Comments
 (0)