File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ const { serviceAccount } = createServiceAccountAndGrantRoles(
2828const limits : Input < {
2929 [ key : string ] : Input < string > ;
3030} > = {
31- cpu : '2 ' ,
31+ cpu : '1 ' ,
3232 memory : '2Gi' ,
3333} ;
3434
@@ -64,7 +64,7 @@ createAutoscaledExposedApplication({
6464 initialDelaySeconds : 10 ,
6565 } ,
6666 livenessProbe : {
67- httpGet : { path : '/health ' , port : 'http' } ,
67+ httpGet : { path : '/ready ' , port : 'http' } ,
6868 initialDelaySeconds : 10 ,
6969 } ,
7070 env : convertRecordToContainerEnvVars ( { secretName : name , data : envVars } ) ,
@@ -74,7 +74,7 @@ createAutoscaledExposedApplication({
7474 } ,
7575 } ,
7676 ] ,
77- minReplicas : 4 ,
77+ minReplicas : 3 ,
7878 maxReplicas : 10 ,
7979 metrics : getMemoryAndCpuMetrics ( 60 ) ,
8080} ) ;
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ const pptrPool = genericPool.createPool(
106106 } ,
107107 {
108108 min : 5 ,
109- max : 10 ,
109+ max : 15 ,
110110 evictionRunIntervalMillis : 1000 * 60 ,
111111 acquireTimeoutMillis : 1000 * 10 ,
112112 softIdleTimeoutMillis : 1000 * 60 * 5 ,
You can’t perform that action at this time.
0 commit comments