1

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?

Ryan Gregg
  • 2,015
  • 13
  • 16

1 Answers1

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:

  1. Install Istio: kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
  2. 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