ingress-nginx-helm/docs/examples/psp
Manuel Alejandro de Brito Fontes b68839118f Release 0.31.1
2020-04-27 10:43:23 -04:00
..
psp.yaml Migrate to alpine linux 2020-01-04 13:23:16 -03:00
README.md Release 0.31.1 2020-04-27 10:43:23 -04:00

Pod Security Policy (PSP)

In most clusters today, by default, all resources (e.g. Deployments and ReplicatSets) have permissions to create pods. Kubernetes however provides a more fine-grained authorization policy called Pod Security Policy (PSP).

PSP allows the cluster owner to define the permission of each object, for example creating a pod. If you have PSP enabled on the cluster, and you deploy ingress-nginx, you will need to provide the Deployment with the permissions to create pods.

Before applying any objects, first apply the PSP permissions by running:

kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/master/docs/examples/psp/psp.yaml

Note: PSP permissions must be granted before to the creation of the Deployment and the ReplicaSet.