Skip to content
Merged
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
7 changes: 7 additions & 0 deletions install/Knative-with-IKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,15 @@ Knative depends on Istio.

1. Install Istio:
```bash
kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.2/istio-crds.yaml && \
kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.2/istio.yaml
```
Note: the resources (CRDs) defined in the `istio-crds.yaml`file are
also included in the `istio.yaml` file, but they are pulled out so that
the CRD definitions are created first. If you see an error when creating
resources about an unknown type, run the second `kubectl apply` command
again.

1. Label the default namespace with `istio-injection=enabled`:
```bash
kubectl label namespace default istio-injection=enabled
Expand Down