Add minio-operator Application to deploy operator before Tenant

This commit is contained in:
Story Crater Bot
2026-07-14 14:26:01 -07:00
parent 8a3a892cbd
commit ca8525c625
3 changed files with 36 additions and 109 deletions
+8 -5
View File
@@ -44,6 +44,12 @@ resource "helm_release" "argocd" {
enabled = true
minReplicas = 2
}
env = [
{
name = "GIT_SSL_CAINFO"
value = "/etc/ssl/certs/homelab-ca.crt"
}
]
volumes = [
{
name = "homelab-ca"
@@ -70,11 +76,8 @@ resource "helm_release" "argocd" {
kubernetes_namespace.argocd
]
lifecycle {
ignore_changes = [
values
]
}
# Note: lifecycle.ignore_changes removed to allow CA cert update
# This allows TF to inject the homelab-ca-secret for TLS verification
}
resource "kubernetes_manifest" "argocd_project" {