Skip to content

Commit 08eaa31

Browse files
committed
docs: Remove remaining mentions of experimentalCertManager
1 parent eab4d61 commit 08eaa31

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/modules/secret-operator/pages/cert-manager.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ include::example$cert-manager/issuer.yaml[]
4343
== Creating a SecretClass
4444

4545
The 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
----

extra/crds.yaml

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/operator-binary/src/crd/secret_class/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)