Skip to content

Commit

Permalink
Merge pull request #2578 from chrischdi/pr-fix-dockerignore
Browse files Browse the repository at this point in the history
🌱 Adjust .dockerignore and .gitignore files for multi-modules and sync with CAPI
  • Loading branch information
k8s-ci-robot authored Dec 28, 2023
2 parents c60d8ba + 9a9cd8d commit e9586a9
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 8 deletions.
23 changes: 20 additions & 3 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.git/
.github/
.git
.github
.vscode

.dockerignore
.gitignore
.golangci.yml
Expand All @@ -11,8 +12,24 @@ hack/tools/bin/
out/
docs/
scripts/
**/.md
**/*.md
*.test
cluster-api-provider-vsphere
examples/provider-components/provider-components*.yaml
test/

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

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

# Output of the go coverage tool, specifically when used with LiteIDE
**/*.out

# Common editor / temporary files
**/*~
**/*.tmp
**/.DS_Store
**/*.swp
28 changes: 23 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,26 @@ envvars.txt
# Test binary, build with `go test -c`
*.test


# Output of Makefile targets using sed on MacOS systems
*.yaml-e

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# IntelliJ
.idea/
*.iml

# VSCode
.vscode/
*.code-workspace

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

# kubeconfigs
minikube.kubeconfig
config/base/vsphere_tmp.pub
config/base/vsphere_tmp
Expand Down Expand Up @@ -66,11 +83,6 @@ _releasenotes
# Ignore the kubeconfig file generated by clusterctl
/kubeconfig

# Ignore Goland files
.idea/

.build
.tiltbuild

# Common editor / temporary files
*~
Expand All @@ -80,3 +92,9 @@ _releasenotes

# Ginkgo logs from test runs
*ginkgo-log.txt

# User-supplied Tiltfile extensions, settings, and builds
tilt.d
tilt-settings.json
tilt-settings.yaml
.tiltbuild

0 comments on commit e9586a9

Please sign in to comment.