Browse Source

Give web container time to start (#19828)

closed-social-glitch-2
Joe Friedl 1 year ago
committed by GitHub
parent
commit
86232e68a8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      chart/templates/deployment-web.yaml

+ 6
- 1
chart/templates/deployment-web.yaml View File

@ -96,13 +96,18 @@ spec:
containerPort: {{ .Values.mastodon.web.port }}
protocol: TCP
livenessProbe:
tcpSocket:
port: http
readinessProbe:
httpGet:
path: /health
port: http
readinessProbe:
startupProbe:
httpGet:
path: /health
port: http
failureThreshold: 30
periodSeconds: 5
resources:
{{- toYaml .Values.resources | nindent 12 }}
{{- with .Values.nodeSelector }}

Loading…
Cancel
Save