Skip to content

Commit

Permalink
add basic tutorial
Browse files Browse the repository at this point in the history
Signed-off-by: Frank Jogeleit <frank.jogeleit@lovoo.com>
  • Loading branch information
Frank Jogeleit committed Feb 6, 2024
1 parent 7eb16cf commit 6581550
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions docs/TUTORIALS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Setup Kyverno and Policy Reporter

## Install Kyverno + Kyverno PSS Policies

Add Helm Repo

```bash
helm repo add kyverno https://kyverno.github.io/kyverno/
helm repo update
```

Install Kyverno + PSS Policies

```bash
helm upgrade --install kyverno kyverno/kyverno -n kyverno --create-namespace
helm upgrade --install kyverno-policies kyverno/kyverno-policies -n kyverno --create-namespace --set podSecurityStandard=restricted
```

## Installing Policy Reporter Preview v3.x with UI v2 and Kyverno Plugin

```bash
helm repo add policy-reporter https://kyverno.github.io/policy-reporter
helm repo update
```

Install the Policy Reporter Preview

```bash
helm upgrade --install policy-reporter policy-reporter/policy-reporter-preview --create-namespace -n policy-reporter --devel --set ui.enabled=true --set kyverno-plugin.enabled=true
```

0 comments on commit 6581550

Please sign in to comment.