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