Apache Camel K is a lightweight integration platform, born on Kubernetes, with serverless superpowers.
This chart deploys the Camel K operator and all resources needed to natively run Apache Camel integrations on any Kubernetes cluster.
To install the chart, first add the Camel K repository:
$ helm repo add camel-k https://apache.github.io/camel-k/charts
If you are installing on OpenShift, Camel K can use the OpenShift internal registry to store and pull images.
Installation on OpenShift can be done with command:
$ helm install \ --generate-name \ --set platform.cluster=OpenShift \ camel-k/camel-k
When running on a cluster with no embedded internal registry, you need to specify the address and properties of an image registry that the cluster can use to store image.
For example, on Minikube you can enable the internal registry and get its address:
$ minikube addons enable registry $ export REGISTRY_ADDRESS=$(kubectl -n kube-system get service registry -o jsonpath='{.spec.clusterIP}')
Then you can install Camel K with:
$ helm install \ --generate-name \ --set platform.build.registry.address=${REGISTRY_ADDRESS} \ --set platform.build.registry.insecure=true \ camel-k/camel-k
The configuration section lists additional parameters that can be set during installation.
Tip: List all releases using
helm list
To uninstall/delete the camel-k
Deployment:
$ helm delete camel-k
The command removes all the Kubernetes resources installed.
The following table lists the most commonly configured parameters of the Camel K chart and their default values. The chart allows configuration of an IntegrationPlatform
resource, which among others includes build properties and traits configuration. A full list of parameters can be found in the operator specification.
Parameter | Description | Default |
---|---|---|
platform.build.registry.address | The address of a container image registry to push images | |
platform.build.registry.secret | A secret used to push/pull images to the Docker registry | |
platform.build.registry.organization | An organization on the Docker registry that can be used to publish images | |
platform.build.registry.insecure | Indicates if the registry is not secured | true |
platform.cluster | The kind of Kubernetes cluster (Kubernetes or OpenShift) | Kubernetes |
platform.profile | The trait profile to use (Knative, Kubernetes or OpenShift) | auto |
operator.global | Indicates if the operator should watch all namespaces | false |
operator.resources | The resource requests and limits to use for the operator | |
operator.securityContext | The (container-related) securityContext to use for the operator | |
operator.tolerations | The list of tolerations to use for the operator |
We'd like to hear your feedback and we love any kind of contribution!
The main contact points for the Camel K project are the GitHub repository and the Chat room.