-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |