50 lines
1.2 KiB
YAML
50 lines
1.2 KiB
YAML
---
|
|
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: {{ .Release.Name }}-matrix-element-web
|
|
spec:
|
|
selector:
|
|
matchLabels:
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: matrix-element-web
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: matrix-element-web
|
|
spec:
|
|
containers:
|
|
- name: element-web
|
|
image: vectorim/element-web:{{ .Values.elementWebVersion }}
|
|
ports:
|
|
- containerPort: 80
|
|
---
|
|
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ .Release.Name }}-element-web
|
|
labels:
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: matrix-element-web
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
# Required for letsencrypt
|
|
- port: 80
|
|
name: http
|
|
selector:
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: matrix-element-web
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ .Release.Name }}-element-web
|
|
labels:
|
|
app.kubernetes.io/instance: {{ .Release.Name }}
|
|
app.kubernetes.io/component: matrix-element-web
|
|
data:
|
|
{{ tpl (.Files.Get "element-web/nginx-default.conf") . | indent 8 }}
|