From 916f25546109a4e610718868bfdf0c94492e76f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Victor=20=20Godoy=20Hern=C3=A1ndez?= Date: Wed, 22 Sep 2021 22:41:51 -0300 Subject: [PATCH] Add enable/disable connectionHealthCheck MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Victor Godoy Hernández --- submariner-operator/questions.yml | 6 ++++++ submariner-operator/templates/submariner.yaml | 1 + submariner-operator/values.yaml | 1 + 3 files changed, 8 insertions(+) diff --git a/submariner-operator/questions.yml b/submariner-operator/questions.yml index f47a358..94fa251 100644 --- a/submariner-operator/questions.yml +++ b/submariner-operator/questions.yml @@ -136,3 +136,9 @@ questions: group: "Advanced Configuration" description: "Cable driver implementation" label: "Cable Driver" +- variable: submariner.healthcheckEnabled + type: boolean + default: true + group: "Advanced Configuration" + description: "Disable Healtcheck, if your CNI does not expose a pod IP on the nodes" + label: "Healthcheck Disabled" diff --git a/submariner-operator/templates/submariner.yaml b/submariner-operator/templates/submariner.yaml index 040c570..457651f 100644 --- a/submariner-operator/templates/submariner.yaml +++ b/submariner-operator/templates/submariner.yaml @@ -25,3 +25,4 @@ spec: globalCIDR: "{{ .Values.submariner.globalCidr }}" serviceDiscoveryEnabled: {{ .Values.submariner.serviceDiscovery }} cableDriver: {{ .Values.submariner.cableDriver }} + connectionHealthCheck: {{ .Values.submariner.healthcheckEnabled }} diff --git a/submariner-operator/values.yaml b/submariner-operator/values.yaml index 82a6b5f..f4aa05b 100644 --- a/submariner-operator/values.yaml +++ b/submariner-operator/values.yaml @@ -10,6 +10,7 @@ submariner: debug: false serviceDiscovery: true cableDriver: "libreswan" + healthcheckEnabled: true images: repository: quay.io/submariner tag: "0.10.1"