Revision 30b0d3fc3189a8383e766b76d14c388191c70cc1 authored by André Martins on 11 May 2020, 13:32:08 UTC, committed by André Martins on 26 May 2020, 12:42:04 UTC
Listing all pods, even if with a filter will load the etcd kvstore as
the filtering is done in kube-apiserver. To avoid doing this operation
every 10 seconds we can have a single watcher that keeps track of all
unmanaged kube-dns pods locally.

Signed-off-by: André Martins <andre@cilium.io>
1 parent 40fface
Raw File
cilium-dev.Dockerfile.dockerignore
# Compiled Object files, Static and Dynamic libs (Shared Objects)
*.o
*.a
*.so

# LLVM IR files
*.ll
*.ll-*

# Folders
_obj
_test
_build/
hack/

.git/objects/
vendor/
examples/
api/
Documentation/


# Architecture specific extensions/prefixes
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*

_testmain.go

*.exe
*.test
*.prof

*.swn
*.swp
.vagrant/
vagrant.kubeconfig
coverage.out
coverage-all.out
coverage-all.html

.DS_Store
.idea/
*.plist

*_bash_completion
*.swo
outgoing

*cscope.files
*cscope.out
*cscope.in.out
*cscope.po.out
*tags

man/

# Test files
test/tmp.yaml
test/*_service_manifest.json
test/*_manifest.yaml
test/*_policy.json
test/*.xml
tests/cilium-files
test/test_results
test/*.json
test/.vagrant

# Emacs backup files
*~

# Automatically generated when needed
.dockerignore

# Temporary files that allow build containers/VMs work without git

test/bpf/_results

# generated from make targets
*.ok
back to top