Reputation: 2035
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?
Upvotes: 1
Views: 244
Reputation: 2035
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:
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
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
Upvotes: 3