11 lines
295 B
Bash
11 lines
295 B
Bash
kubectl create namespace cert-manager
|
|
helm repo add jetstack https://charts.jetstack.io
|
|
helm repo update
|
|
|
|
# Install versione consigliata
|
|
helm install cert-manager jetstack/cert-manager \
|
|
--namespace cert-manager \
|
|
--set installCRDs=true \
|
|
--wait
|
|
# Verifica
|
|
kubectl -n cert-manager get pods |