I'm trying to install Knative Serving on my own local k8s cluster. All the instructions are specific to cloud providers though, are there instructions for installing on a generic k8s cluster?
Asked
Active
Viewed 219 times
1 Answers
3
Found a pull request, which answers this question: https://github.com/knative/docs/pull/251
The instructions are basically the same as installing on another cluster:
- Install Istio:
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
- Label the default namespace with
istio-injection=enabled
:kubectl label namespace default istio-injection=enabled
Then install Knative:
kubectl apply -f https://storage.googleapis.com/knative-
releases/serving/latest/release.yaml

Ryan Gregg
- 2,015
- 13
- 16