Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop net-http01 from v1.13 release #5761

Merged
merged 1 commit into from
Nov 22, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions blog/docs/releases/announcing-knative-v1-12-release.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ This release brings a number of smaller improvements to the core Knative Serving
[Release Notes](https://github.com/knative/serving/releases/tag/knative-v1.12.0)

### 🚨 Breaking or Notable
- net-http01 component has been deprecated (see: https://github.com/knative/serving/issues/14640)
- Label the webhook service with "app: webhook" label (#14258, @JordanDeBeer)
- `auto-tls` is now named `external-domain-tls` (#14472, @ReToCode)
- `internal-encryption` is now named `system-internal-tls` (#14472, @ReToCode)
Expand Down
11 changes: 0 additions & 11 deletions docs/install/uninstall.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,6 @@ Uninstall any Serving extensions you have installed by performing the steps in t
[cert-manager documentation](https://cert-manager.io/docs/installation/uninstall/kubernetes/).



=== "TLS via HTTP01"

Uninstall the `net-http01` controller by running:

```bash
kubectl delete -f {{ artifact( repo="net-http01", file="release.yaml") }}
```



### Uninstalling a networking layer

Follow the relevant procedure to uninstall the networking layer you installed:
Expand Down
28 changes: 0 additions & 28 deletions docs/install/yaml-install/serving/install-serving-with-yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,31 +173,3 @@ The following tabs expand to show instructions for installing each Serving exten
[cert-manager](https://cert-manager.io/docs/).
Follow the documentation in [Enabling automatic TLS certificate provisioning](../../../serving/encryption/enabling-automatic-tls-certificate-provisioning.md)
for more information.

=== "TLS with HTTP01"

Knative supports automatically provisioning TLS certificates using Encrypt HTTP01 challenges. The following commands install the components needed to support TLS.

1. Install the net-http01 controller by running the command:

```bash
kubectl apply -f {{ artifact(repo="net-http01",file="release.yaml")}}
```

2. Configure the `certificate-class` to use this certificate type by running the command:

```bash
kubectl patch configmap/config-network \
--namespace knative-serving \
--type merge \
--patch '{"data":{"certificate-class":"net-http01.certificate.networking.knative.dev"}}'
```

3. Enable `external-domain-tls` by running the command:

```bash
kubectl patch configmap/config-network \
--namespace knative-serving \
--type merge \
--patch '{"data":{"external-domain-tls":"Enabled"}}'
```