Skip to content

Commit 3138186

Browse files
abrennan89knative-prow-robot
authored andcommitted
Removing old versions from docs (#1995)
* Removing old versions from docs * Try fixing the broken list rending on the site * add missing quotes * use sentence style caps * Try adding a weight to fix rendering * try to fix poor list rendering (again)
1 parent f4c9b56 commit 3138186

15 files changed

+32
-140
lines changed

docs/eventing/debugging/README.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,6 @@ This document is intended for people that are familiar with the object model of
1414
[Knative Eventing](../README.md). You don't need to be an expert, but do need to
1515
know roughly how things fit together.
1616

17-
## Version
18-
19-
This Debugging content supports version v0.8.0 or later of
20-
[Knative Eventing](https://github.com/knative/eventing/releases/) and the
21-
[Eventing-contrib resources](https://github.com/knative/eventing-contrib/releases/).
22-
2317
## Prerequisites
2418

2519
1. Setup [Knative Eventing and an Eventing-contrib resource](../README.md).
@@ -364,7 +358,7 @@ However if we see something like:
364358

365359
<!--
366360
NOTE: This error has been produced by settings spec.ports[0].port to 8081
367-
kubectl patch -n knative-debug svc svc -p '{"spec":{"ports": [{"port": 8081, "targetPort":8080}]}}' --type='merge'
361+
kubectl patch -n knative-debug svc svc -p '{"spec":{"ports": [{"port": 8081, "targetPort":8080}]}}' --type='merge'
368362
-->
369363
```shell
370364
{"level":"info","ts":"2019-08-16T16:10:16.859Z","logger":"inmemorychannel-dispatcher.in-memory-channel-dispatcher","caller":"provisioners/message_receiver.go:140","msg":"Received request for chan-kn-channel.knative-debug.svc.cluster.local","knative.dev/controller":"in-memory-channel-dispatcher"}

docs/eventing/samples/parallel/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ various flows.
66
All examples require:
77

88
- A Kubernetes cluster with
9-
- Knative Eventing v0.11+
10-
- Knative Serving v0.8+
9+
- Knative Eventing
10+
- Knative Serving
1111

1212
All examples are using the
1313
[default channel template](../../channels/default-channels.md).

docs/install/Knative-custom-install.md

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -184,27 +184,6 @@ for details about installing the various supported observability plugins.
184184
**Tip**: From the table above, copy and paste the URL and filename into the
185185
commands below.
186186

187-
1. If you are upgrading from Knative 0.3.x: Update your domain and static IP
188-
address to be associated with the LoadBalancer `istio-ingressgateway` instead
189-
of `knative-ingressgateway`. Then run the following to clean up leftover
190-
resources:
191-
192-
```
193-
kubectl delete svc knative-ingressgateway -n istio-system
194-
kubectl delete deploy knative-ingressgateway -n istio-system
195-
```
196-
197-
If you have the Knative Eventing Sources component installed, you will also
198-
need to delete the following resource before upgrading:
199-
200-
```
201-
kubectl delete statefulset/controller-manager -n knative-sources
202-
```
203-
204-
While the deletion of this resource during the upgrade process will not
205-
prevent modifications to Eventing Source resources, those changes will not be
206-
completed until the upgrade process finishes.
207-
208187
1. To install Knative components or plugins, specify the filenames in the
209188
`kubectl apply` command. To prevent install failures due to race conditions,
210189
run the install command first with the `-l knative.dev/crd-install=true`
@@ -267,9 +246,9 @@ commands below.
267246
--filename https://github.com/knative/serving/releases/download/{{< version >}}/monitoring.yaml
268247
```
269248

270-
- To install all three Knative components without an observability plugin,
249+
- To install all three Knative components without an observability plugin,
271250
run the following commands.
272-
251+
273252
1. Installs the CRDs only:
274253

275254
```bash
@@ -311,7 +290,7 @@ See the following topics for information about installing other Knative features
311290

312291
- [Installing logging, metrics, and traces](../serving/installing-logging-metrics-traces.md):
313292
Learn how to install and set up the various observability plugins.
314-
293+
315294
- [Installing Cert-Manager](../serving/installing-cert-manager.md):
316295
Learn how to set up and configure secure HTTPS requests and enable
317296
[automatic TLS cert provisioning](../serving/using-auto-tls.md).

docs/install/Knative-with-AKS.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -156,27 +156,6 @@ The following commands install all available Knative components. To customize
156156
your Knative installation, see
157157
[Performing a Custom Knative Installation](./Knative-custom-install.md).
158158

159-
1. If you are upgrading from Knative 0.3.x: Update your domain and static IP
160-
address to be associated with the LoadBalancer `istio-ingressgateway` instead
161-
of `knative-ingressgateway`. Then run the following to clean up leftover
162-
resources:
163-
164-
```
165-
kubectl delete svc knative-ingressgateway -n istio-system
166-
kubectl delete deploy knative-ingressgateway -n istio-system
167-
```
168-
169-
If you have the Knative Eventing Sources component installed, you will also
170-
need to delete the following resource before upgrading:
171-
172-
```
173-
kubectl delete statefulset/controller-manager -n knative-sources
174-
```
175-
176-
While the deletion of this resource during the upgrade process will not
177-
prevent modifications to Eventing Source resources, those changes will not be
178-
completed until the upgrade process finishes.
179-
180159
1. To install Knative, first install the CRDs by running the `kubectl apply`
181160
command once with the `--selector knative.dev/crd-install=true` flag. This
182161
prevents race conditions during the install, which cause intermittent errors:

docs/install/Knative-with-ICP.md

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -136,27 +136,6 @@ The following commands install all available Knative components as well as the
136136
standard set of observability plugins. To customize your Knative installation,
137137
see [Performing a Custom Knative Installation](./Knative-custom-install.md).
138138

139-
1. If you are upgrading from Knative 0.3.x: Update your domain and static IP
140-
address to be associated with the LoadBalancer `istio-ingressgateway` instead
141-
of `knative-ingressgateway`. Then run the following to clean up leftover
142-
resources:
143-
144-
```
145-
kubectl delete svc knative-ingressgateway -n istio-system
146-
kubectl delete deploy knative-ingressgateway -n istio-system
147-
```
148-
149-
If you have the Knative Eventing Sources component installed, you will also
150-
need to delete the following resource before upgrading:
151-
152-
```
153-
kubectl delete statefulset/controller-manager -n knative-sources
154-
```
155-
156-
While the deletion of this resource during the upgrade process will not
157-
prevent modifications to Eventing Source resources, those changes will not be
158-
completed until the upgrade process finishes.
159-
160139
1. Run the following commands to install Knative:
161140

162141
```shell
@@ -248,5 +227,3 @@ curl -L https://github.com/knative/serving/releases/download/{{< version >}}/mon
248227
| sed 's/LoadBalancer/NodePort/' \
249228
| kubectl delete --filename -
250229
```
251-
252-

docs/install/Knative-with-MicroK8s.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ type: "docs"
88
[MicroK8s](https://microk8s.io) is a lightweight, powerful fully-conformant Kubernetes that tracks upstream releases and makes clustering trivial. It can run on any flavor of Linux that supports [Snap](https://snapcraft.io) packages. It can run on Windows and Mac OS using [Mutlipass](https://multipass.run).
99
This guide walks you through the installation of Knative using MicroK8s.
1010

11-
If you need help or support please reach out on the [Kubernetes forum](https://discuss.kubernetes.io/tags/microk8s) or Kubernetes.slack.com channel #microk8s.
11+
If you need help or support please reach out on the [Kubernetes forum](https://discuss.kubernetes.io/tags/microk8s) or Kubernetes.slack.com channel #microk8s.
1212
Additionally if you wish to contribute or report an issue please visit [MicroK8s Github](https://github.com/ubuntu/microk8s).
1313

1414
You can find [guides for other platforms here](./README.md).
@@ -30,9 +30,7 @@ sudo snap alias microk8s.kubectl kubectl
3030
```shell
3131
echo 'N;' | microk8s.enable knative
3232
```
33-
This command will install Knative Serving version 0.7.1 and Eventing version 0.7.1 components.
34-
35-
NOTE: As of this writing, MicroK8s comes with version 0.7.1, this doc will be updated to reflect versioning changes.
33+
This command will install the Knative Serving 0.9.0 and Knative Eventing 0.9.0 components.
3634

3735
You can check the status of Knative pods using the following commands:
3836

docs/install/Knative-with-OpenShift.md

Whitespace-only changes.

docs/install/Knative-with-any-k8s.md

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -39,27 +39,6 @@ The following commands install all available Knative components. To customize
3939
your Knative installation, see
4040
[Performing a Custom Knative Installation](./Knative-custom-install.md).
4141

42-
1. If you are upgrading from Knative 0.3.x: Update your domain and static IP
43-
address to be associated with the LoadBalancer `istio-ingressgateway` instead
44-
of `knative-ingressgateway`. Then run the following to clean up leftover
45-
resources:
46-
47-
```bash
48-
kubectl delete svc knative-ingressgateway -n istio-system
49-
kubectl delete deploy knative-ingressgateway -n istio-system
50-
```
51-
52-
If you have the Knative Eventing Sources component installed, you will also
53-
need to delete the following resource before upgrading:
54-
55-
```
56-
kubectl delete statefulset/controller-manager -n knative-sources
57-
```
58-
59-
While the deletion of this resource during the upgrade process will not
60-
prevent modifications to Eventing Source resources, those changes will not be
61-
completed until the upgrade process finishes.
62-
6342
1. To install Knative, first install the CRDs by running the `kubectl apply`
6443
command once with the `-l knative.dev/crd-install=true` flag. This prevents
6544
race conditions during the install, which cause intermittent errors:

docs/install/check-install-version.md

Lines changed: 10 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,19 @@ weight: 20
55
type: "docs"
66
---
77

8-
9-
To obtain the version of the Knative component that you have running on your cluster, you query for the
8+
To obtain the version of the Knative component that you have running on your cluster, you query for the
109
`[component].knative.dev/release` label with the following commands:
1110

1211
* Knative Serving
13-
```bash
14-
kubectl get namespace knative-serving -o 'go-template={{index .metadata.labels
15-
"serving.knative.dev/release"}}'
16-
```
17-
18-
* Knative Eventing
19-
```bash
20-
kubectl get namespace knative-eventing -o 'go-template={{index .metadata.labels
21-
"eventing.knative.dev/release"}}'
22-
```
2312

24-
## Older versions
13+
```bash
14+
kubectl get namespace knative-serving -o 'go-template={{index .metadata.labels
15+
"serving.knative.dev/release"}}'
16+
```
2517

26-
Early versions of Knative Eventing and Serving do not have release version
27-
labels on those components. Release labels were added in the following releases:
28-
29-
* Knative Serving 0.4.0
30-
* Knative Eventing 0.7.0
31-
32-
If you have an earlier version that excludes release labels, you must obtain the
33-
version from the container images of your Knative controllers:
18+
* Knative Eventing
3419

35-
1. Query your Knative Controller to receive the `Image` URL. For example, you can run `kubectl describe deploy controller --namespace knative-serving` or `kubectl describe deploy eventing-controller --namespace knative-eventing`
36-
1. Navigate to the full `gcr.io` URL with your browser.
37-
1. Review the contents for the release version from with the `Tags` section.
20+
```bash
21+
kubectl get namespace knative-eventing -o 'go-template={{index .metadata.labels
22+
"eventing.knative.dev/release"}}'
23+
```

docs/serving/debugging-application-issues.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,7 @@ look deeper using Istio
9191

9292
### Check Ingress status
9393

94-
Before Knative 0.3 we use a LoadBalancer service call `knative-ingressgateway`
95-
to handle ingress. Since Knative 0.3 we now use `istio-ingressgateway` Service.
94+
Knative uses a LoadBalancer service called `istio-ingressgateway` Service.
9695

9796
To check the IP address of your Ingress, use
9897

0 commit comments

Comments
 (0)