├── .github ├── ISSUE_TEMPLATE │ ├── ask_question.md │ ├── bug_report.md │ └── feature_request.md ├── policies │ └── resourceManagement.yml └── workflows │ └── policy-reminder.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md └── helpful_tools ├── GitHubActions ├── README.md └── install_buildkit_workflow.yaml ├── Install-ContainerdRuntime └── install-containerd-runtime.ps1 ├── Install-DockerCE ├── README.md ├── install-docker-ce.ps1 └── uninstall-docker-ce.ps1 ├── Install-MirantisContainerRuntime └── install-mirantis-container-runtime.ps1 ├── LogCollector ├── README.md ├── collectlog.ps1 └── collectlogs.sh ├── NetworkPolicy ├── networkpolicytraces.sh ├── switchport.ps1 └── yaml │ ├── hostsysprocess.yaml │ ├── policy-ingress-access-from-updated-pod.yaml │ └── test-3-minimal-agnhost-pods.yaml ├── PerfTraceCollector ├── README.md ├── collecttraces.sh ├── createcluster.sh ├── createstorage.sh ├── downloadinstallazcopy.sh ├── hostsysprocess.yaml └── myscenario.yaml ├── Query-JobLimits ├── Query-JobLimits.ps1 └── README.md └── README.md /.github/ISSUE_TEMPLATE/ask_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/.github/ISSUE_TEMPLATE/ask_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/policies/resourceManagement.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/.github/policies/resourceManagement.yml -------------------------------------------------------------------------------- /.github/workflows/policy-reminder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/.github/workflows/policy-reminder.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/SECURITY.md -------------------------------------------------------------------------------- /helpful_tools/GitHubActions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/GitHubActions/README.md -------------------------------------------------------------------------------- /helpful_tools/GitHubActions/install_buildkit_workflow.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/GitHubActions/install_buildkit_workflow.yaml -------------------------------------------------------------------------------- /helpful_tools/Install-ContainerdRuntime/install-containerd-runtime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Install-ContainerdRuntime/install-containerd-runtime.ps1 -------------------------------------------------------------------------------- /helpful_tools/Install-DockerCE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Install-DockerCE/README.md -------------------------------------------------------------------------------- /helpful_tools/Install-DockerCE/install-docker-ce.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Install-DockerCE/install-docker-ce.ps1 -------------------------------------------------------------------------------- /helpful_tools/Install-DockerCE/uninstall-docker-ce.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Install-DockerCE/uninstall-docker-ce.ps1 -------------------------------------------------------------------------------- /helpful_tools/Install-MirantisContainerRuntime/install-mirantis-container-runtime.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Install-MirantisContainerRuntime/install-mirantis-container-runtime.ps1 -------------------------------------------------------------------------------- /helpful_tools/LogCollector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/LogCollector/README.md -------------------------------------------------------------------------------- /helpful_tools/LogCollector/collectlog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/LogCollector/collectlog.ps1 -------------------------------------------------------------------------------- /helpful_tools/LogCollector/collectlogs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/LogCollector/collectlogs.sh -------------------------------------------------------------------------------- /helpful_tools/NetworkPolicy/networkpolicytraces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/NetworkPolicy/networkpolicytraces.sh -------------------------------------------------------------------------------- /helpful_tools/NetworkPolicy/switchport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/NetworkPolicy/switchport.ps1 -------------------------------------------------------------------------------- /helpful_tools/NetworkPolicy/yaml/hostsysprocess.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/NetworkPolicy/yaml/hostsysprocess.yaml -------------------------------------------------------------------------------- /helpful_tools/NetworkPolicy/yaml/policy-ingress-access-from-updated-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/NetworkPolicy/yaml/policy-ingress-access-from-updated-pod.yaml -------------------------------------------------------------------------------- /helpful_tools/NetworkPolicy/yaml/test-3-minimal-agnhost-pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/NetworkPolicy/yaml/test-3-minimal-agnhost-pods.yaml -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/README.md -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/collecttraces.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/collecttraces.sh -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/createcluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/createcluster.sh -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/createstorage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/createstorage.sh -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/downloadinstallazcopy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/downloadinstallazcopy.sh -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/hostsysprocess.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/hostsysprocess.yaml -------------------------------------------------------------------------------- /helpful_tools/PerfTraceCollector/myscenario.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/PerfTraceCollector/myscenario.yaml -------------------------------------------------------------------------------- /helpful_tools/Query-JobLimits/Query-JobLimits.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Query-JobLimits/Query-JobLimits.ps1 -------------------------------------------------------------------------------- /helpful_tools/Query-JobLimits/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/Query-JobLimits/README.md -------------------------------------------------------------------------------- /helpful_tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Windows-Containers/HEAD/helpful_tools/README.md --------------------------------------------------------------------------------