Fixing meta

This commit is contained in:
2024-05-12 13:44:20 +02:00
parent ed58ef54e1
commit 988497833f
141 changed files with 9443 additions and 7802 deletions

View File

@@ -0,0 +1,17 @@
resource "kubectl_manifest" "ConfigMap_whereabouts-config" {
yaml_body = <<-EOF
apiVersion: v1
kind: ConfigMap
metadata:
name: whereabouts-config
namespace: ${var.namespace}
annotations:
kubernetes.io/description: |
Configmap containing user customizable cronjob schedule
ownerReferences: ${jsonencode(var.install_owner)}
labels: ${jsonencode(local.common-labels)}
data:
cron-expression: 30 4 * * *
EOF
}