Skip to content

Commit

Permalink
[helm] Fix ws-daemon readiness probe
Browse files Browse the repository at this point in the history
  • Loading branch information
csweichel authored and roboquat committed Mar 31, 2022
1 parent 9d36697 commit 0c3eb89
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions chart/templates/ws-daemon-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
{{- define "ws-daemon.config" }}
{{ $comp := .comp -}}
{{ with .root }}
readinessProbeAddr: ":9999"
daemon:
readiness:
enabled: true
addr: ":9999"
runtime:
namespace: {{ .Release.Namespace | quote }}
containerRuntime:
Expand Down
4 changes: 2 additions & 2 deletions chart/templates/ws-daemon-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ spec:
readinessProbe:
httpGet:
port: 9999
path: "/"
path: "/ready"
initialDelaySeconds: 5
periodSeconds: 10
lifecycle:
Expand All @@ -304,7 +304,7 @@ spec:
livenessProbe:
httpGet:
port: 9999
path: "/"
path: "/ready"
initialDelaySeconds: 5
periodSeconds: 10
failureThreshold: 10
Expand Down

0 comments on commit 0c3eb89

Please sign in to comment.