1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/documentation/installation.md
Jim Bugwadia 25b60590ca - add validation example
- update docs for validation
2019-05-22 00:09:45 -07:00

928 B

documentation / Installation

Installation

To install Kyverno in your cluster run:

kubectl create -f https://github.com/nirmata/kyverno/raw/master/definitions/install.yaml

To check if the Kyverno controller is running use:

kubectl get pods -n kyverno

If the Kyverno controller doesn't start, you can check its status and logs for errors:

kubectl describe pod <kyverno-pod-name> -n kyverno

kubectl logs <kyverno-pod-name> -n kyverno

Installing in a Development Environment

To run Kyverno in a development environment see: https://github.com/nirmata/kyverno/wiki/Building

Try Kyverno without a Kubernetes cluster

To write and test policies without installing Kyverno in a Kubernetes cluster you can try the Kyverno CLI.


Read Next >> Writing Policies