This guide will help you get started with knative on your mac in minutes
- Docker running on your machine
- kubectl
- brew (optional)
- Kind (kubernetes in docker)
- Istio
- Knative
- KN cli
Install kind following the steps here.
$ brew install kind
Run the Makefile to install istio (1.10.0) and knative (0.23)
$ make
brew tap knative/client
brew install kn
$ kn service create gotest --image=ghcr.io/itsmurugappan/hw
$ curl http://gotest-default.127.0.0.1.nip.io
{"status":"Status OK"}
$ kind delete cluster
If istio installation fails, please run the istio and knative installation again
make istio
make knative