juntekim.com/mist_infra/cert_manager/install_cert_manager.sh
Jun-te Kim 5453f92c69 push
2025-12-13 23:22:24 +00:00

13 lines
437 B
Bash

#!/usr/bin/env bash
set -euo pipefail
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.4/cert-manager.crds.yaml
helm repo add jetstack https://charts.jetstack.io >/dev/null 2>&1 || true
helm repo update
kubectl create namespace cert-manager --dry-run=client -o yaml | kubectl apply -f -
helm upgrade --install cert-manager jetstack/cert-manager \
--namespace cert-manager \
--version v1.14.4