Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion simple-example/varnish/varnish-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: varnishd
image: sectionio/varnish-cache-kei:alpha
image: sectionio/varnish-cache-kei:1.0.1
imagePullPolicy: Always
args:
- -p
Expand Down Expand Up @@ -51,6 +51,22 @@ spec:
- name: vcl
mountPath: /etc/varnish/
readOnly: true
livenessProbe:
tcpSocket:
port: 80
initialDelaySeconds: 30
timeoutSeconds: 10
periodSeconds: 5
successThreshold: 1
failureThreshold: 3
readinessProbe:
tcpSocket:
port: 80
initialDelaySeconds: 30
timeoutSeconds: 10
periodSeconds: 5
successThreshold: 1
failureThreshold: 3
volumes:
- name: vcl
configMap:
Expand Down