Skip to content

Commit

Permalink
Merge pull request #19 from ekarlso/support-pullsecrets
Browse files Browse the repository at this point in the history
Add support for pullSecrets
  • Loading branch information
Licenser authored May 30, 2023
2 parents 3f87658 + a7674aa commit cd36455
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/tremor/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ appVersion: "1.0"
description: "Chart to deploy a tremor instance"
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/tremor/horizontal/color/tremor-horizontal-color.png
name: "tremor"
version: "0.13.0-rc.12"
version: "0.13.0-rc.12-1"
maintainers:
- name: tremor-rs
3 changes: 3 additions & 0 deletions charts/tremor/templates/daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ spec:
{{- end }}
{{- end }}
spec:
{{- with .Values.image.pullSecrets }}
imagePullSecrets: {{ . }}
{{- end }}
serviceAccountName: {{ template "tremor.fullname" . }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
Expand Down
3 changes: 3 additions & 0 deletions charts/tremor/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ spec:
{{- end }}
{{- end }}
spec:
{{- with .Values.image.pullSecrets }}
imagePullSecrets: {{ . }}
{{- end }}
serviceAccount: {{ template "tremor.fullname" . }}
{{- if .Values.priorityClassName }}
priorityClassName: {{ .Values.priorityClassName | quote }}
Expand Down
9 changes: 5 additions & 4 deletions charts/tremor/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,11 @@ files:
deploy flow main
fullnameOverride: ''
fullnameOverride: ""

image:
pullPolicy: IfNotPresent
pullSecrets: []
repository: tremorproject/tremor
tag: 0.13.0-rc.12

Expand Down Expand Up @@ -112,7 +113,7 @@ startupProbe: []
# successThreshold: 1
# timeoutSeconds: 2

nameOverride: ''
nameOverride: ""

nodeSelector: {}

Expand All @@ -121,7 +122,7 @@ podAnnotations: {}

ports: {}

priorityClassName: ''
priorityClassName: ""

psp:
allowedCapabilities: {}
Expand Down Expand Up @@ -156,7 +157,7 @@ service:

serviceAccount:
create: true
name: ''
name: ""

tolerations: {}
# - effect: NoSchedule
Expand Down

0 comments on commit cd36455

Please sign in to comment.