set coturn build

This commit is contained in:
Victor Barba Martin 2021-07-13 19:06:50 +02:00
parent c590243a2f
commit 6747120629
2 changed files with 22 additions and 13 deletions

View File

@ -1,5 +1,2 @@
controller: controller:
sslRedirect: false hostNetwork: true
hostNetwork: true
daemonset:
useHostPort: true

View File

@ -1,11 +1,23 @@
resource "linode_lke_cluster" "my-cluster" { resource "linode_lke_cluster" "my-cluster" {
label = "video-cluster" label = "video-cluster"
k8s_version = "1.21" k8s_version = "1.21"
region = "us-central" region = "us-central"
tags = ["staging"] tags = ["staging"]
pool { pool {
type = "g6-standard-2" type = "g6-standard-2"
count = 3 count = 3
} }
}
# WebRTC-BE pool
pool {
type = "g6-standard-2"
count = 3
}
# Coturn pool
pool {
type = "g6-standard-2"
count = 3
}
}