diff --git a/helm/operator/values.yaml b/helm/operator/values.yaml index d4de44ab97a..6b23b1397c1 100644 --- a/helm/operator/values.yaml +++ b/helm/operator/values.yaml @@ -94,7 +94,9 @@ operator: # An array of `Volumes `__ which the Operator can mount to pods. # # The volumes must exist *and* be accessible to the Operator pods. - volumes: [ ] + volumes: + - name: tmp + emptyDir: {} ### # An array of volume mount points associated to each Operator container. # @@ -107,7 +109,10 @@ operator: # mountPath: /path/to/mount # # The ``name`` field must correspond to an entry in the ``volumes`` array. - volumeMounts: [ ] + volumeMounts: + - name: tmp + readOnly: false + mountPath: /tmp ### # Any `Node Selectors `__ to apply to Operator pods. # diff --git a/resources/base/console-ui.yaml b/resources/base/console-ui.yaml index 7688b48d67d..1a26c28e7f0 100644 --- a/resources/base/console-ui.yaml +++ b/resources/base/console-ui.yaml @@ -322,6 +322,6 @@ spec: path: CAs/tls.crt - key: tls.key path: tls.key - name: operator-console-tls + name: console-tls optional: true serviceAccountName: console-sa diff --git a/resources/base/deployment.yaml b/resources/base/deployment.yaml index 38dc0179207..fa9b9db136b 100644 --- a/resources/base/deployment.yaml +++ b/resources/base/deployment.yaml @@ -41,6 +41,13 @@ spec: value: "off" - name: OPERATOR_STS_ENABLED value: "on" + volumeMounts: + - name: tmp + readOnly: false + mountPath: /tmp + volumes: + - name: tmp + emptyDir: {} affinity: podAntiAffinity: requiredDuringSchedulingIgnoredDuringExecution: