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
21 changes: 21 additions & 0 deletions deploy/manifests/imageswap-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ spec:
securityContext:
runAsUser: 1898
runAsGroup: 1898
restartPolicy: Always
initContainers:
- name: imageswap-init
image: thewebroot/imageswap-init:v1.5.3
Expand Down Expand Up @@ -77,6 +78,26 @@ spec:
mountPath: /tls
- name: imageswap-maps
mountPath: /app/maps
readinessProbe:
failureThreshold: 5
httpGet:
path: /healthz
port: 5000
scheme: HTTPS
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
livenessProbe:
failureThreshold: 5
httpGet:
path: /healthz
port: 5000
scheme: HTTPS
initialDelaySeconds: 15
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 5
volumes:
- name: imageswap-mwc
configMap:
Expand Down