This commit is contained in:
2024-05-12 12:03:32 +02:00
parent 599d175f82
commit 2890064fd4
191 changed files with 893 additions and 1068 deletions

View File

@@ -1,5 +1,5 @@
locals {
haraka-labels = merge(local.common-labels, {
haraka-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "haraka"
})
}

View File

@@ -1,5 +1,5 @@
locals {
mongo-labels = merge(local.common-labels, {
mongo-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "mongo"
})
}

View File

@@ -1,5 +1,5 @@
locals {
redis-labels = merge(local.common-labels, {
redis-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "redis"
})
}

View File

@@ -1,5 +1,5 @@
locals {
rspamd-labels = merge(local.common-labels, {
rspamd-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "rspamd"
})
}

View File

@@ -1,5 +1,5 @@
locals {
scimgateway-labels = merge(local.common-labels, {
scimgateway-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "scimgateway"
})
}

View File

@@ -6,7 +6,7 @@ resource "kubectl_manifest" "wildduck_secret" {
metadata:
name: "${var.instance}"
namespace: "${var.namespace}"
labels: ${jsonencode(local.common-labels)}
labels: ${jsonencode(local.common_labels)}
spec:
forceRegenerate: false
fields:

View File

@@ -1,5 +1,5 @@
locals {
webmail-labels = merge(local.common-labels, {
webmail-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "webmail"
})
}

View File

@@ -1,5 +1,5 @@
locals {
wildduck-labels = merge(local.common-labels, {
wildduck-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "wildduck"
})
}

View File

@@ -1,5 +1,5 @@
locals {
zonemta-labels = merge(local.common-labels, {
zonemta-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "zonemta"
})
}