There are various options for creating a development cluster:
You can run Camel K integrations on OpenShift using the Minishift cluster creation tool. Follow the instructions in the getting started guide for the installation.
After installing the minishift
binary, you need to enable the admin-user
addon:
minishift addons enable admin-user
Note
|
the admin user addon should be enabled before starting the cluster for the first time |
Then you can start the cluster with:
minishift start
You can now proceed to install Camel K.
You can run Camel K integrations on plain Kubernetes using the Minikube cluster creation tool. Follow the instructions in the official doc for the installation.
Start a new instance of Minikube using the command:
minikube start
After the startup process is completed, you need to enable the registry
addon:
minikube addons enable registry
You can now proceed to install Camel K.