Skip to content

cert-manager

Introduction

...

Deploy With Container

Run in Docker

bash
#

Run in Kubernetes

bash
# install crds resources
# if installCRDS is true, don't need to apply
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.12.1/cert-manager.crds.yaml

# add and update repo
helm repo add jetstack https://charts.jetstack.io
helm update

# get charts package
helm pull jetstack/cert-manager --untar  
cd cert-manager

# configure and run
vim values.yaml
installCRDs: true

helm -n cert-manager install cert-manager .


# helm-operator
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.12.0/cert-manager.yaml

Reference:

  1. Official Website
  2. Repository