Configure a matrix database Configure Dendrite into Kubernetes Update vps configuration to new settings
22 lines
439 B
YAML
22 lines
439 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: dendrite-ingress
|
|
annotations:
|
|
ingressClassName: traefik
|
|
spec:
|
|
rules:
|
|
- &host
|
|
host: matrix.kubernetes
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: dendrite
|
|
port:
|
|
number: 8008
|
|
- <<: *host
|
|
host: matrix.thehellings.com
|