We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19a7548 commit 3238922Copy full SHA for 3238922
charts/amazon-cloudwatch-observability/templates/operator-deployment.yaml
@@ -45,6 +45,18 @@ spec:
45
- containerPort: {{ .Values.manager.ports.containerPort }}
46
name: webhook-server
47
protocol: TCP
48
+ livenessProbe:
49
+ httpGet:
50
+ path: /healthz
51
+ port: 8081
52
+ initialDelaySeconds: 15
53
+ periodSeconds: 20
54
+ readinessProbe:
55
56
+ path: /readyz
57
58
+ initialDelaySeconds: 5
59
+ periodSeconds: 10
60
resources: {{ toYaml .Values.manager.resources | nindent 10 }}
61
volumeMounts:
62
- mountPath: /tmp/k8s-webhook-server/serving-certs
0 commit comments