Skip to content

Commit

Permalink
feat: adding missing liveness and readiness probes
Browse files Browse the repository at this point in the history
  • Loading branch information
deimosfr committed Jun 3, 2018
1 parent f370489 commit 2d6910e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion kubernetes/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: v1
description: Traefik Helm chart for Kubernetes
name: traefik
version: 0.8.2
version: 0.8.3
11 changes: 11 additions & 0 deletions kubernetes/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,17 @@ spec:
containerPort: 443
- name: admin
containerPort: 8080
readinessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 30
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 443
initialDelaySeconds: 30
periodSeconds: 10
securityContext:
privileged: true
volumeMounts:
Expand Down

0 comments on commit 2d6910e

Please sign in to comment.