Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(health-check): health checks added for each container #117

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 26 additions & 12 deletions chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,20 @@ exporter:
# runAsNonRoot: true
# runAsUser: 1000
resources: {}
livenessProbe: {}
# livenessProbe:
# httpGet:
# path: /
# port: 6083
readinessProbe: {}
livenessProbe:
httpGet:
path: /
port: 9131
initialDelaySeconds: 20
periodSeconds: 10
timeoutSeconds: 3
readinessProbe:
Copy link

@Shanuson Shanuson Dec 20, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see my comment about the effect of a readiness probe,
but I guess these here should work since they are not using the varnish itself?

httpGet:
path: /
port: 9131
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3

service:
type: ClusterIP
Expand Down Expand Up @@ -225,12 +233,18 @@ tolerations: []

affinity: {}

livenessProbe: {}
# livenessProbe:
# httpGet:
# path: /
# port: 6083
readinessProbe: {}
livenessProbe:
tcpSocket:
port: 8090
initialDelaySeconds: 20
periodSeconds: 10
timeoutSeconds: 3
readinessProbe:
tcpSocket:
port: 8090
initialDelaySeconds: 10
periodSeconds: 10
timeoutSeconds: 3

vclTemplate: |
vcl 4.0;
Expand Down