Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1.22 KB

cluster-setup.adoc

File metadata and controls

47 lines (31 loc) · 1.22 KB

Creating a Development Cluster

There are various options for creating a development cluster:

Minishift

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.

Minikube

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.