From 0df0304dd78b133b88b26b122c2edccf1f4ec132 Mon Sep 17 00:00:00 2001 From: Jacob See <5027680+jacobsee@users.noreply.github.com> Date: Thu, 10 Jul 2025 10:56:32 -0700 Subject: [PATCH 1/2] Add mounted temp dir so that the operator can write temp files, since the container fs is readonly. --- manifests/07-operator.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/07-operator.yaml b/manifests/07-operator.yaml index 82d03645c2..ce647a5a38 100644 --- a/manifests/07-operator.yaml +++ b/manifests/07-operator.yaml @@ -66,6 +66,8 @@ spec: name: serving-cert - mountPath: /etc/pki/ca-trust/extracted/pem name: trusted-ca + - mountPath: /tmp + name: temp-dir env: - name: CONSOLE_IMAGE value: registry.svc.ci.openshift.org/openshift:console @@ -107,3 +109,5 @@ spec: items: - key: ca-bundle.crt path: tls-ca-bundle.pem + - name: temp-dir + emptyDir: {} From 2062d34ef4ae6b9f398d10e83f45a3ce57562624 Mon Sep 17 00:00:00 2001 From: Jacob See <5027680+jacobsee@users.noreply.github.com> Date: Tue, 22 Jul 2025 14:10:17 -0700 Subject: [PATCH 2/2] make update --- manifests/07-operator-ibm-cloud-managed.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/manifests/07-operator-ibm-cloud-managed.yaml b/manifests/07-operator-ibm-cloud-managed.yaml index eabfb01e16..634450ca23 100644 --- a/manifests/07-operator-ibm-cloud-managed.yaml +++ b/manifests/07-operator-ibm-cloud-managed.yaml @@ -75,6 +75,8 @@ spec: name: serving-cert - mountPath: /etc/pki/ca-trust/extracted/pem name: trusted-ca + - mountPath: /tmp + name: temp-dir priorityClassName: system-cluster-critical securityContext: runAsNonRoot: true @@ -107,3 +109,5 @@ spec: path: tls-ca-bundle.pem name: trusted-ca name: trusted-ca + - emptyDir: {} + name: temp-dir