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

@@ -57,7 +57,7 @@ resource "kubernetes_namespace_v1" "files-ns" {
count = var.nextcloud.enable ? 1 : 0
metadata {
annotations = merge(local.annotations, local.annotations_default)
labels = merge(local.common-labels, local.annotations)
labels = merge(local.common_labels, local.annotations)
name = "${var.namespace}-files"
}
}
@@ -71,7 +71,7 @@ resource "kubectl_manifest" "nextcloud" {
metadata:
name: "nextcloud"
namespace: "${kubernetes_namespace_v1.files-ns[0].metadata[0].name}"
labels: ${jsonencode(local.common-labels)}
labels: ${jsonencode(local.common_labels)}
spec:
distrib: "${var.distributions.domain}"
category: "apps"