File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
docs/modules/secret-operator/pages
rust/operator-binary/src/crd/secret_class Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ include::example$cert-manager/issuer.yaml[]
4343== Creating a SecretClass
4444
4545The Stackable Secret Operator needs to know how to request the certificates from Cert-Manager.
46- Do this by creating a xref:secretclass.adoc[] using the xref:secretclass.adoc#backend-certmanager[`experimentalCertManager ` backend].
46+ Do this by creating a xref:secretclass.adoc[] using the xref:secretclass.adoc#backend-certmanager[`certManager ` backend].
4747
4848[source,yaml]
4949----
Original file line number Diff line number Diff line change @@ -53,13 +53,13 @@ pub mod versioned {
5353 /// A new certificate and key pair will be generated and signed for each Pod, keys or certificates are never reused.
5454 AutoTls ( AutoTlsBackend ) ,
5555
56- /// The [`experimentalCertManager` backend][1] injects a TLS certificate issued
57- /// by [cert-manager](https://cert-manager.io/).
56+ /// The [`certManager` backend][1] injects a TLS certificate issued by [cert-manager].
5857 ///
5958 /// A new certificate will be requested the first time it is used by a Pod, it
6059 /// will be reused after that (subject to cert-manager renewal rules).
6160 ///
6261 /// [1]: DOCS_BASE_URL_PLACEHOLDER/secret-operator/secretclass#backend-certmanager
62+ /// [cert-manager]: https://cert-manager.io/
6363 #[ versioned( changed( since = "v1alpha2" , from_name = "ExperimentalCertManager" ) ) ]
6464 CertManager ( CertManagerBackend ) ,
6565
You can’t perform that action at this time.
0 commit comments