Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🌱 Add go.work to .gitignore and .dockerignore #8155

Merged
merged 1 commit into from
Apr 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ cmd/clusterctl/clusterctl/**
**/bin/**
**/out/**

# go.work files
go.work
go.work.sum

# Test binary, build with `go test -c`
**/*.test

Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ test/e2e/data/test-extension/deployment.yaml
.vscode/
*.code-workspace

# go.work files
go.work
go.work.sum

# kubeconfigs
minikube.kubeconfig

Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -540,6 +540,7 @@ generate-metrics-config: $(ENVSUBST_BIN) ## Generate ./hack/observability/kube-s
generate-diagrams: ## Generate diagrams for *.plantuml files
$(MAKE) -C docs diagrams


## --------------------------------------
## Lint / Verify
## --------------------------------------
Expand Down