Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
Signed-off-by: Tom Billiet <[email protected]>
  • Loading branch information
TomBillietKlarrio committed Dec 14, 2023
1 parent ea48b8c commit fbb7e87
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions charts/zookeeper/templates/post-install-upgrade-hooks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ roleRef:

apiVersion: v1
kind: ServiceAccount
{{- if .Values.global.imagePullSecrets }}
{{- if or .Values.global.imagePullSecrets .Values.serviceAccount.imagePullSecrets }}
imagePullSecrets:
{{- range .Values.global.imagePullSecrets }}
{{- range (default .Values.global.imagePullSecrets .Values.serviceAccount.imagePullSecrets) }}
- name: {{ . }}
{{- end }}
{{- end }}
Expand Down
10 changes: 5 additions & 5 deletions charts/zookeeper/values.yaml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
replicas: 3
maxUnavailableReplicas:

global:
# Lists the secrets you need to use to pull zookeeper image from a private registry.
imagePullSecrets: []
# - private-registry-key

image:
repository: pravega/zookeeper
tag: 0.2.15
pullPolicy: IfNotPresent

triggerRollingRestart: false

global:
# Lists the secrets you need to use to pull zookeeper image from a private registry.
imagePullSecrets: []
# - private-registry-key

domainName:
labels: {}
ports: []
Expand Down

0 comments on commit fbb7e87

Please sign in to comment.