4 min read
Security is one of the key concerns when running workloads on Kubernetes. To help teams safeguard their cluster environments, Kubernetes offers Pod Security Standards (PSS). These standards define how to enforce security controls for your pod workloads.
02/09/2024
Read more...2 min read
By default, any container that we launch will run as root. Most of the processes we launch don't really require, for example, to be able to install packages on the container. We can reduce it's privileges by setting the SecurityContext at the Pod level or at the container level.
19/02/2021
Read more...