video-iac/terraform/lke.tf

55 lines
885 B
HCL

resource "linode_lke_cluster" "stg-video-cluster" {
label = "stg-video-cluster"
k8s_version = "1.21"
region = "us-central"
tags = ["staging"]
pool {
type = "g6-standard-2"
count = 6
autoscaler {
min = 3
max = 10
}
}
}
resource "local_file" "kubeconfig" {
filename = "stg-kubeconfig.yaml"
content = base64decode(linode_lke_cluster.stg-video-cluster.kubeconfig)
}
provider "kubernetes" {
config_path = local_file.kubeconfig.filename
}
resource "linode_lke_cluster" "prd-video-cluster" {
label = "prd-video-cluster"
k8s_version = "1.21"
region = "us-central"
tags = ["production"]
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
}
}