sigs.k8s.io/cluster-api@v1.7.1/.gitignore (about) 1 # Binaries for programs and plugins 2 *.exe 3 *.dll 4 *.so 5 *.dylib 6 cmd/clusterctl/clusterctl 7 bin 8 hack/tools/bin 9 10 # Test binary, build with `go test -c` 11 *.test 12 13 # E2E test templates 14 test/e2e/data/infrastructure-docker/**/cluster-template*.yaml 15 test/e2e/data/infrastructure-inmemory/**/cluster-template*.yaml 16 17 # Output of Makefile targets using sed on MacOS systems 18 *.yaml-e 19 20 # Output of the go coverage tool, specifically when used with LiteIDE 21 *.out 22 23 # IntelliJ 24 .idea/ 25 *.iml 26 27 # VSCode 28 .vscode/ 29 *.code-workspace 30 31 # go.work files 32 go.work 33 go.work.sum 34 35 # kubeconfigs 36 minikube.kubeconfig 37 38 # Book 39 docs/book/book/ 40 41 # Common editor / temporary files 42 *~ 43 *.tmp 44 .DS_Store 45 46 # rbac and manager config for example provider 47 config/ci/rbac/role_binding.yaml 48 config/ci/rbac/role.yaml 49 config/ci/rbac/aggregated_role.yaml 50 config/ci/rbac/auth_proxy_role.yaml 51 config/ci/rbac/auth_proxy_role_binding.yaml 52 config/ci/rbac/auth_proxy_service.yaml 53 config/ci/manager/manager.yaml 54 55 # Sample config files auto-generated by kubebuilder 56 config/samples 57 58 # Temporary clusterctl directory 59 cmd/clusterctl/config/manifest 60 61 # The golang vendor directory that contains local copies of external 62 # dependencies that satisfy Go imports in this project. 63 vendor 64 65 # User-supplied Tiltfile extensions, settings, and builds 66 tilt.d 67 tilt-settings.json 68 tilt-settings.yaml 69 .tiltbuild 70 71 # User-supplied clusterctl hacks settings 72 clusterctl-settings.json 73 74 # test results 75 _artifacts 76 77 # release artifacts 78 out 79 80 # Helm 81 .helm 82 83 # Used during parts of the build process. Files _should_ get cleaned up automatically. 84 # This is also a good location for any temporary manfiests used during development 85 tmp 86 87 # asdf (not a typo! ;) used to manage multiple versions of tools 88 .tool-versions 89 90 # Development container configurations (https://containers.dev/) 91 .devcontainer