From 5a2ede28092fdf072a9f32ee9bc1435e21bc37ab Mon Sep 17 00:00:00 2001 From: Victor Barba Martin Date: Tue, 9 Nov 2021 15:50:48 +0100 Subject: [PATCH] add coturn ingress --- k8s/coturn/ingress.yml | 18 ------------------ k8s/coturn/service.yml | 15 --------------- 2 files changed, 33 deletions(-) delete mode 100644 k8s/coturn/ingress.yml delete mode 100644 k8s/coturn/service.yml diff --git a/k8s/coturn/ingress.yml b/k8s/coturn/ingress.yml deleted file mode 100644 index b1e91b6..0000000 --- a/k8s/coturn/ingress.yml +++ /dev/null @@ -1,18 +0,0 @@ -apiVersion: networking.k8s.io/v1beta1 -kind: Ingress -metadata: - name: coturn -spec: - ingressClassName: haproxy - rules: - - host: &host coturn.staging.video.jamkazam.com - http: - paths: - - backend: - serviceName: coturn-service - servicePort: 3478 - path: / - tls: - - secretName: coturn - hosts: - - *host \ No newline at end of file diff --git a/k8s/coturn/service.yml b/k8s/coturn/service.yml deleted file mode 100644 index 70d0757..0000000 --- a/k8s/coturn/service.yml +++ /dev/null @@ -1,15 +0,0 @@ -apiVersion: v1 -kind: Service -metadata: - name: coturn-service - labels: - app: coturn -spec: - type: NodePort - ports: - - name: http - port: 3478 - targetPort: http - protocol: TCP - selector: - app: coturn