Skip to content

Instantly share code, notes, and snippets.

@developer-guy
Created December 1, 2020 09:00
Show Gist options
  • Save developer-guy/637ae7df5bc5d5c34c962babfe62defb to your computer and use it in GitHub Desktop.
Save developer-guy/637ae7df5bc5d5c34c962babfe62defb to your computer and use it in GitHub Desktop.
Setup Kyverno via Helm
#!/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
@developer-guy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment