├── .gitignore ├── LICENSE ├── README.md ├── kubernetes ├── README.md ├── coredns-serviceaccount.yaml ├── coredns.sed.yaml ├── default-kube-dns.yaml ├── k8s-scale.sh └── prometheus.sed.yaml └── local-perf ├── Corefile ├── Makefile ├── README.md ├── bin ├── mig-linux_amd64 └── queryperf-linux_amd64 ├── domain.lst.mig └── domain.lst.queryperf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/README.md -------------------------------------------------------------------------------- /kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/kubernetes/README.md -------------------------------------------------------------------------------- /kubernetes/coredns-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/kubernetes/coredns-serviceaccount.yaml -------------------------------------------------------------------------------- /kubernetes/coredns.sed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/kubernetes/coredns.sed.yaml -------------------------------------------------------------------------------- /kubernetes/default-kube-dns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/kubernetes/default-kube-dns.yaml -------------------------------------------------------------------------------- /kubernetes/k8s-scale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/kubernetes/k8s-scale.sh -------------------------------------------------------------------------------- /kubernetes/prometheus.sed.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/kubernetes/prometheus.sed.yaml -------------------------------------------------------------------------------- /local-perf/Corefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/Corefile -------------------------------------------------------------------------------- /local-perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/Makefile -------------------------------------------------------------------------------- /local-perf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/README.md -------------------------------------------------------------------------------- /local-perf/bin/mig-linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/bin/mig-linux_amd64 -------------------------------------------------------------------------------- /local-perf/bin/queryperf-linux_amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/bin/queryperf-linux_amd64 -------------------------------------------------------------------------------- /local-perf/domain.lst.mig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/domain.lst.mig -------------------------------------------------------------------------------- /local-perf/domain.lst.queryperf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coredns/perf-tests/HEAD/local-perf/domain.lst.queryperf --------------------------------------------------------------------------------