From: Kuralamudhan Ramakrishnan Date: Tue, 15 Feb 2022 17:59:08 +0000 (+0000) Subject: Merge "Add bmcDisableCertificateVerification to chart" X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=commitdiff_plain;h=50b3ce56a980a97e69762fc2b4341f6fffe4df73;hp=275eecaa965404bb60bc47b469388276076acf8f;p=icn.git Merge "Add bmcDisableCertificateVerification to chart" --- 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.