File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -86,9 +86,12 @@ resource containerApp 'Microsoft.App/containerApps@2025-01-01' = {
8686 memory : '2Gi'
8787 }
8888 env : [
89- { name : 'OPTIMIZER_TIME_LIMIT' , value : '25 ' }
89+ { name : 'OPTIMIZER_TIME_LIMIT' , value : '50 ' }
9090 { name : 'OPTIMIZER_NUM_THREADS' , value : '1' }
91- { name : 'GUNICORN_CMD_ARGS' , value : '--workers 1 --timeout 60 --max-requests 5000 --max-requests-jitter 500' }
91+ {
92+ name : 'GUNICORN_CMD_ARGS'
93+ value : '--workers 1 --timeout 120 --max-requests 5000 --max-requests-jitter 500'
94+ }
9295 { name : 'JWT_TOKEN_SECRET' , secretRef : 'jwt-token-secret' }
9396 ]
9497 probes : [
@@ -105,7 +108,7 @@ resource containerApp 'Microsoft.App/containerApps@2025-01-01' = {
105108 ]
106109 scale : {
107110 minReplicas : 1
108- maxReplicas : 30
111+ maxReplicas : 50
109112 rules : [
110113 {
111114 name : 'http-scaling'
@@ -121,5 +124,4 @@ resource containerApp 'Microsoft.App/containerApps@2025-01-01' = {
121124 }
122125}
123126
124-
125127output fqdn string = containerApp .properties .configuration .ingress .fqdn
You can’t perform that action at this time.
0 commit comments