Skip to content

Commit

Permalink
Merge pull request #30 from ikogan/main
Browse files Browse the repository at this point in the history
Add ability to set imagePullSecrets.
  • Loading branch information
BeryJu committed Oct 11, 2021
2 parents b4911f0 + df7e672 commit 5eea053
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/authentik/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ keywords:
- ldap
- idp
- sp
version: 3.0.0
version: 3.0.1
appVersion: 2021.9.1
icon: https://raw.githubusercontent.com/BeryJu/authentik/master/web/icons/icon.svg
maintainers:
Expand Down
1 change: 1 addition & 0 deletions charts/authentik/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ redis:
| geoip.image | string | `"maxmindinc/geoipupdate:v4.8"` | |
| geoip.licenseKey | string | `""` | sign up under https://www.maxmind.com/en/geolite2/signup |
| geoip.updateInterval | int | `8` | number of hours between update runs |
| imagePullSecrets | object | `{}` |
| image.pullPolicy | string | `"IfNotPresent"` | |
| image.repository | string | `"ghcr.io/goauthentik/server"` | |
| image.tag | string | `"2021.9.1"` | |
Expand Down
4 changes: 4 additions & 0 deletions charts/authentik/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ spec:
{{- include "common.labels.selectorLabels" $ | nindent 8 }}
app.kubernetes.io/component: "{{ . }}"
spec:
{{- if $.Values.image.pullSecrets }}
imagePullSecrets:
{{- toYaml $.Values.image.pullSecrets | nindent 8 }}
{{- end }}
{{- if $.Values.serviceAccount.create }}
serviceAccountName: {{ include "common.names.fullname" $ }}
{{- end }}
Expand Down
1 change: 1 addition & 0 deletions charts/authentik/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ image:
repository: ghcr.io/goauthentik/server
tag: 2021.9.1
pullPolicy: IfNotPresent
pullSecrets: []

ingress:
enabled: false
Expand Down

0 comments on commit 5eea053

Please sign in to comment.