Skip to content

Commit

Permalink
fix charts
Browse files Browse the repository at this point in the history
fix charts
  • Loading branch information
guozhi.li committed Nov 16, 2023
1 parent 377fa02 commit 862e5fc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
9 changes: 7 additions & 2 deletions helm/operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ operator:
# An array of `Volumes <https://kubernetes.io/docs/concepts/storage/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.
#
Expand All @@ -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 <https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/>`__ to apply to Operator pods.
#
Expand Down
2 changes: 1 addition & 1 deletion resources/base/console-ui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
7 changes: 7 additions & 0 deletions resources/base/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 862e5fc

Please sign in to comment.