aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--helm/dendrite/Chart.yaml4
-rw-r--r--helm/dendrite/templates/_helpers.tpl4
-rw-r--r--helm/dendrite/templates/deployment.yaml4
-rw-r--r--helm/dendrite/templates/jobs.yaml3
-rw-r--r--helm/dendrite/templates/service.yaml2
-rw-r--r--helm/dendrite/values.yaml6
6 files changed, 14 insertions, 9 deletions
diff --git a/helm/dendrite/Chart.yaml b/helm/dendrite/Chart.yaml
index 15d1e6d1..6e6641c8 100644
--- a/helm/dendrite/Chart.yaml
+++ b/helm/dendrite/Chart.yaml
@@ -1,7 +1,7 @@
apiVersion: v2
name: dendrite
-version: "0.10.8"
-appVersion: "0.10.8"
+version: "0.10.9"
+appVersion: "0.10.9"
description: Dendrite Matrix Homeserver
type: application
keywords:
diff --git a/helm/dendrite/templates/_helpers.tpl b/helm/dendrite/templates/_helpers.tpl
index 291f351b..02670658 100644
--- a/helm/dendrite/templates/_helpers.tpl
+++ b/helm/dendrite/templates/_helpers.tpl
@@ -15,9 +15,11 @@
{{- define "image.name" -}}
-image: {{ .name }}
+{{- with .Values.image -}}
+image: {{ .repository }}:{{ .tag | default (printf "v%s" $.Chart.AppVersion) }}
imagePullPolicy: {{ .pullPolicy }}
{{- end -}}
+{{- end -}}
{{/*
Expand the name of the chart.
diff --git a/helm/dendrite/templates/deployment.yaml b/helm/dendrite/templates/deployment.yaml
index 629ffe52..b463c7d0 100644
--- a/helm/dendrite/templates/deployment.yaml
+++ b/helm/dendrite/templates/deployment.yaml
@@ -45,8 +45,8 @@ spec:
persistentVolumeClaim:
claimName: {{ default (print ( include "dendrite.fullname" . ) "-search-pvc") $.Values.persistence.search.existingClaim | quote }}
containers:
- - name: {{ $.Chart.Name }}
- {{- include "image.name" $.Values.image | nindent 8 }}
+ - name: {{ .Chart.Name }}
+ {{- include "image.name" . | nindent 8 }}
args:
- '--config'
- '/etc/dendrite/dendrite.yaml'
diff --git a/helm/dendrite/templates/jobs.yaml b/helm/dendrite/templates/jobs.yaml
index 76915694..c10f358b 100644
--- a/helm/dendrite/templates/jobs.yaml
+++ b/helm/dendrite/templates/jobs.yaml
@@ -8,6 +8,7 @@ metadata:
name: {{ $name }}
labels:
app.kubernetes.io/component: signingkey-job
+ {{- include "dendrite.labels" . | nindent 4 }}
---
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
@@ -80,7 +81,7 @@ spec:
name: signing-key
readOnly: true
- name: generate-key
- {{- include "image.name" $.Values.image | nindent 8 }}
+ {{- include "image.name" . | nindent 8 }}
command:
- sh
- -c
diff --git a/helm/dendrite/templates/service.yaml b/helm/dendrite/templates/service.yaml
index 365a43f0..3b571df1 100644
--- a/helm/dendrite/templates/service.yaml
+++ b/helm/dendrite/templates/service.yaml
@@ -13,5 +13,5 @@ spec:
ports:
- name: http
protocol: TCP
- port: 8008
+ port: {{ .Values.service.port }}
targetPort: 8008 \ No newline at end of file
diff --git a/helm/dendrite/values.yaml b/helm/dendrite/values.yaml
index 2c6e8094..87027a88 100644
--- a/helm/dendrite/values.yaml
+++ b/helm/dendrite/values.yaml
@@ -1,8 +1,10 @@
image:
# -- Docker repository/image to use
- name: "ghcr.io/matrix-org/dendrite-monolith:v0.10.8"
+ repository: "ghcr.io/matrix-org/dendrite-monolith"
# -- Kubernetes pullPolicy
pullPolicy: IfNotPresent
+ # Overrides the image tag whose default is the chart appVersion.
+ tag: ""
# signing key to use
@@ -345,4 +347,4 @@ ingress:
service:
type: ClusterIP
- port: 80
+ port: 8008