├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── question-submission.md ├── .gitignore ├── LICENSE ├── cluster_setup ├── Makefile ├── gcp │ ├── environment.tf │ ├── files │ │ ├── cluster.yml │ │ └── init.sh │ ├── main.tf │ ├── network.tf │ ├── output.tf │ ├── provider.tf │ └── variables.tf └── readme.md ├── img └── kcss_logo.png ├── readme.md └── walkthrough ├── p0_intro ├── cleanup.sh ├── cluster_yamls │ ├── defaults-psp.yaml │ ├── endpoint.yaml │ └── hello-world.yaml ├── init.sh └── readme.md ├── p1_cluster_setup ├── readme.md └── solutions │ └── readme.md └── readme.md /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question-submission.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/.github/ISSUE_TEMPLATE/question-submission.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/LICENSE -------------------------------------------------------------------------------- /cluster_setup/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/Makefile -------------------------------------------------------------------------------- /cluster_setup/gcp/environment.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/environment.tf -------------------------------------------------------------------------------- /cluster_setup/gcp/files/cluster.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/files/cluster.yml -------------------------------------------------------------------------------- /cluster_setup/gcp/files/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/files/init.sh -------------------------------------------------------------------------------- /cluster_setup/gcp/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/main.tf -------------------------------------------------------------------------------- /cluster_setup/gcp/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/network.tf -------------------------------------------------------------------------------- /cluster_setup/gcp/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/output.tf -------------------------------------------------------------------------------- /cluster_setup/gcp/provider.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/provider.tf -------------------------------------------------------------------------------- /cluster_setup/gcp/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/gcp/variables.tf -------------------------------------------------------------------------------- /cluster_setup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/cluster_setup/readme.md -------------------------------------------------------------------------------- /img/kcss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/img/kcss_logo.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/readme.md -------------------------------------------------------------------------------- /walkthrough/p0_intro/cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p0_intro/cleanup.sh -------------------------------------------------------------------------------- /walkthrough/p0_intro/cluster_yamls/defaults-psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p0_intro/cluster_yamls/defaults-psp.yaml -------------------------------------------------------------------------------- /walkthrough/p0_intro/cluster_yamls/endpoint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p0_intro/cluster_yamls/endpoint.yaml -------------------------------------------------------------------------------- /walkthrough/p0_intro/cluster_yamls/hello-world.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p0_intro/cluster_yamls/hello-world.yaml -------------------------------------------------------------------------------- /walkthrough/p0_intro/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p0_intro/init.sh -------------------------------------------------------------------------------- /walkthrough/p0_intro/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p0_intro/readme.md -------------------------------------------------------------------------------- /walkthrough/p1_cluster_setup/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p1_cluster_setup/readme.md -------------------------------------------------------------------------------- /walkthrough/p1_cluster_setup/solutions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/p1_cluster_setup/solutions/readme.md -------------------------------------------------------------------------------- /walkthrough/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stackrox/Kubernetes_Security_Specialist_Study_Guide/HEAD/walkthrough/readme.md --------------------------------------------------------------------------------