Install Istio with Pod Security Admission
Follow this guide to install, configure, and use an Istio mesh with the Pod Security admission controller
(PSA5) enforcing the baseline
policy6 on namespaces in the mesh.
By default Istio injects an init container, istio-init
, in pods deployed in
the mesh. The istio-init
requires the user or
service-account deploying pods to the mesh to have sufficient Kubernetes RBAC
permissions to deploy containers with the NET_ADMIN
and NET_RAW
capabilities.
However, the baseline
policy does not include NET_ADMIN
or NET_RAW
in its allowed capabilities. In order to avoid enforcing the privileged
policy in all meshed namespaces, it is necessary to use Istio mesh with the Istio Container Network Interface plugin7. The istio-cni-node
DaemonSet in the istio-system
namespace requires hostPath
volumes to access local CNI directories. Since this is not allowed in the baseline
policy, the namespace where the CNI DaemonSet will be deployed needs to enforce the privileged
policy. By default, this namespace is istio-system
.
Install Istio with PSA
Create the
istio-system
namespace and label it to enforce theprivileged
policy.Install Istio with CNI on a Kubernetes cluster version 1.25 or later.
Deploy the sample application
Add a namespace label to enforce the
baseline
policy for the default namespace where the demo application will run:Deploy the sample application using the PSA enabled configuration resources:
Verify that the app is running inside the cluster and serving HTML pages by checking for the page title in the response:
Uninstall
Delete the sample application
Delete the labels on the default namespace
Uninstall Istio
Delete the
istio-system
namespace