Skip to content
Merged
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 @@ -5,6 +5,7 @@ Release History
upcoming
++++++
* 'az containerapp session code-interpreter execute': Extend maximum supported value of `--timeout-in-seconds` from 60 to 220.
* 'az containerapp job create': Fix message with `--help`

1.2.0b1
++++++
Expand Down
16 changes: 8 additions & 8 deletions src/containerapp/azext_containerapp/_help.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@
- name: Create a container apps job with Trigger Type as Manual.
text: |
az containerapp job create -n MyContainerappsjob -g MyResourceGroup \\
--environment MyContainerappEnv
--environment MyContainerappEnv \\
--trigger-type Manual \\
--replica-timeout 5 \\
--replica-retry-limit 2 \\
Expand All @@ -466,7 +466,7 @@
- name: Create a container apps job with Trigger Type as Schedule.
text: |
az containerapp job create -n MyContainerappsjob -g MyResourceGroup \\
--environment MyContainerappEnv
--environment MyContainerappEnv \\
--trigger-type Schedule \\
--replica-timeout 5 \\
--replica-retry-limit 2 \\
Expand All @@ -477,7 +477,7 @@
- name: Create a container apps job with Trigger Type as Event.
text: |
az containerapp job create -n MyContainerappsjob -g MyResourceGroup \\
--environment MyContainerappEnv
--environment MyContainerappEnv \\
--trigger-type Event \\
--replica-timeout 5 \\
--replica-retry-limit 2 \\
Expand All @@ -486,11 +486,11 @@
--polling-interval 30 \\
--min-executions 0 \\
--max-executions 1 \\
--scale-rule-name queueJob \\
--scale-rule-name queue \\
--scale-rule-type azure-queue \\
--scale-rule-metadata "accountName=mystorageaccountname" \\
"cloud=AzurePublicCloud" \\
"queueLength": "5" "queueName": "foo" \\
"queueLength=5" "queueName=foo" \\
--scale-rule-auth "connection=my-connection-string-secret-name" \\
--image imageName
"""
Expand Down Expand Up @@ -1188,7 +1188,7 @@
- name: Create a container apps job with Trigger Type as Manual.
text: |
az containerapp job create -n MyContainerappsjob -g MyResourceGroup \\
--environment MyContainerappEnv
--environment MyContainerappEnv \\
--trigger-type Manual \\
--replica-timeout 5 \\
--replica-retry-limit 2 \\
Expand All @@ -1199,7 +1199,7 @@
- name: Create a container apps job with Trigger Type as Schedule.
text: |
az containerapp job create -n MyContainerappsjob -g MyResourceGroup \\
--environment MyContainerappEnv
--environment MyContainerappEnv \\
--trigger-type Schedule \\
--replica-timeout 5 \\
--replica-retry-limit 2 \\
Expand All @@ -1210,7 +1210,7 @@
- name: Create a container apps job with Trigger Type as Event.
text: |
az containerapp job create -n MyContainerappsjob -g MyResourceGroup \\
--environment MyContainerappEnv
--environment MyContainerappEnv \\
--trigger-type Event \\
--replica-timeout 5 \\
--replica-retry-limit 2 \\
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

class ContainerappYamlTests(ScenarioTest):
def __init__(self, *arg, **kwargs):
super().__init__(*arg, random_config_dir=True, **kwargs)
super().__init__(*arg, random_config_dir=False, **kwargs)

@AllowLargeResponse(8192)
@ResourceGroupPreparer(location="westeurope")
Expand Down
Loading