set coturn build
This commit is contained in:
parent
c590243a2f
commit
6747120629
|
|
@ -1,5 +1,2 @@
|
||||||
controller:
|
controller:
|
||||||
sslRedirect: false
|
hostNetwork: true
|
||||||
hostNetwork: true
|
|
||||||
daemonset:
|
|
||||||
useHostPort: true
|
|
||||||
|
|
@ -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
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue