add tier to all deployments [ci skip]
This commit is contained in:
parent
20cd480988
commit
8abb8eddc0
95 changed files with 794 additions and 118 deletions
|
|
@ -1,5 +1,6 @@
|
|||
|
||||
variable "tls_secret_name" {}
|
||||
variable "tier" { type = string }
|
||||
variable "headscale_config" {}
|
||||
variable "headscale_acl" {}
|
||||
|
||||
|
|
@ -20,7 +21,8 @@ resource "kubernetes_deployment" "headscale" {
|
|||
name = "headscale"
|
||||
namespace = kubernetes_namespace.headscale.metadata[0].name
|
||||
labels = {
|
||||
app = "headscale"
|
||||
app = "headscale"
|
||||
tier = var.tier
|
||||
# scare to try but probably non-http will fail
|
||||
# "istio-injection" : "enabled"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue