.gitignore 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. # OSX leaves these everywhere on SMB shares
  2. ._*
  3. # OSX trash
  4. .DS_Store
  5. # Eclipse files
  6. .classpath
  7. .project
  8. .settings/**
  9. # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
  10. .idea/
  11. *.iml
  12. # Vscode files
  13. .vscode
  14. # This is where the result of the go build goes
  15. /output*/
  16. /_output*/
  17. # Emacs save files
  18. *~
  19. \#*\#
  20. .\#*
  21. # Vim-related files
  22. [._]*.s[a-w][a-z]
  23. [._]s[a-w][a-z]
  24. *.un~
  25. Session.vim
  26. .netrwhist
  27. # Go test binaries
  28. *.test
  29. /hack/.test-cmd-auth
  30. # JUnit test output from ginkgo e2e tests
  31. /junit*.xml
  32. # Mercurial files
  33. **/.hg
  34. **/.hg*
  35. # Vagrant
  36. .vagrant
  37. network_closure.sh
  38. # Local cluster env variables
  39. /cluster/env.sh
  40. # Compiled binaries in third_party
  41. /third_party/pkg
  42. # Also ignore etcd installed by hack/install-etcd.sh
  43. /third_party/etcd*
  44. # User cluster configs
  45. .kubeconfig
  46. .tags*
  47. # Web UI
  48. /www/master/node_modules/
  49. /www/master/npm-debug.log
  50. /www/master/shared/config/development.json
  51. # Karma output
  52. /www/test_out
  53. # precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
  54. /_tmp/
  55. /doc_tmp/
  56. # Test artifacts produced by Jenkins jobs
  57. /_artifacts/
  58. # Go dependencies installed on Jenkins
  59. /_gopath/
  60. # Config directories created by gcloud and gsutil on Jenkins
  61. /.config/gcloud*/
  62. /.gsutil/
  63. # CoreOS stuff
  64. /cluster/libvirt-coreos/coreos_*.img
  65. # Juju Stuff
  66. /cluster/juju/charms/*
  67. /cluster/juju/bundles/local.yaml
  68. # Downloaded Kubernetes binary release
  69. /kubernetes/
  70. # direnv .envrc files
  71. .envrc
  72. # Downloaded kubernetes binary release tar ball
  73. kubernetes.tar.gz
  74. # generated files in any directory
  75. # TODO(thockin): uncomment this when we stop committing the generated files.
  76. #zz_generated.*
  77. # make-related metadata
  78. /.make/
  79. # Just in time generated data in the source, should never be commited
  80. /test/e2e/generated/bindata.go
  81. # This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored
  82. !\.drone\.sec