From b054bfcf06c8e20090fdb26e7c5e2ea43d6f4d31 Mon Sep 17 00:00:00 2001 From: Scot Wells Date: Thu, 27 Aug 2026 09:43:43 -0500 Subject: [PATCH] fix: ship no namespace with the fabric identity overlay The consumer names where this runs, as it does for every other component it deploys. Shipping a namespace made two owners for that name, and the one consumer of this overlay dropped it again with a patch that broke on the name changing underneath it. Key changes: - Remove the namespace from the fabric identity overlay --- config/fabric-identity/kustomization.yaml | 1 - config/fabric-identity/namespace.yaml | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 config/fabric-identity/namespace.yaml diff --git a/config/fabric-identity/kustomization.yaml b/config/fabric-identity/kustomization.yaml index 27c749d..94622e2 100644 --- a/config/fabric-identity/kustomization.yaml +++ b/config/fabric-identity/kustomization.yaml @@ -23,7 +23,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization namespace: fabric-identity-system resources: - - namespace.yaml - ../crd - ../rbac components: diff --git a/config/fabric-identity/namespace.yaml b/config/fabric-identity/namespace.yaml deleted file mode 100644 index 6e9284a..0000000 --- a/config/fabric-identity/namespace.yaml +++ /dev/null @@ -1,7 +0,0 @@ -apiVersion: v1 -kind: Namespace -metadata: - name: system - labels: - app.kubernetes.io/name: fabric-identity-controller - app.kubernetes.io/managed-by: kustomize