We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a48352e commit 32ddfd8Copy full SHA for 32ddfd8
2 files changed
charts/ctrlplane/Chart.yaml
@@ -2,7 +2,7 @@ apiVersion: v2
2
name: ctrlplane
3
description: Ctrlplane Helm chart for Kubernetes
4
type: application
5
-version: 0.3.10
+version: 0.3.11
6
appVersion: "1.16.0"
7
8
maintainers:
charts/ctrlplane/charts/event-worker/templates/deployment.yaml
@@ -39,9 +39,21 @@ spec:
39
- name: event-worker
40
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
41
ports:
42
- - name: http
43
- containerPort: 3000
+ - name: health
+ containerPort: 3123
44
protocol: TCP
45
+ livenessProbe:
46
+ httpGet:
47
+ path: /healthz
48
+ port: health
49
+ initialDelaySeconds: 15
50
+ periodSeconds: 20
51
+ readinessProbe:
52
53
54
55
+ initialDelaySeconds: 5
56
+ periodSeconds: 10
57
env:
58
- name: REDIS_URL
59
valueFrom:
0 commit comments