From bcee4e738ce66b69957abb987dda40032264e6f7 Mon Sep 17 00:00:00 2001 From: Todd Malsbary Date: Mon, 7 Feb 2022 13:06:17 -0800 Subject: [PATCH] Add bmcDisableCertificateVerification to chart Signed-off-by: Todd Malsbary Change-Id: Ic64885d190479ef9b1a02f3035183f82a7014a3f --- deploy/machine/Chart.yaml | 2 +- deploy/machine/templates/baremetalhost.yaml | 1 + deploy/machine/values.yaml | 3 +++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/deploy/machine/Chart.yaml b/deploy/machine/Chart.yaml index cccac12..8991b24 100644 --- a/deploy/machine/Chart.yaml +++ b/deploy/machine/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: machine -version: 0.1.0 +version: 0.1.1 description: A Metal3 BareMetalHost type: application sources: diff --git a/deploy/machine/templates/baremetalhost.yaml b/deploy/machine/templates/baremetalhost.yaml index bf7d4a0..b5ebeb7 100644 --- a/deploy/machine/templates/baremetalhost.yaml +++ b/deploy/machine/templates/baremetalhost.yaml @@ -44,6 +44,7 @@ spec: bmc: address: {{ .Values.bmcAddress }} credentialsName: {{ .Values.machineName }}-bmc-secret + disableCertificateVerification: {{ .Values.bmcDisableCertificateVerification }} {{- if .Values.networks }} networkData: name: {{ .Values.machineName }}-network-data diff --git a/deploy/machine/values.yaml b/deploy/machine/values.yaml index 050fa61..798d3db 100644 --- a/deploy/machine/values.yaml +++ b/deploy/machine/values.yaml @@ -14,6 +14,9 @@ bmcUsername: admin # bmcPassword is the password used to access the machine's bare metal # controller. bmcPassword: password +# bmcDisableCertificateVerification skips certificate verification +# when connecting to the machine's bare metal controller. +bmcDisableCertificateVerification: false # bootMACAddress is the MAC address of the NIC that will PXE boot. # This is only required when using virtual machines. -- 2.16.6