We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32f5c2e commit 10114d1Copy full SHA for 10114d1
3 files changed
charts/element-call/Chart.yaml
@@ -1,5 +1,6 @@
1
apiVersion: v2
2
name: element-call
3
-version: 0.0.4
+version: 0.1.0
4
+appVersion: v0.16.3
5
sources:
6
- https://github.com/element-hq/element-call
charts/element-call/templates/deployment.yaml
@@ -25,7 +25,7 @@ spec:
25
spec:
26
containers:
27
- name: element-call
28
- image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}"
+ image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
29
imagePullPolicy: {{ .Values.image.pullPolicy }}
30
ports:
31
- name: http
charts/element-call/values.yaml
@@ -2,7 +2,7 @@ image:
registry: ghcr.io
repository: element-hq/element-call
pullPolicy: IfNotPresent
- tag: v0.16.1
+ tag: ""
7
ingress:
8
enabled: false
0 commit comments