From 4f65f30b7c5d14f27b7239239f047dfcfdb0d2a8 Mon Sep 17 00:00:00 2001 From: Swati Sehgal Date: Thu, 26 Aug 2021 15:27:03 +0100 Subject: [PATCH] Only add kustomization.yaml in the root to .gitignore The current addition of kustomization.yaml to gitignore file means that any file in the project tree with the name kustomization.yaml will be ignored. However, that is not the desired behaviour. One of the primary examples of this is when we add deployments corresponding to nfd-topology-updater, we want to be able to ensure that the kustomization.yamls are not ignored. Signed-off-by: Swati Sehgal --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 72534b1b8..c91845d66 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ bin/ demo/helper-scripts/*.pdf demo/helper-scripts/*.log -kustomization.yaml +/kustomization.yaml