diff --git a/Chart.yaml b/Chart.yaml index 121ebbe..cbbea80 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -2,5 +2,5 @@ apiVersion: 'v2' name: 'media-servarr-base' description: 'Base chart for media-servarr charts' type: 'application' -version: 0.6.0 +version: 0.7.0 icon: 'https://github.com/drinkataco/media-servarr/blob/main/icon.png' diff --git a/templates/serviceaccount.yaml b/templates/serviceaccount.yaml index 61137a2..60eed89 100644 --- a/templates/serviceaccount.yaml +++ b/templates/serviceaccount.yaml @@ -13,6 +13,10 @@ metadata: annotations: {{- toYaml . | nindent 4 }} {{- end }} +imagePullSecrets: + {{- range .Values.serviceAccount.imagePullSecrets }} + - name: '{{ .name }}' + {{- end }} automountServiceAccountToken: {{ .Values.serviceAccount.automount }} {{- end }} {{- end }} diff --git a/values.yaml b/values.yaml index 538e8e5..46e21ef 100644 --- a/values.yaml +++ b/values.yaml @@ -119,6 +119,8 @@ serviceAccount: # The name of the service account to use. # If not set and create is true, a name is generated using the fullname template name: 'default' + # imagePullSecrets for private repositories. + imagePullSecrets: {} service: type: 'ClusterIP'