mirror of
https://github.com/kubernetes-sigs/kubespray.git
synced 2025-12-14 13:54:37 +03:00
@@ -2,6 +2,13 @@ all:
|
|||||||
vars:
|
vars:
|
||||||
heketi_admin_key: "11elfeinhundertundelf"
|
heketi_admin_key: "11elfeinhundertundelf"
|
||||||
heketi_user_key: "!!einseinseins"
|
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:
|
children:
|
||||||
k8s_cluster:
|
k8s_cluster:
|
||||||
vars:
|
vars:
|
||||||
|
|||||||
@@ -73,8 +73,8 @@
|
|||||||
"privileged": true
|
"privileged": true
|
||||||
},
|
},
|
||||||
"readinessProbe": {
|
"readinessProbe": {
|
||||||
"timeoutSeconds": 3,
|
"timeoutSeconds": {{ glusterfs_daemonset.readiness_probe.timeout_seconds }},
|
||||||
"initialDelaySeconds": 3,
|
"initialDelaySeconds": {{ glusterfs_daemonset.readiness_probe.initial_delay_seconds }},
|
||||||
"exec": {
|
"exec": {
|
||||||
"command": [
|
"command": [
|
||||||
"/bin/bash",
|
"/bin/bash",
|
||||||
@@ -84,8 +84,8 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"livenessProbe": {
|
"livenessProbe": {
|
||||||
"timeoutSeconds": 3,
|
"timeoutSeconds": {{ glusterfs_daemonset.liveness_probe.timeout_seconds }},
|
||||||
"initialDelaySeconds": 10,
|
"initialDelaySeconds": {{ glusterfs_daemonset.liveness_probe.initial_delay_seconds }},
|
||||||
"exec": {
|
"exec": {
|
||||||
"command": [
|
"command": [
|
||||||
"/bin/bash",
|
"/bin/bash",
|
||||||
|
|||||||
Reference in New Issue
Block a user