Update to Knative v1.0.0 (#4521)

This commit is contained in:
Lei Wang 2021-12-08 16:49:34 -08:00 committed by GitHub
parent a8b4948cf9
commit 2eed552855
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ Next, create a Kubernetes cluster using KinD, and expose the ports the ingress g
```bash ```bash
cat > clusterconfig.yaml <<EOF cat > clusterconfig.yaml <<EOF
kind: Cluster kind: Cluster
apiVersion: kind.sigs.k8s.io/v1alpha3 apiVersion: kind.sigs.k8s.io/v1alpha4
nodes: nodes:
- role: control-plane - role: control-plane
extraPortMappings: extraPortMappings:
@ -68,7 +68,7 @@ Have a nice day! 👋
Now that the cluster is running, you can add Knative components using the Knative CRDs. At the time of writing, the latest available version is 0.15. Now that the cluster is running, you can add Knative components using the Knative CRDs. At the time of writing, the latest available version is 0.15.
```bash ```bash
$ kubectl apply --filename https://github.com/knative/serving/releases/download/v0.15.0/serving-crds.yaml $ kubectl apply --filename https://github.com/knative/serving/releases/download/knative-v1.0.0/serving-crds.yaml
``` ```
```bash ```bash
@ -87,7 +87,7 @@ customresourcedefinition.apiextensions.k8s.io/images.caching.internal.knative.de
After the CRDs, the core components are next to be installed on your cluster. For brevity, the unchanged components are removed from the response. After the CRDs, the core components are next to be installed on your cluster. For brevity, the unchanged components are removed from the response.
```bash ```bash
$ kubectl apply --filename https://github.com/knative/serving/releases/download/v0.15.0/serving-core.yaml $ kubectl apply --filename https://github.com/knative/serving/releases/download/knative-v1.0.0/serving-core.yaml
``` ```
```bash ```bash
@ -132,7 +132,7 @@ Next, choose a networking layer. This example uses Kourier. Kourier is the optio
To install Kourier and make it available as a service leveraging the node ports, youll need to download the YAML file first and make a few changes. To install Kourier and make it available as a service leveraging the node ports, youll need to download the YAML file first and make a few changes.
```bash ```bash
curl -Lo kourier.yaml https://github.com/knative-sandbox/net-kourier/releases/download/v0.15.0/kourier.yaml curl -Lo kourier.yaml https://github.com/knative/net-kourier/releases/download/knative-v1.0.0/kourier.yaml
``` ```
By default, the Kourier service is set to be of type `LoadBalancer`. On local machines, this type doesnt work, so youll have to change the type to `NodePort` and add `nodePort` elements to the two listed ports. By default, the Kourier service is set to be of type `LoadBalancer`. On local machines, this type doesnt work, so youll have to change the type to `NodePort` and add `nodePort` elements to the two listed ports.