16 lines
648 B
YAML
16 lines
648 B
YAML
# Cert-Manager Installation
|
|
# This file installs cert-manager using the official installation method
|
|
# For production, use: kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.0/cert-manager.yaml
|
|
# Or use Helm: helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace
|
|
|
|
# Note: This is a reference file. In production, install cert-manager using:
|
|
# kubectl apply -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.0/cert-manager.yaml
|
|
|
|
---
|
|
apiVersion: v1
|
|
kind: Namespace
|
|
metadata:
|
|
name: cert-manager
|
|
labels:
|
|
cert-manager.io/disable-validation: "true"
|
|
|