You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Add default timeout value to --timeout help text
- Clarify --acr-use-identity default behavior
- Document --track-status behavior and parameter relationships
- Add more examples to az webapp deploy help (URL deploy, slots, --clean)
Fixes#29759Fixes#29758Fixes#29561Fixes#30110
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: src/azure-cli/azure/cli/command_modules/appservice/_params.py
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -591,7 +591,7 @@ def load_arguments(self, _):
591
591
c.ignore('reserved_instance_count')
592
592
c.argument('runtime', help="Canonicalized web runtime in the format of Framework:Version, e.g. \"PHP:7.2\"."
593
593
"Use `az webapp list-runtimes` for available list")
594
-
c.argument('acr_use_identity', arg_type=get_three_state_flag(return_label=True), help="Enable or disable pull image from acr use managed identity")
594
+
c.argument('acr_use_identity', arg_type=get_three_state_flag(return_label=True), help="If not specified, managed identity will not be used for ACR image pull.")
595
595
c.argument('acr_identity', help="Accept system or user assigned identity which will be set for acr image pull. "
596
596
"Use \'[system]\' to refer system assigned identity, or a resource id to refer user assigned identity.")
c.argument('clean', help='If true, cleans the target directory prior to deploying the file(s). Default value is determined based on artifact type.', arg_type=get_three_state_flag())
1008
1008
c.argument('ignore_stack', help='If true, any stack-specific defaults are ignored.', arg_type=get_three_state_flag())
1009
1009
c.argument('reset', help='Reset Java apps to the default parking page if set to true with no type specified.', arg_type=get_three_state_flag())
1010
-
c.argument('timeout', type=int, help='Timeout for the deployment operation in milliseconds. Ignored when using "--src-url" since synchronous deployments are not yet supported when using "--src-url"')
1011
-
c.argument('slot', help="The name of the slot. Default to the productions slot if not specified.")
1012
-
c.argument('track_status', help="If true, web app startup status during deployment will be tracked for linux web apps.",
1010
+
c.argument('timeout', type=int, help='Timeout for the deployment operation in milliseconds. Default: 900000 (15 minutes). Ignored when using "--src-url".')
1011
+
c.argument('slot', help="The name of the slot. Default to the production slot if not specified.")
1012
+
c.argument('track_status', help="If not specified, the command will track app startup and runtime health. Default: true.",
1013
1013
arg_type=get_three_state_flag())
1014
1014
c.argument('enable_kudu_warmup', help="If true, kudu will be warmed up before performing deployment for a linux webapp.",
0 commit comments