From 68b3e27bc1d883cea0f12a7d33727a1ce226270c Mon Sep 17 00:00:00 2001 From: Chad Zimmerman <54250848+PrymalInstynct@users.noreply.github.com> Date: Sat, 25 Nov 2023 16:26:24 -0700 Subject: [PATCH] System Upgrade Controller install failed due to missing /etc/pki dir (#1043) * System Upgrade Controller install failed due to missing /etc/pki directoy on host * Update SUC helmrelease.yaml.j2 DirectoryOrCreate * Update cluster-prepare.yaml.j2 Back out Previous Change --- .../system-upgrade-controller/app/helmrelease.yaml.j2 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bootstrap/templates/addons/system-upgrade-controller/app/helmrelease.yaml.j2 b/bootstrap/templates/addons/system-upgrade-controller/app/helmrelease.yaml.j2 index cf057a4d16a..ad23d94c11d 100644 --- a/bootstrap/templates/addons/system-upgrade-controller/app/helmrelease.yaml.j2 +++ b/bootstrap/templates/addons/system-upgrade-controller/app/helmrelease.yaml.j2 @@ -83,21 +83,21 @@ spec: etc-ssl: type: hostPath hostPath: /etc/ssl - hostPathType: Directory + hostPathType: DirectoryOrCreate globalMounts: - path: /etc/ssl readOnly: true etc-pki: type: hostPath hostPath: /etc/pki - hostPathType: Directory + hostPathType: DirectoryOrCreate globalMounts: - path: /etc/pki readOnly: true etc-ca-certificates: type: hostPath hostPath: /etc/ca-certificates - hostPathType: Directory + hostPathType: DirectoryOrCreate globalMounts: - path: /etc/ca-certificates readOnly: true