From: Todd Malsbary Date: Mon, 7 Feb 2022 21:06:17 +0000 (-0800) Subject: Add bmcDisableCertificateVerification to chart X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=bcee4e738ce66b69957abb987dda40032264e6f7;p=icn.git Add bmcDisableCertificateVerification to chart Signed-off-by: Todd Malsbary Change-Id: Ic64885d190479ef9b1a02f3035183f82a7014a3f --- 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.