Add bmcDisableCertificateVerification to chart 87/4687/1
authorTodd Malsbary <todd.malsbary@intel.com>
Mon, 7 Feb 2022 21:06:17 +0000 (13:06 -0800)
committerTodd Malsbary <todd.malsbary@intel.com>
Tue, 15 Feb 2022 16:38:34 +0000 (08:38 -0800)
Signed-off-by: Todd Malsbary <todd.malsbary@intel.com>
Change-Id: Ic64885d190479ef9b1a02f3035183f82a7014a3f

deploy/machine/Chart.yaml
deploy/machine/templates/baremetalhost.yaml
deploy/machine/values.yaml

index cccac12..8991b24 100644 (file)
@@ -1,6 +1,6 @@
 apiVersion: v2
 name: machine
-version: 0.1.0
+version: 0.1.1
 description: A Metal3 BareMetalHost
 type: application
 sources:
index bf7d4a0..b5ebeb7 100644 (file)
@@ -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
index 050fa61..798d3db 100644 (file)
@@ -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.