Curated resources help you prepare for the CNCF/Linux Foundation CKS 2021 "Kubernetes Certified Security Specialist" Certification exam. Please provide feedback or requests by raising issues, or making a pull request. All feedback for improvements are welcome. thank you.
Certified Kubernetes Security Specialist - CKS
Online curated resources that will help you prepare for taking the Kubernetes Certified Kubernetes Security Specialist CKS Certification exam.
- Please raise an issue, or make a pull request for fixes, new additions, or updates.
Ensure you have the right version of Kubernetes documentation selected (e.g. v1.26 as of January 2023) especially for API objects and annotations, however for third party tools, you might find that you can still find references for them in old releases and blogs e.g. Falco install.
- Icons/emoji legend
Exam Brief
Offical exam objectives you review and understand in order to pass the test.
- Duration : two (2) hours
- Number of questions: 15-20 hands-on performance based tasks
- Passing score: 67%
- Certification validity: two (2) years
- Prerequisite: valid CKA
- Cost: $375 USD, One (1) year exam eligibility, with a free retake within the year.
URLs to prepare for the exam:
- Kubernetes Documentation: - https://kubernetes.io/docs and their subdomains - https://github.com/kubernetes and their subdomains - https://kubernetes.io/blog and their subdomainsThis includes all available language translations of these pages (e.g. https://kubernetes.io/zh/docs) - Tools: - Trivy documentation - Falco documentation - App Armor documentation
Exam interface
According to official Linux Foundation documentation and as of June 2022, there was a change in the exam platform. It is just an exam platform, so the exam questions will not change, but there were a few things that seemed to concern you, so I will write them down:- A remote desktop configured with the tools and software needed to complete the tasks
- Candidates can start the βTake Examβ Process 30 minutes prior to their scheduled date/time (currently 15mins on PSI ExamsLocal platform)
- Self check-in: no need to wait for a proctor in order to upload your ID and scan your environment
- The exam will now be taken using the PSI Secure Browser, which can be downloaded using the newest versions of Microsoft Edge, Safari, Chrome, or Firefox
- Multiple monitors will no longer be permitted
- Use of personal bookmarks will no longer be permitted (Personal browser bookmarks such as bookmarked links to YAML files will not be accessible within the PSI Secure Browser)
- A timer that displays the actual time remaining (in minutes) and provides an alert with 30, 15, or 5 minute remaining
- The content panel remains the same (presented on the Left Hand Side of the ExamUI)
CKS repo topics overview
- [X] Cluster Setup - 10% - [X] Cluster Hardening - 15% - [X] System Hardening - 15% - [X] Minimize Microservice Vulnerabilities - 20% - [X] Supply Chain Security - 20% - [X] Monitoring, Logging and Runtime Security - 20%
#### Extra helpful material
- [x] Slack - [x] Books - [x] Youtube Videos - [x] Webinars - [x] Containers and Kubernetes Security Training - [x] Extra Kubernetes security resources
Cluster Setup - 10%
:largebluecircle: Securing a Cluster- Use Network security policies to restrict cluster level access
- :triangularflagonpost: Use CIS benchmark to review the security configuration of Kubernetes components (etcd, kubelet, kubedns, kubeapi)
Using Kubernetes network policy to restrict pods access to cloud metadata
* This example assumes AWS cloud, and metadata IP address is 169.254.169.254 should be blocked while all other external addresses are not.
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: deny-only-cloud-metadata-access
spec:
podSelector: {}
policyTypes:
- Egress
egress:
- to:
- ipBlock:
cidr: 0.0.0.0/0
except:
- 169.254.169.254/32
:clipboard: Kubernetes binaries can be verified by their digest sha512 hash
- Checking the Kubernetes release page for the specific release - Checking the change log for the images and their digests
Cluster Hardening - 15%
- Control anonymous requests to Kube-apiserver * :triangularflagonpost: Handy site collects together articles, tools and the official documentation all in one place * :triangularflagonpost: Simplify Kubernetes Resource Access Control using RBAC Impersonation- Exercise caution in using service accounts e.g. disable defaults, minimize permissions on newly created ones
:clipboard: Opt out of automounting API credentials for a service account
#### Opt out at service account scope
apiVersion: v1 kind: ServiceAccount metadata: name: build-robot automountServiceAccountToken: false #### Opt out at pod scope apiVersion: v1 kind: Pod metadata: name: cks-pod spec: serviceAccountName: default automountServiceAccountToken: false
System Hardening - 15%
- Minimize host OS footprint (reduce attack surface)
:clipboard: :confused: Reduce host attack surface
* seccomp which stands for secure computing was originally intended as a means of safely running untrusted compute-bound programs * AppArmor can be configured for any application to reduce its potential host attack surface and provide greater in-depth defense. * PSA enforces * Apply host updates * Install minimal required OS fingerprint * Identify and address open ports * Remove unnecessary packages * Protect access to data with permissions * Restirct allowed hostpaths
- Minimize IAM roles
- Minimize external access to the network
:clipboard: :confused: if it means deny external traffic to outside the cluster?!!
* not tested, however, the thinking is that all pods can talk to all pods in all name spaces but not to the outside of the cluster!!!
apiVersion: networking.k8s.io/v1
kind: NetworkPolicy
metadata:
name: deny-external-egress
spec:
podSelector: {}
policyTypes:
- Egress
egress:
to:
- namespaceSelector: {}
- Appropriately use kernel hardening tools such as AppArmor, seccomp
Minimize Microservice Vulnerabilities - 20%
- Setup appropriate OS-level security domains e.g. using PSA, OPA, security contexts
- Manage kubernetes secrets
- Use container runtime sandboxes in multi-tenant environments (e.g. gvisor, kata containers)
- Implement pod to pod encryption by use of mTLS
Supply Chain Security - 20%
- Minimize base image footprint
:clipboard: Minimize base Image
* Use distroless, UBI minimal, Alpine, or relavent to your app nodejs, python but the minimal build. * Do not include uncessary software not required for container during runtime e.g build tools and utilities, troubleshooting and debug binaries. * :triangularflagonpost: LearnKube: 3 simple tricks for smaller Docker images * :triangularflagonpost: GKE 7 best practices for building containers
- Secure your supply chain: whitelist allowed image registries, sign and validate images
- Use static analysis of user workloads (e.g. kubernetes resources, docker files)
- Scan images for known vulnerabilities
Monitoring, Logging and Runtime Security - 20%
- Perform behavioural analytics of syscall process and file activities at the host and container level to detect malicious activities
- Detect threats within a physical infrastructure, apps, networks, data, users and workloads
- Detect all phases of attack regardless where it occurs and how it spreads
:clipboard: Attack Phases
- :triangularflagonpost: Kubernetes attack martix Microsoft blog - :triangularflagonpost: MITRE attack framwork using Falco - :triangularflagonpost: Lightboard video: Kubernetes attack matrix - 3 steps to mitigating the MITRE ATT&CK Techniques - :triangularflagonpost: CNCF Webinar: Mitigating Kubernetes attacks
- Perform deep analytical investigation and identification of bad actors within the environment
Extra helpful material
Slack
- Kubernetes Community - #cks-exam-prep
- Kubernauts Community - #cks
- Saiyam's Pathak OpenSource Discord #CKS channel
Twitch
Books
- Aqua Security Liz Rice:Free Container Security Book
- Learn Kubernetes security: Securely orchestrate, scale, and manage your microservices in Kubernetes deployments
- Let's Learn CKS Scenarios
Youtube Videos
- Killer Shell: Kubernetes CKS Full Course Theory + Practice + Browser Scenarios
- Google/Ian Lewis: Kubernetes security best practices
- Code in Action for the book Learn Kubernetes Security playlist
- Kubernetes security concepts and demos
- Webinar | Certified Kubernetes Security Specialist (CKS), January 2022
- Webinar | Everything you need to know about Kubernetes certification, June 2024
Containers and Kubernetes Security Training
- LabEx Kubernetes Learning Path - Interactive hands-on Kubernetes labs covering container orchestration, scaling, deployment strategies, and cloud-native fundamentals. Essential foundation before diving into security specialization.
- Killer.sh CKS practice exam - use code walidshaari for 20% discount.
- UDEMY Kim WΓΌstkamp's Kubernetes CKS 2021 Complete Course with killer.sh Simulator (discounted price)
- Linux Foundation Kubernetes Security essentials LFS 260
- Mumshad's KodeCloud "Certified Kubernetes Security Specialist" CKS and training and labs
- Linux Academy/ACloudGuru Kubernetes security
- Zeal Vora's Udemy Certified Kubernetes Security Specialist 2021 - Link includes a discount till 28th January 2021
- Cloud native security defending containers and kubernetes
- Tutorial: Getting Started With Cloud-Native Security - Liz Rice, Aqua Security & Michael Hausenblas
- K21 academy CKS step by step activity hands-on-lab activity guide
- Andrew Martin Control Plane Security training
- Free Exam simulators from killer.sh available with CKS certification from Linux Foundation
- Sysdig Falco 101
- Killercoda in-browser CKS Playground and Challenges - FREE
- CKS Self-Study Course - FREE
- RX-M CKS Boot Camp
Other CKS related repos
- Stackrox CKS study guide - Brief and informative study guide from Stackrox @mfosterrox
- Kim's CKS Challenge series - also posted on medium @ https://wuestkamp.medium.com/
- Abdennour
- Ibrahim Jelliti
- Viktor Vedmich
- Kubernetes Security Checklist and Requirements
- CKS Exam series
