Skip to content

Commit 1318481

Browse files
committed
feat(kromgo): make use of new readiness endpoint
1 parent b9e51ee commit 1318481

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

kubernetes/apps/default/kromgo/app/helmrelease.yaml

+14-4
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,22 @@ spec:
4343
securityContext:
4444
allowPrivilegeEscalation: false
4545
readOnlyRootFilesystem: true
46-
capabilities: { drop: ["ALL"] }
46+
capabilities:
47+
drop:
48+
- ALL
4749
probes:
48-
liveness:
49-
enabled: true
50-
readiness:
50+
liveness: &probes
5151
enabled: true
52+
custom: true
53+
spec:
54+
httpGet:
55+
path: /-/ready
56+
port: 80
57+
failureThreshold: 3
58+
initialDelaySeconds: 0
59+
periodSeconds: 10
60+
timeoutSeconds: 1
61+
readiness: *probes
5262
resources:
5363
requests:
5464
cpu: 5m

0 commit comments

Comments
 (0)