fix svcs and ports for mrtc
This commit is contained in:
@@ -7,8 +7,14 @@ metadata:
|
|||||||
- resources-finalizer.argocd.argoproj.io
|
- resources-finalizer.argocd.argoproj.io
|
||||||
spec:
|
spec:
|
||||||
project: default
|
project: default
|
||||||
source:
|
sources:
|
||||||
repoURL: ghcr.io
|
- repoURL: http://gitea.gitea.svc.cluster.local:3000/admin/main.git
|
||||||
|
targetRevision: master
|
||||||
|
path: manifests/matrix-mrt0rtikize
|
||||||
|
directory:
|
||||||
|
recurse: true
|
||||||
|
include: "*.yaml"
|
||||||
|
- repoURL: ghcr.io
|
||||||
chart: element-hq/ess-helm/matrix-stack
|
chart: element-hq/ess-helm/matrix-stack
|
||||||
targetRevision: 26.6.1
|
targetRevision: 26.6.1
|
||||||
helm:
|
helm:
|
||||||
@@ -60,6 +66,18 @@ spec:
|
|||||||
matrixRTC:
|
matrixRTC:
|
||||||
ingress:
|
ingress:
|
||||||
host: mrtc.mrt0rtikize.ru
|
host: mrtc.mrt0rtikize.ru
|
||||||
|
sfu:
|
||||||
|
manualIP: "81.26.181.240"
|
||||||
|
useStunToDiscoverPublicIP: false
|
||||||
|
exposedServices:
|
||||||
|
rtcTcp:
|
||||||
|
port: 30009
|
||||||
|
portType: ClusterIP
|
||||||
|
nodePort: ""
|
||||||
|
rtcMuxedUdp:
|
||||||
|
port: 30008
|
||||||
|
portType: ClusterIP
|
||||||
|
nodePort: ""
|
||||||
|
|
||||||
hookshot:
|
hookshot:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
|||||||
@@ -31,6 +31,8 @@ spec:
|
|||||||
- "--metrics.prometheus=true"
|
- "--metrics.prometheus=true"
|
||||||
- "--metrics.prometheus.entrypoint=metrics"
|
- "--metrics.prometheus.entrypoint=metrics"
|
||||||
- "--entryPoints.ssh.address=:2222/tcp"
|
- "--entryPoints.ssh.address=:2222/tcp"
|
||||||
|
- "--entryPoints.rtc-tcp-mrt0rtikize.address=:30009/tcp"
|
||||||
|
- "--entryPoints.rtc-udp-mrt0rtikize.address=:30008/udp"
|
||||||
- "--providers.kubernetesingress.ingressclass=traefik"
|
- "--providers.kubernetesingress.ingressclass=traefik"
|
||||||
- "--providers.kubernetesingress.ingressendpoint.publishedservice=traefik/traefik"
|
- "--providers.kubernetesingress.ingressendpoint.publishedservice=traefik/traefik"
|
||||||
- "--accesslog=true"
|
- "--accesslog=true"
|
||||||
@@ -55,6 +57,18 @@ spec:
|
|||||||
protocol: TCP
|
protocol: TCP
|
||||||
expose:
|
expose:
|
||||||
default: true
|
default: true
|
||||||
|
rtc-tcp-mrt0rtikize:
|
||||||
|
port: 30009
|
||||||
|
exposedPort: 30009
|
||||||
|
protocol: TCP
|
||||||
|
expose:
|
||||||
|
default: true
|
||||||
|
rtc-udp-mrt0rtikize:
|
||||||
|
port: 30008
|
||||||
|
exposedPort: 30008
|
||||||
|
protocol: UDP
|
||||||
|
expose:
|
||||||
|
default: true
|
||||||
metrics:
|
metrics:
|
||||||
port: 9100
|
port: 9100
|
||||||
expose:
|
expose:
|
||||||
|
|||||||
13
manifests/matrix-mrt0rtikize/ingressroute-rtc-tcp.yaml
Normal file
13
manifests/matrix-mrt0rtikize/ingressroute-rtc-tcp.yaml
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRouteTCP
|
||||||
|
metadata:
|
||||||
|
name: rtc-tcp
|
||||||
|
namespace: matrix-mrt0rtikize
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- rtc-tcp-mrt0rtikize
|
||||||
|
routes:
|
||||||
|
- match: HostSNI(`*`)
|
||||||
|
services:
|
||||||
|
- name: matrix-mrt0rtikize-matrix-rtc-sfu-tcp
|
||||||
|
port: 30009
|
||||||
12
manifests/matrix-mrt0rtikize/ingressroute-rtc-udp.yaml
Normal file
12
manifests/matrix-mrt0rtikize/ingressroute-rtc-udp.yaml
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
apiVersion: traefik.io/v1alpha1
|
||||||
|
kind: IngressRouteUDP
|
||||||
|
metadata:
|
||||||
|
name: rtc-udp
|
||||||
|
namespace: matrix-mrt0rtikize
|
||||||
|
spec:
|
||||||
|
entryPoints:
|
||||||
|
- rtc-udp-mrt0rtikize
|
||||||
|
routes:
|
||||||
|
- services:
|
||||||
|
- name: matrix-mrt0rtikize-matrix-rtc-sfu-muxed-udp
|
||||||
|
port: 30008
|
||||||
Reference in New Issue
Block a user