mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
.. | ||
best_practices | ||
more | ||
AddDefaultNetworkPolicy.md | ||
AddNamespaceQuotas.md | ||
AddSafeToEvict.md | ||
CheckUserGroup.md | ||
DisallowBindMounts.md | ||
DisallowDefaultNamespace.md | ||
DisallowDockerSockMount.md | ||
DisallowHelmTiller.md | ||
DisallowHostNetworkPort.md | ||
DisallowHostPIDIPC.md | ||
DisallowLatestTag.md | ||
DisallowNewCapabilities.md | ||
DisallowPrivilegedContainers.md | ||
DisallowRootUser.md | ||
DisallowSysctls.md | ||
README.md | ||
RequireCertainLabels.md | ||
RequireLabels.md | ||
RequirePodProbes.md | ||
RequirePodRequestsLimits.md | ||
RequireReadOnlyRootFS.md | ||
RestrictAutomountSAToken.md | ||
RestrictImageRegistries.md | ||
RestrictIngressClasses.md | ||
RestrictNodePort.md |
Sample Policies
Sample policies are designed to be applied to your Kubernetes clusters with minimal changes.
The policies are mostly validation rules in audit
mode i.e. your existing workloads will not be impacted, but will be audited for policy complaince.
Best Practice Policies
These policies are highly recommended.
- Disallow root user
- Disallow privileged containers
- Disallow new capabilities
- Disallow kernel parameter changes
- Disallow use of bind mounts (
hostPath
volumes) - Disallow docker socket bind mount
- Disallow
hostNetwork
andhostPort
- Disallow
hostPID
andhostIPC
- Disallow use of default namespace
- Disallow latest image tag
- Disallow Helm Tiller
- Require read-only root filesystem
- Require pod resource requests and limits
- Require pod
livenessProbe
andreadinessProbe
- Add default network policy
- Add namespace quotas
- Add
safe-to-evict
for pods withemptyDir
andhostPath
volumes
Additional Policies
These policies provide additional best practices and are worthy of close consideration. These policies may require specific changes for your workloads and environments.
- Restrict image registries
- Restrict
NodePort
services - Restrict auto-mount of service account credentials
- Restrict ingress classes
- Restrict User Group
- Require pods are labeled
- Require pods have certain labels
Applying the sample policies
To apply these policies to your cluster, install Kyverno and import the policies as follows:
Install Kyverno
kubectl create -f https://github.com/kyverno/kyverno/raw/master/definitions/install.yaml
Apply Kyverno Policies
To start applying policies to your cluster, first clone the repo:
git clone https://github.com/kyverno/kyverno.git
cd kyverno
Import best_practices from here:
kubectl create -f samples/best_practices
Import addition policies from here:
kubectl create -f samples/more/