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,7 +1,7 @@
locals {
authentik_url = "http://authentik.${var.domain}-auth.svc"
authentik_token = data.kubernetes_secret_v1.authentik.data["AUTHENTIK_BOOTSTRAP_TOKEN"]
directus-labels = merge(local.common-labels, {
directus-labels = merge(local.common_labels, {
"app.kubernetes.io/component" = "directus"
})
directus-icon = "admin/img/directus-white.png"
@@ -87,7 +87,7 @@ resource "kubectl_manifest" "directus_pvc" {
metadata:
name: "${var.instance}-${var.component}-directus"
namespace: "${var.namespace}"
labels: ${jsonencode(local.common-labels)}
labels: ${jsonencode(local.common_labels)}
spec:
accessModes:
- "${var.extentions.directus.storage.accessMode}"