Page cover

Install Cert Manager

Create namespace & vpc

To install cert manager, you need to create a namespace and a vpc.

kubectl create ns cert-manager

Create a YAML file cvpc-cert-manager.

nano cvpc-cert-manager.yaml

Copy and paste the following YAML contents.

apiVersion: tenants.cloudeka.ai/v1alpha2
kind: CloudekaVPC
metadata:
  name: cert-manager
  namespace: cert-manager
spec:
  isolate: false

After pasting the syntax, save the file by pressing Ctrl + O, then press the Enter key and exit the editor by pressing Ctrl + X. The next step is to apply this configuration.

kubectl apply -f cvpc-cert-manager.yaml

Add helm repository

Add a Helm repository by running the following command.

Create values.yaml file from the helm repository

Modify values.yaml file

Set resources cert manager.

Set resources webhook.

Set resources cainjector.

Set resources startupapicheck.

Deploy cert-manager

Last updated