Skip to content

Commit

Permalink
livenessProbeつけた
Browse files Browse the repository at this point in the history
  • Loading branch information
na2na-p committed Jun 9, 2024
1 parent 2a967a6 commit 3ec1b68
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion infra/k8s/web/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,13 @@ spec:
- containerPort: 3000
readinessProbe:
httpGet:
path: /
path: /healthz
port: 3000
livenessProbe:
httpGet:
initialDelaySeconds: 30
periodSeconds: 10
path: /healthz
port: 3000
volumeMounts:
- mountPath: /misskey/.config
Expand Down

0 comments on commit 3ec1b68

Please sign in to comment.