diff --git a/k8s/haproxy/haproxy-ingress-values.yaml b/k8s/haproxy/haproxy-ingress-values.yaml index ee9f211..d856ee9 100644 --- a/k8s/haproxy/haproxy-ingress-values.yaml +++ b/k8s/haproxy/haproxy-ingress-values.yaml @@ -1,5 +1,2 @@ controller: - sslRedirect: false - hostNetwork: true - daemonset: - useHostPort: true \ No newline at end of file + hostNetwork: true \ No newline at end of file diff --git a/terraform/lke.tf b/terraform/lke.tf index 59a6dad..610d52b 100644 --- a/terraform/lke.tf +++ b/terraform/lke.tf @@ -1,11 +1,23 @@ resource "linode_lke_cluster" "my-cluster" { - label = "video-cluster" - k8s_version = "1.21" - region = "us-central" - tags = ["staging"] + label = "video-cluster" + k8s_version = "1.21" + region = "us-central" + tags = ["staging"] - pool { - type = "g6-standard-2" - count = 3 - } -} \ No newline at end of file + pool { + type = "g6-standard-2" + count = 3 + } + + # WebRTC-BE pool + pool { + type = "g6-standard-2" + count = 3 + } + # Coturn pool + pool { + type = "g6-standard-2" + count = 3 + } + +}