Skip to content

Commit

Permalink
chore(tf): update cluster labels for argocd clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
incubator4 committed Jul 27, 2024
1 parent afb0021 commit ee1c7be
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions cluster.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@ resource "argocd_cluster" "dev" {

metadata {
labels = {
"env" = "dev"
"tenant" = "1"
"env" = "dev"
"provider" = "gcp"
"cluster-type" = "gke-standard"
"tenant" = "1"
}
}

Expand All @@ -29,8 +31,10 @@ resource "argocd_cluster" "prod" {

metadata {
labels = {
"env" = "prod"
"tenant" = "2"
"env" = "prod"
"provider" = "gcp"
"cluster-type" = "gke-standard"
"tenant" = "2"
}
}

Expand All @@ -54,8 +58,10 @@ resource "argocd_cluster" "ops" {

metadata {
labels = {
"env" = "ops"
"tenant" = "0"
"env" = "ops"
"provider" = "gcp"
"cluster-type" = "gke-autopilot"
"tenant" = "0"
}
}

Expand Down

0 comments on commit ee1c7be

Please sign in to comment.