Skip to content

Commit

Permalink
Move liveness to dedicated entrypoint
Browse files Browse the repository at this point in the history
  • Loading branch information
dtomcej authored and traefiker committed Oct 30, 2019
1 parent 79be5f1 commit a5aefd1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion helm/chart/maesh/templates/mesh/mesh-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ spec:
imagePullPolicy: {{ .Values.mesh.image.pullPolicy | default "IfNotPresent" }}
args:
- "--entryPoints.readiness.address=:1081"
- "--entryPoints.liveness.address=:1082"
{{- range $i, $e := until (.Values.limits.http|int) }}
- {{ printf "\"--entryPoints.http-%d.address=:%d\"" (add $i 5000) (add $i 5000) }}
{{- end }}
Expand Down Expand Up @@ -90,7 +91,7 @@ spec:
- name: readiness
containerPort: 1081
- name: liveness
containerPort: 10000
containerPort: 1082
- name: api
containerPort: 8080
readinessProbe:
Expand Down

0 comments on commit a5aefd1

Please sign in to comment.