Difference between revisions of "Kind: Certificate"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
{{lc}}
 
{{lc}}
 
  [[kind:]] Certificate
 
  [[kind:]] Certificate
 +
 +
https://cert-manager.io/docs/concepts/certificate/
 +
apiVersion: cert-manager.io/v1
 +
kind: Certificate
 +
metadata:
 +
  name: acme-crt
 +
spec:
 +
  secretName: acme-crt-secret
 +
  dnsNames:
 +
  - example.com
 +
  - foo.example.com
 +
  issuerRef:
 +
    name: letsencrypt-prod
 +
    # We can reference ClusterIssuers by changing the kind here.
 +
    # The default value is Issuer (i.e. a locally namespaced Issuer)
 +
    kind: Issuer
 +
    group: cert-manager.io
  
  

Revision as of 11:11, 14 July 2022

kind: Certificate

https://cert-manager.io/docs/concepts/certificate/

apiVersion: cert-manager.io/v1
kind: Certificate
metadata:
  name: acme-crt
spec:
  secretName: acme-crt-secret
  dnsNames:
  - example.com
  - foo.example.com
  issuerRef:
    name: letsencrypt-prod
    # We can reference ClusterIssuers by changing the kind here.
    # The default value is Issuer (i.e. a locally namespaced Issuer)
    kind: Issuer
    group: cert-manager.io


See also

Advertising: