...
1# NFS
2.nfs*
3
4# OSX leaves these everywhere on SMB shares
5._*
6
7# OSX trash
8.DS_Store
9
10# Eclipse files
11.classpath
12.project
13.settings/**
14
15# Files generated by JetBrains IDEs, e.g. IntelliJ IDEA
16.idea/
17*.iml
18
19# Vscode files
20.vscode
21
22# This is where the result of the go build goes
23/output*/
24/_output*/
25/_output
26
27# Emacs save files
28*~
29\#*\#
30.\#*
31
32# Vim-related files
33[._]*.s[a-w][a-z]
34[._]s[a-w][a-z]
35*.un~
36Session.vim
37.netrwhist
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
52network_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
63# User cluster configs
64.kubeconfig
65
66.tags*
67
68# Version file for dockerized build
69.dockerized-kube-version-defs
70
71# Web UI
72/www/master/node_modules/
73/www/master/npm-debug.log
74/www/master/shared/config/development.json
75
76# Karma output
77/www/test_out
78
79# precommit temporary directories created by ./hack/verify-generated-docs.sh and ./hack/lib/util.sh
80/_tmp/
81/doc_tmp/
82
83# Test artifacts produced by Jenkins jobs
84/_artifacts/
85
86# Go dependencies installed on Jenkins
87/_gopath/
88
89# Config directories created by gcloud and gsutil on Jenkins
90/.config/gcloud*/
91/.gsutil/
92
93# CoreOS stuff
94/cluster/libvirt-coreos/coreos_*.img
95
96# Juju Stuff
97/cluster/juju/charms/*
98/cluster/juju/bundles/local.yaml
99
100# Downloaded Kubernetes binary release
101/kubernetes/
102
103# direnv .envrc files
104.envrc
105
106# Downloaded kubernetes binary release tar ball
107kubernetes.tar.gz
108
109# generated files in any directory
110# TODO(thockin): uncomment this when we stop committing the generated files.
111#zz_generated.*
112
113# make-related metadata
114/.make/
115# Just in time generated data in the source, should never be committed
116/test/e2e/generated/bindata.go
117
118# This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored
119!\.drone\.sec
120
121/bazel-*
122
123# vendored go modules
124/vendor
125
126# git merge conflict originals
127*.orig
128
129# go coverage files
130coverage.*
131
132# test files
133tmp
134CHANGELOG-*.html
135
136# downloaded and built binaries
137bin
138qemu-*-static
139rootfs.tar
View as plain text