Skip to content

Commit

Permalink
Merge pull request #12224 from richard-cox/2.8-reset-vsphere-credentials
Browse files Browse the repository at this point in the history
[2.8] Fix vsphere secret sync issues
  • Loading branch information
momesgin authored Oct 11, 2024
2 parents fb07626 + 66d95d2 commit 91a6c97
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion shell/utils/v-sphere.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ class VSphereUtils {
const { userValues, combined } = this.findChartValues(rke2Component, 'rancher-vsphere-cpi') || {};

if (!combined?.vCenter?.credentialsSecret?.generate) {
if (userValues?.vCenter?.username) {
userValues.vCenter.username = '';
}
if (userValues?.vCenter?.password) {
userValues.vCenter.password = '';
}

return;
}

Expand Down Expand Up @@ -167,6 +174,13 @@ class VSphereUtils {
const { userValues, combined } = this.findChartValues(rke2Component, 'rancher-vsphere-csi') || {};

if (!combined?.vCenter?.configSecret?.generate) {
if (userValues?.vCenter?.username) {
userValues.vCenter.username = '';
}
if (userValues?.vCenter?.password) {
userValues.vCenter.password = '';
}

return;
}

Expand All @@ -181,7 +195,7 @@ class VSphereUtils {

// This is a copy of https://github.com/rancher/vsphere-charts/blob/a5c99d716df960dc50cf417d9ecffad6b55ca0ad/charts/rancher-vsphere-csi/values.yaml#L12-L21
// Which makes it's way into the secret via https://github.com/rancher/vsphere-charts/blob/main/charts/rancher-vsphere-csi/templates/secret.yaml#L8
let configTemplateString = ' |\n [Global]\n cluster-id = {{ required \".Values.vCenter.clusterId must be provided\" (default .Values.vCenter.clusterId .Values.global.cattle.clusterId) | quote }}\n user = {{ .Values.vCenter.username | quote }}\n password = {{ .Values.vCenter.password | quote }}\n port = {{ .Values.vCenter.port | quote }}\n insecure-flag = {{ .Values.vCenter.insecureFlag | quote }}\n\n [VirtualCenter {{ .Values.vCenter.host | quote }}]\n datacenters = {{ .Values.vCenter.datacenters | quote }}';
let configTemplateString = ' [Global]\n cluster-id = {{ required \".Values.vCenter.clusterId must be provided\" (default .Values.vCenter.clusterId .Values.global.cattle.clusterId) | quote }}\n user = {{ .Values.vCenter.username | quote }}\n password = {{ .Values.vCenter.password | quote }}\n port = {{ .Values.vCenter.port | quote }}\n insecure-flag = {{ .Values.vCenter.insecureFlag | quote }}\n\n [VirtualCenter {{ .Values.vCenter.host | quote }}]\n datacenters = {{ .Values.vCenter.datacenters | quote }}';

configTemplateString = configTemplateString.replace('{{ required \".Values.vCenter.clusterId must be provided\" (default .Values.vCenter.clusterId .Values.global.cattle.clusterId) | quote }}', `"{{clusterId}}"`);
configTemplateString = configTemplateString.replace('{{ .Values.vCenter.username | quote }}', `"${ username }"`);
Expand Down

0 comments on commit 91a6c97

Please sign in to comment.