Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/en/docs/concepts/certificate.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ metadata:
spec:
secretName: acme-crt-secret
dnsNames:
- example.com
- foo.example.com
- bar.example.com
issuerRef:
name: letsencrypt-prod
# We can reference ClusterIssuers by changing the kind here.
Expand All @@ -36,8 +36,8 @@ spec:
```

This `Certificate` will tell cert-manager to attempt to use the `Issuer` named
`letsencrypt-prod` to obtain a certificate key pair for the `foo.example.com`
and `bar.example.com` domains. If successful, resulting TLS key and certificate
`letsencrypt-prod` to obtain a certificate key pair for the `example.com`
and `foo.example.com` domains. If successful, resulting TLS key and certificate
will be stored in a secret named `acme-crt-secret`, with keys of `tls.key`, and
`tls.crt` respectively. This secret will live in the same namespace as the
`Certificate` resource.
Expand Down