Created
December 1, 2020 09:00
-
-
Save developer-guy/637ae7df5bc5d5c34c962babfe62defb to your computer and use it in GitHub Desktop.
Setup Kyverno via Helm
This file contains hidden or 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
#!/usr/bin/env bash | |
set -e | |
# Add the Helm repository | |
helm repo add kyverno https://kyverno.github.io/kyverno/ || true | |
# Create a namespace | |
kubectl create ns kyverno || true | |
# Install the kyverno helm chart | |
helm upgrade --install kyverno --namespace kyverno kyverno/kyverno |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Helpful links down below: