fix
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
haraka-labels = merge(local.common-labels, {
|
||||
haraka-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "haraka"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
mongo-labels = merge(local.common-labels, {
|
||||
mongo-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "mongo"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
redis-labels = merge(local.common-labels, {
|
||||
redis-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "redis"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
rspamd-labels = merge(local.common-labels, {
|
||||
rspamd-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "rspamd"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
scimgateway-labels = merge(local.common-labels, {
|
||||
scimgateway-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "scimgateway"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -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:
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
webmail-labels = merge(local.common-labels, {
|
||||
webmail-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "webmail"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
wildduck-labels = merge(local.common-labels, {
|
||||
wildduck-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "wildduck"
|
||||
})
|
||||
}
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
locals {
|
||||
zonemta-labels = merge(local.common-labels, {
|
||||
zonemta-labels = merge(local.common_labels, {
|
||||
"app.kubernetes.io/component" = "zonemta"
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user