forked from public/stack
k/website: add matrix wellknown
This commit is contained in:
parent
276bfdcd7a
commit
c6c722a6c1
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"m.homeserver": {
|
||||||
|
"base_url": "https://distrust.ems.host"
|
||||||
|
},
|
||||||
|
"m.identity_server": {
|
||||||
|
"base_url": "https://vector.im"
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"m.server": "distrust.ems.host:443"
|
||||||
|
}
|
|
@ -19,6 +19,13 @@ spec:
|
||||||
name: wellknown-openpgp
|
name: wellknown-openpgp
|
||||||
port:
|
port:
|
||||||
number: 80
|
number: 80
|
||||||
|
- path: /.well-known/matrix
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: wellknown-matrix
|
||||||
|
port:
|
||||||
|
number: 80
|
||||||
- path: /
|
- path: /
|
||||||
pathType: Prefix
|
pathType: Prefix
|
||||||
backend:
|
backend:
|
||||||
|
|
|
@ -10,3 +10,7 @@ configMapGenerator:
|
||||||
- name: openpgp-keys
|
- name: openpgp-keys
|
||||||
files:
|
files:
|
||||||
- keys/88823A75ECAA786B0FF38B148E401478A3FBEF72.asc
|
- keys/88823A75ECAA786B0FF38B148E401478A3FBEF72.asc
|
||||||
|
- name: wellknown-matrix
|
||||||
|
files:
|
||||||
|
- files/matrix/client
|
||||||
|
- files/matrix/server
|
||||||
|
|
|
@ -42,6 +42,50 @@ spec:
|
||||||
configMap:
|
configMap:
|
||||||
name: openpgp-keys
|
name: openpgp-keys
|
||||||
---
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: wellknown-matrix
|
||||||
|
spec:
|
||||||
|
replicas: 2
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: wellknown-matrix
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: wellknown-matrix
|
||||||
|
spec:
|
||||||
|
initContainers:
|
||||||
|
- name: copy-files
|
||||||
|
image: nginx
|
||||||
|
command: ["sh"]
|
||||||
|
args:
|
||||||
|
- -c
|
||||||
|
- |-
|
||||||
|
mkdir -p /output/.well-known/matrix
|
||||||
|
cp /input/client /output/.well-known/matrix
|
||||||
|
cp /input/server /output/.well-known/matrix
|
||||||
|
volumeMounts:
|
||||||
|
- name: data
|
||||||
|
mountPath: /output
|
||||||
|
- name: wellknown
|
||||||
|
mountPath: /input
|
||||||
|
containers:
|
||||||
|
- name: wellknown-openpgp
|
||||||
|
image: nginx
|
||||||
|
ports:
|
||||||
|
- containerPort: 80
|
||||||
|
volumeMounts:
|
||||||
|
- name: data
|
||||||
|
mountPath: /usr/share/nginx/html
|
||||||
|
volumes:
|
||||||
|
- name: data
|
||||||
|
emptyDir: {}
|
||||||
|
- name: wellknown
|
||||||
|
configMap:
|
||||||
|
name: wellknown-matrix
|
||||||
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
|
@ -53,3 +97,15 @@ spec:
|
||||||
targetPort: 80
|
targetPort: 80
|
||||||
selector:
|
selector:
|
||||||
app: wellknown-openpgp
|
app: wellknown-openpgp
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: wellknown-matrix
|
||||||
|
spec:
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 80
|
||||||
|
targetPort: 80
|
||||||
|
selector:
|
||||||
|
app: wellknown-matrix
|
||||||
|
|
Loading…
Reference in New Issue