From fb7fb809fadea42c9f7b27bfe036c39ee7e262ef Mon Sep 17 00:00:00 2001 From: Mariusz Sabath Date: Sun, 23 Jun 2024 19:29:39 -0400 Subject: [PATCH] Fix format for ignoreNamespaces (#388) Signed-off-by: Mariusz Sabath --- charts/spire/charts/spire-server/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/spire/charts/spire-server/values.yaml b/charts/spire/charts/spire-server/values.yaml index 65c8c29..da5326b 100644 --- a/charts/spire/charts/spire-server/values.yaml +++ b/charts/spire/charts/spire-server/values.yaml @@ -541,9 +541,9 @@ controllerManager: - kube-public - local-path-storage # openshift creates many namespaces that should be typically ignored: - - openshift-* + - openshift-.* # ibmcloud specific namespaces: - - ibm-* + - ibm-.* ## @param controllerManager.reconcile.clusterSPIFFEIDs Enable reconciliation of clusterSPIFFEIDs from K8s to the SPIRE server ## @param controllerManager.reconcile.clusterStaticEntries Enable reconciliation of clusterStaticEntries from K8s to the SPIRE server ## @param controllerManager.reconcile.clusterFederatedTrustDomains Enable reconciliation of clusterFederatedTrustDomains from K8s to the SPIRE server