From 849ef4adcb127d6d5e7cca20826454aa4e51396b Mon Sep 17 00:00:00 2001 From: Jim Bugwadia Date: Thu, 4 Jun 2020 18:35:39 -0700 Subject: [PATCH] fix helm installation (#912) --- documentation/installation.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/documentation/installation.md b/documentation/installation.md index 19366abd10..4089b34662 100644 --- a/documentation/installation.md +++ b/documentation/installation.md @@ -10,12 +10,15 @@ You can install Kyverno using the Helm chart or YAML files in this repository. ## Add the nirmata Helm repository helm repo add kyverno https://nirmata.github.io/kyverno/ +## Create the Kyverno namespace +kubectl create ns kyverno + ## Install the kyverno helm chart -helm install my-release --namespace kyverno kyverno/kyverno +helm install --generate-name --namespace kyverno kyverno/kyverno ``` -Note: the namespace must be `kyverno`. +Note: the namespace must be `kyverno`. See issue #841. ## Install Kyverno using YAMLs