From ff126d98f558ac2bb2a697087d9640d4940c34be Mon Sep 17 00:00:00 2001 From: Camila Macedo <7708031+camilamacedo86@users.noreply.github.com> Date: Thu, 9 Jan 2025 21:03:22 +0000 Subject: [PATCH] [Monorepo]: Unify .gitignore files - Remove the file under catalogd - Add entries to the .gitigonore in the root to ignore the catalogd files --- .gitignore | 12 ++++++++++-- catalogd/.gitignore | 21 --------------------- 2 files changed, 10 insertions(+), 23 deletions(-) delete mode 100644 catalogd/.gitignore diff --git a/.gitignore b/.gitignore index 305a463ba..94ca25c7d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,3 @@ -vendor - # Binaries for programs and plugins *.exe *.exe~ @@ -17,11 +15,13 @@ Dockerfile.cross # Output of the go coverage tools *.out coverage +cover.out # Release output dist/** operator-controller.yaml install.sh +catalogd.yaml # Kubernetes Generated files - skip generated files, except for vendored files @@ -41,3 +41,11 @@ site .tiltbuild/ .catalogd-tmp/ .vscode + +# Catalogd +catalogd/bin/ +catalogd/vendor/ +catalogd/dist/ +catalogd/cover.out +catalogd/catalogd.yaml +catalogd/install.sh diff --git a/catalogd/.gitignore b/catalogd/.gitignore deleted file mode 100644 index 8ee34b8f6..000000000 --- a/catalogd/.gitignore +++ /dev/null @@ -1,21 +0,0 @@ - -# Binaries for programs and plugins -bin - -# Kubernetes Generated files - skip generated files, except for vendored files - -!vendor/**/zz_generated.* - -# Dependency directories -vendor/ -bin/ -dist/ -cover.out - -# Release output -catalogd.yaml -install.sh - -.tiltbuild/ -.vscode -.idea