From 6340b18e1cd04beaea37f2c832fbed650073685a Mon Sep 17 00:00:00 2001 From: Jim Bugwadia Date: Tue, 21 May 2019 16:03:20 -0700 Subject: [PATCH 1/2] remove center - has no effect --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9952842cf7..dcf6c3d681 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -#
Kyverno - Kubernetes Native Policy Management
+# Kyverno - Kubernetes Native Policy Management ![logo](documentation/images/Kyverno_Horizontal.png) From 82536b28da24b0aaf23d0da732795df79d71e3d0 Mon Sep 17 00:00:00 2001 From: Jim Bugwadia Date: Tue, 21 May 2019 16:09:05 -0700 Subject: [PATCH 2/2] update commands and text --- documentation/installation.md | 26 +++++++++++++++++--------- 1 file changed, 17 insertions(+), 9 deletions(-) diff --git a/documentation/installation.md b/documentation/installation.md index 9705f93c47..0b66b62555 100644 --- a/documentation/installation.md +++ b/documentation/installation.md @@ -2,19 +2,27 @@ # Installation -To install Kyverno in your cluster run: +To install Kyverno in your cluster run the following command on a host with kubectl access: - `kubectl create -f https://github.com/nirmata/kyverno/raw/master/definitions/install.yaml` +````sh +kubectl create -f https://github.com/nirmata/kyverno/raw/master/definitions/install.yaml +```` -To check if the Kyverno controller is running use: +To check the Kyverno controller status, run the command: - `kubectl get pods -n kyverno` +````sh +kubectl get pods -n kyverno +```` -If the Kyverno controller doesn't start, you can check its status and logs for errors: +If the Kyverno controller is not running, you can check its status and logs for errors: - `kubectl describe pod -n kyverno` +````sh +kubectl describe pod -n kyverno +```` - `kubectl logs -n kyverno` +````sh +kubectl logs -n kyverno +```` # Installing in a Development Environment @@ -22,7 +30,7 @@ To run Kyverno in a development environment see: https://github.com/nirmata/kyve # Try Kyverno without a Kubernetes cluster -To write and test policies without installing Kyverno in a Kubernetes cluster you can try the [Kyverno CLI](documentation/testing-policies-cli.md). +The [Kyverno CLI](documentation/testing-policies-cli.md) allows you to write and test policies without installing Kyverno in a Kubernetes cluster. -*Read Next >> [Writing Policies](/documentation/writing-policies.md)* \ No newline at end of file +*Read Next >> [Writing Policies](/documentation/writing-policies.md)*