diff --git a/docs/serving/using-auto-tls.md b/docs/serving/using-auto-tls.md index d368b39b27b..ebac80a2437 100644 --- a/docs/serving/using-auto-tls.md +++ b/docs/serving/using-auto-tls.md @@ -198,12 +198,10 @@ in the `knative-serving` namespace to reference your new `ClusterIssuer`. 1. Add the `issuerRef` within the `data` section: ```shell - ... data: - ... issuerRef: | kind: ClusterIssuer - name: letsencrypt-issuer + name: letsencrypt-http01-issuer ``` Example: @@ -247,11 +245,8 @@ requests are handled: 1. Add the `autoTLS: Enabled` attribute under the `data` section: ```shell - ... data: - ... autoTLS: Enabled - ... ``` Example: @@ -285,11 +280,8 @@ requests are handled: clients to use HTTPS. ```shell - ... data: - ... - autoTLS: Enabled - ... + httpProtocol: Redirected ``` Example: @@ -303,7 +295,6 @@ requests are handled: data: ... autoTLS: Enabled - ... httpProtocol: Redirected ... ```