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
Copy file name to clipboardExpand all lines: src/containerapp/HISTORY.rst
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ Release History
4
4
===============
5
5
upcoming
6
6
++++++
7
-
* 'az containerapp env ingress': New environment level ingress configuration.
7
+
* 'az containerapp env premium-ingress': New environment level ingress configuration.
8
8
* 'az containerapp auth update': Support authenticating blob storage token store using managed identity with `--blob-container-uri` and `--blob-container-identity`.
short-summary: Show the ingress settings for the environment.
2369
+
short-summary: Show the premium ingress settings for the environment.
2370
2370
examples:
2371
-
- name: Show the ingress settings for the environment.
2371
+
- name: Show the premium ingress settings for the environment.
2372
2372
text: |
2373
-
az containerapp env ingress show -g MyResourceGroup -n MyEnvironment
2373
+
az containerapp env premium-ingress show -g MyResourceGroup -n MyEnvironment
2374
2374
"""
2375
2375
2376
-
helps['containerapp env ingress'] ="""
2376
+
helps['containerapp env premium-ingress'] ="""
2377
2377
type: group
2378
2378
short-summary: Configures premium ingress settings for the environment.
2379
2379
long-summary: |
2380
2380
Premium ingress settings apply to all applications in the environment. They allow moving the ingress instances to a workload profile and scaling them beyond the system defaults to enable high traffic workloads. Other settings include request idle timeouts, header count limits, and the termination grace period.
2381
2381
examples:
2382
-
- name: Set the ingress settings for the environment.
2382
+
- name: Enable premium ingress for the environment.
2383
2383
text: |
2384
-
az containerapp env ingress set -g MyResourceGroup -n MyEnvironment -w WorkloadProfileName --min-replicas 2 --max-replicas 10
c.argument('name', options_list=['--name', '-n'], help="The name of the managed environment.")
512
512
c.argument('workload_profile_name', options_list=['--workload-profile-name', '-w'], help="The workload profile to run ingress replicas on. This profile must not be shared with any container app or job.")
513
513
c.argument('min_replicas', options_list=['--min-replicas'], type=int, help="Minimum number of replicas to run. Default 2, minimum 2.")
514
514
c.argument('max_replicas', options_list=['--max-replicas'], type=int, help="Maximum number of replicas to run. Default 10. The upper limit is the maximum cores avalable in the workload profile.")
515
-
c.argument('termination_grace_period', options_list=['--termination-grace-period', '-t'], type=int, help="Time in seconds to drain requests durring ingress shutdown. Default 500, minimum 0, maximum 3600.")
515
+
c.argument('termination_grace_period', options_list=['--termination-grace-period', '-t'], type=int, help="Time in seconds to drain requests during ingress shutdown. Default 500, minimum 0, maximum 3600.")
516
516
c.argument('request_idle_timeout', options_list=['--request-idle-timeout'], type=int, help="Timeout in minutes for idle requests. Default 4, minimum 1.")
517
517
c.argument('header_count_limit', options_list=['--header-count-limit'], type=int, help="Limit of http headers per request. Default 100, minimum 1.")
0 commit comments