Merge "Add bmcDisableCertificateVerification to chart"
authorKuralamudhan Ramakrishnan <kuralamudhan.ramakrishnan@intel.com>
Tue, 15 Feb 2022 17:59:08 +0000 (17:59 +0000)
committerGerrit Code Review <gerrit@akraino.org>
Tue, 15 Feb 2022 17:59:08 +0000 (17:59 +0000)
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.