mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-05-01 14:02:12 +08:00
Handle undefined variable
Signed-off-by: Aurélien Bompard <aurelien@bompard.org>
This commit is contained in:
@@ -78,14 +78,14 @@ spec:
|
||||
initialDelaySeconds: 5
|
||||
periodSeconds: 60
|
||||
httpGet:
|
||||
path: "{{ subdir }}/healthz/ready"
|
||||
path: "{{ subdir|default('') }}/healthz/ready"
|
||||
port: 8080
|
||||
livenessProbe:
|
||||
timeoutSeconds: 10
|
||||
initialDelaySeconds: 10
|
||||
periodSeconds: 60
|
||||
httpGet:
|
||||
path: "{{ subdir }}/healthz/live"
|
||||
path: "{{ subdir|default('') }}/healthz/live"
|
||||
port: 8080
|
||||
volumes:
|
||||
- name: noggin-config-volume
|
||||
|
||||
Reference in New Issue
Block a user