From 02b879b576bb2a8237377807b7012c0c68adc83d Mon Sep 17 00:00:00 2001 From: Danijel Simeunovic Date: Fri, 6 Mar 2026 09:54:07 +0100 Subject: [PATCH] cleanup --- README.md | 6 +++--- .../{default-blocker.yaml => default-ns-blocker.yaml} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename cluster-resources/policies/{default-blocker.yaml => default-ns-blocker.yaml} (100%) diff --git a/README.md b/README.md index 09b1775..429dae3 100644 --- a/README.md +++ b/README.md @@ -38,11 +38,11 @@ This is a **Kubernetes cluster bootstrapping and GitOps configuration repository ├── kyverno-config.yaml # Security policies and secret syncing ├── argocd-notifications-secret-sealed.yaml # Sealed secret for ArgoCD notifications └── policies/ # Kyverno policy definitions - ├── deployment-verifier.yaml # Policy to verify deployments + ├── deployment-verifier.yaml # Policy to verify pods have controllers ├── label-checker.yaml # Policy to check labels - ├── bare-pod-cleaner.yaml # Policy to clean up bare pods + ├── bare-pod-cleaner.yaml # Policy to clean up pods without controllers ├── replicaset-cleaner.yaml # Policy to clean up orphaned replica sets - ├── default-blocker.yaml # Policy to block resources without explicit allow rules + ├── default-ns-blocker.yaml # Policy to block use of default namespace └── secret-cloner.yaml # Policy to clone secrets across namespaces ``` diff --git a/cluster-resources/policies/default-blocker.yaml b/cluster-resources/policies/default-ns-blocker.yaml similarity index 100% rename from cluster-resources/policies/default-blocker.yaml rename to cluster-resources/policies/default-ns-blocker.yaml