Skip to content
This repository was archived by the owner on Nov 25, 2024. It is now read-only.

Commit 152626c

Browse files
authored
Helm chart - Add configuration for image pull secrets (#3428)
This minor change should allow the use of private container images with this chart by specifying image pull secrets. ### Pull Request Checklist <!-- Please read https://matrix-org.github.io/dendrite/development/contributing before submitting your pull request --> * [x] I have added Go unit tests or [Complement integration tests](https://github.com/matrix-org/complement) for this PR _or_ I have justified why this PR doesn't need tests * [x] Pull request includes a [sign off below using a legally identifiable name](https://matrix-org.github.io/dendrite/development/contributing#sign-off) _or_ I have already signed off privately Signed-off-by: `Rhea Danzey <rdanzey@element.io>` --------- Signed-off-by: Rhea Danzey <rdanzey@element.io>
1 parent 3530d29 commit 152626c

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

Diff for: helm/dendrite/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: dendrite
3-
version: "0.14.2"
3+
version: "0.14.3"
44
appVersion: "0.13.8"
55
description: Dendrite Matrix Homeserver
66
type: application

Diff for: helm/dendrite/templates/deployment.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -110,3 +110,7 @@ spec:
110110
httpGet:
111111
path: /_dendrite/monitor/up
112112
port: http
113+
imagePullSecrets:
114+
{{- with .Values.imagePullSecrets }}
115+
{{ . | toYaml | nindent 6 }}
116+
{{- end }}

Diff for: helm/dendrite/values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ image:
66
# -- Overrides the image tag whose default is the chart appVersion.
77
tag: ""
88

9+
# -- Configure image pull secrets to use private container registry
10+
# https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry/#create-a-pod-that-uses-your-secret
11+
imagePullSecrets: []
12+
# - name: your-pull-secret-name
913

1014
# signing key to use
1115
signing_key:

0 commit comments

Comments
 (0)