Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions deploy/charts/version-checker/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@ spec:
volumeMounts:
{{- toYaml . | nindent 10 }}
{{- end }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.imagePullSecrets | indent 2 }}
{{- end }}
{{- with .Values.podSecurityContext }}
securityContext:
{{- toYaml . | nindent 8 }}
Expand Down
5 changes: 3 additions & 2 deletions deploy/charts/version-checker/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ nameOverride: ""
# -- Replica Count for version-checker
replicaCount: 1

# -- Pull secrects - names of existing secrets
imagePullSecrets: []

# -- Additional Labels to apply to Service and Deployment/Pod Objects
additionalLabels: {}
# -- Additional Annotations to apply to Service and Deployment/Pod Objects
Expand All @@ -20,8 +23,6 @@ image:
tag: ""
# -- Set the Image Pull Policy
pullPolicy: IfNotPresent
# -- Pull secrects - name of existing secret
imagePullSecret:

# -- Configure tolerations
tolerations: []
Expand Down
Loading