You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/docs/configuration/ca.md
+20-11Lines changed: 20 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,17 +73,6 @@ spec:
73
73
secretName: ca-key-pair
74
74
```
75
75
76
-
Optionally, you can specify [CRL](https://en.wikipedia.org/wiki/Certificate_revocation_list) Distribution Points; an array of strings each of which identifies the location of the CRL from which the revocation of this certificate can be checked.
77
-
78
-
```yaml
79
-
...
80
-
spec:
81
-
ca:
82
-
secretName: ca-key-pair
83
-
crlDistributionPoints:
84
-
- "http://example.com"
85
-
```
86
-
87
76
Once deployed, you can then check that the issuer has been successfully
88
77
configured by checking the ready status of the certificate. Replace `issuers`
89
78
here with `clusterissuers` if that is what has been deployed.
@@ -97,6 +86,26 @@ ca-issuer True Signing CA verified 2m
97
86
Certificates are now ready to be requested by using the CA `Issuer` named
98
87
`ca-issuer`within the `sandbox` namespace.
99
88
89
+
### Revocation Sources
90
+
91
+
Optionally, you can specify [CRL](https://en.wikipedia.org/wiki/Certificate_revocation_list) Distribution Points or [OCSP servers](https://en.wikipedia.org/wiki/Online_Certificate_Status_Protocol)
92
+
for the CA issuer, to enable clients to check the revocation status of certificates issued by this CA.
93
+
94
+
These are arrays of strings which give the location from which either a CRL or an OCSP response can be retrieved, respectively. The CA issuer will then include these in the issued certificates.
95
+
96
+
```yaml
97
+
...
98
+
spec:
99
+
ca:
100
+
secretName: ca-key-pair
101
+
crlDistributionPoints:
102
+
- "http://example.com/my.crl"
103
+
ocspServers:
104
+
- "http://ocsp.example.com"
105
+
```
106
+
107
+
Note that cert-manager has no support for generating or maintaining CRLs or OCSP responses; these sources must be provided by the operator of the CA issuer.
108
+
100
109
## Important Information
101
110
102
111
The CA issuer is lightweight and is intended for experienced cluster operators who understand
0 commit comments