add k8s-dashboard to istio [ci skip]

This commit is contained in:
Viktor Barzin 2024-01-08 21:06:39 +00:00
parent 85d0800d1d
commit 243b1736c5

View file

@ -19,6 +19,14 @@ resource "random_password" "csrf_token" {
# "--auto-generate-certificates",
# "--token-ttl=0"
# ])
resource "kubernetes_namespace" "k8s-dashboard" {
metadata {
name = "kubernetes-dashboard"
labels = {
"istio-injection" : "enabled"
}
}
}
# }
module "tls_secret" {