K8s Lab 把当前仓库文档整理成一个可阅读的网页站点

Repository Reading Site

21-root-ca-certificate.yaml

manifests/16-cert-manager/21-root-ca-certificate.yaml

Text Assetmanifests/16-cert-manager/21-root-ca-certificate.yaml414 B2026年4月10日 08:00查看原始内容
apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
  name: lab-root-ca
  namespace: cert-manager
spec:
  commonName: lab-root-ca
  secretName: lab-root-ca-secret
  isCA: true
  duration: 8760h
  renewBefore: 720h
  privateKey:
    algorithm: RSA
    size: 2048
    rotationPolicy: Always
  subject:
    organizations:
      - k8s-lab
  issuerRef:
    kind: ClusterIssuer
    name: lab-selfsigned-bootstrap