Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
5 changes: 1 addition & 4 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 Expand Up @@ -284,11 +285,7 @@ upcoming
* 'az containerapp create/update': --yaml support properties for api-version 2023-04-01-preview (e.g. subPath, mountOptions)
* 'az containerapp service': add support for creation and deletion of kafka
* 'az containerapp create': --registry-server support registry with custom port
* 'az containerapp create': fix containerapp create not waiting for ready environment
* Add regex to fix validation for containerapp name
* Add 'az containerapp ingress cors' for CORS support
* 'az container app env create/update': support --enable-mtls parameter
* 'az containerapp up': fix issue where --repo throws KeyError

0.3.33
++++++
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
Loading