Last active
November 27, 2022 13:41
-
-
Save rdpetrusek/7acfb8c2de66ed61f46db3ad32ef7351 to your computer and use it in GitHub Desktop.
Kubernetes, Istio, Cert Manager, and Let's Encrypt - install cert manager
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
| #!/bin/bash | |
| # https://cert-manager.io/docs/installation/ | |
| helm repo add jetstack https://charts.jetstack.io | |
| sleep 30 | |
| helm repo update | |
| sleep 30 | |
| helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --version v1.5.3 --set installCRDs=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment