feat: make readinessProbe and livenessProbe initialDelaySeconds configurable (#18756)
Makes `initialDelaySeconds` configurable for both `readinessProbe` and `livenessProbe` in the Helm chart. **Changes:** - Added `coder.readinessProbe.initialDelaySeconds` and `coder.livenessProbe.initialDelaySeconds` to `values.yaml` - Updated `_coder.tpl` template to use these configurable values - Defaults to 0 seconds to maintain existing behavior **Testing:** - Verified template rendering with default values (0) - Verified template rendering with custom values (30, 60) - Both probes correctly use the configured `initialDelaySeconds` --------- Co-authored-by: blink-so[bot] <211532188+blink-so[bot]@users.noreply.github.com> Co-authored-by: kylecarbs <7122116+kylecarbs@users.noreply.github.com>
This commit is contained in:
@@ -100,9 +100,11 @@ readinessProbe:
|
||||
path: /healthz
|
||||
port: "http"
|
||||
scheme: "HTTP"
|
||||
initialDelaySeconds: {{ .Values.coder.readinessProbe.initialDelaySeconds }}
|
||||
livenessProbe:
|
||||
httpGet:
|
||||
path: /healthz
|
||||
port: "http"
|
||||
scheme: "HTTP"
|
||||
initialDelaySeconds: {{ .Values.coder.livenessProbe.initialDelaySeconds }}
|
||||
{{- end }}
|
||||
|
||||
@@ -171,6 +171,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -181,6 +182,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -171,6 +171,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -181,6 +182,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -171,6 +171,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -181,6 +182,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -171,6 +171,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -181,6 +182,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
+2
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -180,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -180,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 4000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 4000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
+2
@@ -181,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -191,6 +192,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -181,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -191,6 +192,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -178,6 +178,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -188,6 +189,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -178,6 +178,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -188,6 +189,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -177,6 +177,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -187,6 +188,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -177,6 +177,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -187,6 +188,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
requests:
|
||||
cpu: 1500m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
requests:
|
||||
cpu: 1500m
|
||||
|
||||
+2
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -183,6 +184,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -183,6 +184,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -174,6 +174,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -184,6 +185,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -174,6 +174,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -184,6 +185,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
Vendored
+2
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -180,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
+2
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -180,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -155,6 +155,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -165,6 +166,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -155,6 +155,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -165,6 +166,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -183,6 +183,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -193,6 +194,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -183,6 +183,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -193,6 +194,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -180,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -170,6 +170,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -180,6 +181,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -168,6 +168,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -178,6 +179,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -168,6 +168,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -178,6 +179,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
Vendored
+2
@@ -182,6 +182,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -195,6 +196,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
+2
@@ -182,6 +182,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -195,6 +196,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
+2
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -169,6 +169,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -179,6 +180,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -177,6 +177,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -187,6 +188,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -177,6 +177,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
name: coder
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
@@ -187,6 +188,7 @@ spec:
|
||||
path: /healthz
|
||||
port: http
|
||||
scheme: HTTP
|
||||
initialDelaySeconds: 0
|
||||
resources:
|
||||
limits:
|
||||
cpu: 2000m
|
||||
|
||||
@@ -206,6 +206,18 @@ coder:
|
||||
# cpu: 2000m
|
||||
# memory: 4096Mi
|
||||
|
||||
# coder.readinessProbe -- Readiness probe configuration for the Coder container.
|
||||
readinessProbe:
|
||||
# coder.readinessProbe.initialDelaySeconds -- Number of seconds after the container
|
||||
# has started before readiness probes are initiated.
|
||||
initialDelaySeconds: 0
|
||||
|
||||
# coder.livenessProbe -- Liveness probe configuration for the Coder container.
|
||||
livenessProbe:
|
||||
# coder.livenessProbe.initialDelaySeconds -- Number of seconds after the container
|
||||
# has started before liveness probes are initiated.
|
||||
initialDelaySeconds: 0
|
||||
|
||||
# coder.certs -- CA bundles to mount inside the Coder pod.
|
||||
certs:
|
||||
# coder.certs.secrets -- A list of CA bundle secrets to mount into the Coder
|
||||
|
||||
Reference in New Issue
Block a user