You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* 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)
{"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"}
Copy file name to clipboardExpand all lines: docs/install/Knative-with-MicroK8s.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ type: "docs"
8
8
[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).
9
9
This guide walks you through the installation of Knative using MicroK8s.
10
10
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.
12
12
Additionally if you wish to contribute or report an issue please visit [MicroK8s Github](https://github.com/ubuntu/microk8s).
13
13
14
14
You can find [guides for other platforms here](./README.md).
@@ -30,9 +30,7 @@ sudo snap alias microk8s.kubectl kubectl
30
30
```shell
31
31
echo'N;'| microk8s.enable knative
32
32
```
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.
36
34
37
35
You can check the status of Knative pods using the following commands:
Copy file name to clipboardExpand all lines: docs/install/check-install-version.md
+10-24Lines changed: 10 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,33 +5,19 @@ weight: 20
5
5
type: "docs"
6
6
---
7
7
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
10
9
`[component].knative.dev/release` label with the following commands:
11
10
12
11
* 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
-
```
23
12
24
-
## Older versions
13
+
```bash
14
+
kubectl get namespace knative-serving -o 'go-template={{index .metadata.labels
15
+
"serving.knative.dev/release"}}'
16
+
```
25
17
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
34
19
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
0 commit comments