12 lines
229 B
Bash
12 lines
229 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
helm repo add jetstack https://charts.jetstack.io
|
||
|
helm repo update
|
||
|
|
||
|
kubectl create namespace cert-manager
|
||
|
|
||
|
helm install cert-manager jetstack/cert-manager --namespace cert-manager \
|
||
|
--set installCRDs=true
|