zemkogabor
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
11 additions and
4 deletions
-
contrib/network-storage/heketi/inventory.yml.sample
-
contrib/network-storage/heketi/roles/provision/templates/glusterfs-daemonset.json.j2
|
|
@ -2,6 +2,13 @@ all: |
|
|
|
vars: |
|
|
|
heketi_admin_key: "11elfeinhundertundelf" |
|
|
|
heketi_user_key: "!!einseinseins" |
|
|
|
glusterfs_daemonset: |
|
|
|
readiness_probe: |
|
|
|
timeout_seconds: 3 |
|
|
|
initial_delay_seconds: 3 |
|
|
|
liveness_probe: |
|
|
|
timeout_seconds: 3 |
|
|
|
initial_delay_seconds: 10 |
|
|
|
children: |
|
|
|
k8s_cluster: |
|
|
|
vars: |
|
|
|
|
|
@ -73,8 +73,8 @@ |
|
|
|
"privileged": true |
|
|
|
}, |
|
|
|
"readinessProbe": { |
|
|
|
"timeoutSeconds": 3, |
|
|
|
"initialDelaySeconds": 3, |
|
|
|
"timeoutSeconds": {{ glusterfs_daemonset.readiness_probe.timeout_seconds }}, |
|
|
|
"initialDelaySeconds": {{ glusterfs_daemonset.readiness_probe.initial_delay_seconds }}, |
|
|
|
"exec": { |
|
|
|
"command": [ |
|
|
|
"/bin/bash", |
|
|
@ -84,8 +84,8 @@ |
|
|
|
} |
|
|
|
}, |
|
|
|
"livenessProbe": { |
|
|
|
"timeoutSeconds": 3, |
|
|
|
"initialDelaySeconds": 10, |
|
|
|
"timeoutSeconds": {{ glusterfs_daemonset.liveness_probe.timeout_seconds }}, |
|
|
|
"initialDelaySeconds": {{ glusterfs_daemonset.liveness_probe.initial_delay_seconds }}, |
|
|
|
"exec": { |
|
|
|
"command": [ |
|
|
|
"/bin/bash", |
|
|
|