From 5a2926b76f3cf589ce510f4f2f9b511fee4e929a Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Tue, 23 Dec 2025 00:50:52 +0100 Subject: [PATCH] chore: Remove ./ from kustomization for consistency --- manifests/kustomization.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/manifests/kustomization.yaml b/manifests/kustomization.yaml index 580c5fe..815894e 100644 --- a/manifests/kustomization.yaml +++ b/manifests/kustomization.yaml @@ -1,9 +1,9 @@ apiVersion: kustomize.config.k8s.io/v1beta1 kind: Kustomization resources: - - ./namespace.yaml - - ./crds.yaml - - ./service-account.yaml - - ./cluster-role.yaml - - ./cluster-role-binding.yaml - - ./deployment.yaml + - namespace.yaml + - crds.yaml + - service-account.yaml + - cluster-role.yaml + - cluster-role-binding.yaml + - deployment.yaml