Removed obsolet clutter, fixed l2 announcement policy

This commit is contained in:
Max Pfeiffer
2026-01-25 10:36:30 +01:00
parent f255d5c8b1
commit 01c9fa3370
2 changed files with 1 additions and 25 deletions

View File

@@ -2,7 +2,6 @@ apiVersion: cilium.io/v2alpha1
kind: CiliumL2AnnouncementPolicy kind: CiliumL2AnnouncementPolicy
metadata: metadata:
name: default name: default
namespace: kube-system
annotations: annotations:
argocd.argoproj.io/sync-wave: "-1000" argocd.argoproj.io/sync-wave: "-1000"
spec: spec:

View File

@@ -45,26 +45,3 @@ resource "helm_release" "argocd_app_of_apps" {
}, },
] ]
} }
# data "helm_template" "argocd_app_of_apps" {
#
# depends_on = [helm_release.argocd]
# name = "app-of-apps"
# chart = "${path.module}/helm_charts/app-of-apps"
# namespace = kubernetes_namespace_v1.argocd.id
# timeout = 60
# set = [
# {
# name = "source"
# value = var.argocd_app_of_apps_source
# },
# {
# name = "syncPolicy"
# value = var.argocd_app_of_apps_sync_policy
# },
# ]
# }
#
# output "argocd_app_of_apps_rendered_yaml" {
# value = data.helm_template.argocd_app_of_apps.manifest
# }