mirror of https://github.com/knative/docs.git
minor fixes for console stuff (#235)
Signed-off-by: Doug Davis <dug@us.ibm.com>
This commit is contained in:
parent
5f6deed9ca
commit
4e9fb40c9d
|
@ -133,7 +133,10 @@ Knative depends on Istio.
|
|||
kubectl label namespace default istio-injection=enabled
|
||||
```
|
||||
1. Monitor the Istio components until all of the components show a `STATUS` of
|
||||
`Running` or `Completed`: `bash kubectl get pods -n istio-system`
|
||||
`Running` or `Completed`:
|
||||
```bash
|
||||
kubectl get pods -n istio-system
|
||||
```
|
||||
|
||||
It will take a few minutes for all the components to be up and running; you can
|
||||
rerun the command to see the current status.
|
||||
|
@ -146,9 +149,14 @@ rerun the command to see the current status.
|
|||
|
||||
1. Next, we will install [Knative Serving](https://github.com/knative/serving)
|
||||
and its dependencies:
|
||||
`bash kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml`
|
||||
```bash
|
||||
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml
|
||||
```
|
||||
1. Monitor the Knative components until all of the components show a `STATUS`
|
||||
of `Running`: `bash kubectl get pods -n knative-serving`
|
||||
of `Running`:
|
||||
```bash
|
||||
kubectl get pods -n knative-serving
|
||||
```
|
||||
|
||||
Just as with the Istio components, it will take a few seconds for the Knative
|
||||
components to be up and running; you can rerun the command to see the current
|
||||
|
|
Loading…
Reference in New Issue