├── .gitignore ├── Best-Practices ├── best-practices-performance-scale-large.md └── best-practices-performance-scale.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Perf-Benchmarks ├── AKS-Perf-Benchmarks.md ├── AKSPerfTestScenarios.psm1 ├── ReadMe.md ├── RunAKSPerformanceTest.ps1 ├── pod-deployment.yaml └── visual.py ├── README.md └── SECURITY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/.gitignore -------------------------------------------------------------------------------- /Best-Practices/best-practices-performance-scale-large.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Best-Practices/best-practices-performance-scale-large.md -------------------------------------------------------------------------------- /Best-Practices/best-practices-performance-scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Best-Practices/best-practices-performance-scale.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/LICENSE -------------------------------------------------------------------------------- /Perf-Benchmarks/AKS-Perf-Benchmarks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Perf-Benchmarks/AKS-Perf-Benchmarks.md -------------------------------------------------------------------------------- /Perf-Benchmarks/AKSPerfTestScenarios.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Perf-Benchmarks/AKSPerfTestScenarios.psm1 -------------------------------------------------------------------------------- /Perf-Benchmarks/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Perf-Benchmarks/ReadMe.md -------------------------------------------------------------------------------- /Perf-Benchmarks/RunAKSPerformanceTest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Perf-Benchmarks/RunAKSPerformanceTest.ps1 -------------------------------------------------------------------------------- /Perf-Benchmarks/pod-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Perf-Benchmarks/pod-deployment.yaml -------------------------------------------------------------------------------- /Perf-Benchmarks/visual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/Perf-Benchmarks/visual.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Azure/AKS-Performance-and-Scale/HEAD/SECURITY.md --------------------------------------------------------------------------------