forked from cert-manager/cert-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
|
||
# helm repo add | ||
# for reference [https://cert-manager.io/docs/installation/helm/] | ||
helm repo add jetstack https://charts.jetstack.io --force-update | ||
|
||
# helm repo update | ||
helm repo update | ||
|
||
# Install CRDs with kubectl | ||
kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.14.5/cert-manager.crds.yaml | ||
|
||
# Install cert-manager with helm | ||
helm install \ | ||
cert-manager jetstack/cert-manager \ | ||
--namespace cert-manager \ | ||
--create-namespace \ | ||
--version v1.14.5 \ | ||
# --set installCRDs=true | ||
|
||
# for more reference | ||
# [https://technotim.live/posts/kube-traefik-cert-manager-le/] | ||
|
||
|
||
|
||
|