Configuring registry on 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

Minikube provides a simple embedded local container registry that it makes the default choice for local development and demo purposes. After the startup process is completed, you need to enable the registry addon:

minikube addons enable registry

Alternatively, you can also start an instance with the registry addon in one command:

minikube start --addons registry

Once the registry is available, you can reference the namespace and service registry as:

REGISTRY_INSECURE: true
REGISTRY_SVC_NAMESPACE: kube-system
REGISTRY_SVC_NAME: registry