Handle undefined variable
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
parent
e241080514
commit
041be0be23
1 changed files with 2 additions and 2 deletions
|
@ -78,14 +78,14 @@ spec:
|
||||||
initialDelaySeconds: 5
|
initialDelaySeconds: 5
|
||||||
periodSeconds: 60
|
periodSeconds: 60
|
||||||
httpGet:
|
httpGet:
|
||||||
path: "{{ subdir }}/healthz/ready"
|
path: "{{ subdir|default('') }}/healthz/ready"
|
||||||
port: 8080
|
port: 8080
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
timeoutSeconds: 10
|
timeoutSeconds: 10
|
||||||
initialDelaySeconds: 10
|
initialDelaySeconds: 10
|
||||||
periodSeconds: 60
|
periodSeconds: 60
|
||||||
httpGet:
|
httpGet:
|
||||||
path: "{{ subdir }}/healthz/live"
|
path: "{{ subdir|default('') }}/healthz/live"
|
||||||
port: 8080
|
port: 8080
|
||||||
volumes:
|
volumes:
|
||||||
- name: noggin-config-volume
|
- name: noggin-config-volume
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue