Installing Connectware Agents using the connectware-agent Helm Chart
Prerequisites
Connectware is already installed and configured.
Connectware license key.
Helm V3 installed (Helm | Installing Helm).
kubectl
installed (Install Tools).kubectl
configured with the current context pointing to your target cluster (Configure Access to Multiple Clusters).A Kubernetes namespace that will be used.
Adding the Helm Chart Repository
Add the Cybus connectware-helm
repository to your local Helm installation to use the connectware-agent
Helm chart to install Connectware agents in Kubernetes:
To verify that the Helm chart is available you can execute a Helm search:
cybus/connectware-agent standalone agents
1.0.0
1.1.5
Cybus Connectware
Creating Your values.yaml File
As with all Helm charts, the connectware-agent chart is configured using a YAML file. This file can have any name, however we will refer to it as the values.yaml file.
Create this file to start configuring your agent installation by using your preferred editor:
Installing a Single Agent
To quickly install a single agent you only need to add your Connectware license key to your values.yaml file as the Helm value licenseKey
:
You can now use this file to deploy your Connectware agent in a Kubernetes namespace of your choice:
Output
This will start a single Connectware agent named “agent”, which will connect to a Connectware installation deployed in the same namespace. Unlock the Client Registry in your Connectware admin UI to connect this agent. Refer to Client Registry — Connectware documentation to learn how to use the Client Registry to connect agents.
You can repeat the same command to apply any changes to your values.yaml file configuration in the future.
Changing the Target Connectware
If you are not deploying the agent in the same Kubernetes namespace, or even inside the same Kubernetes cluster, you need to specify the hostname under which Connectware is reachable for this agent.
In the default configuration, the following network ports on Connectware must be reachable for the agent:
TCP/443
TCP/1883
Specify the hostname of Connectware to which the agent connects to by setting the Helm value connectwareHost inside the protocolMapperAgentDefaults context of your values.yaml file. For Connectware deployments in a different Kubernetes namespace this is connectware.<namespace>
.
Example
Connectware with Separate control-plane-broker
To connect to a Connectware that uses the separate control-plane-broker, you need to set the Helm value controlPlaneBrokerEnabled to true inside the protocolMapperAgentDefaults section of your values.yaml file.
Example
Note: This adds TCP/1884 to required network ports.
Installing Multiple Agents with a Single Helm Installation
You can use the agent chart to install multiple Connectware agents. Every agent you configure needs to be named using the Helm value name in a collection entry inside the context protocolMapperAgents. This way, the default name “agent” will be replaced by the name you give the agent.
Example
This will deploy two Connectware agents, named “bender-robots” and “welder-robots”, both of which will contact the Client Registry of Connectware inside the Kubernetes namespace “cybus”, as described in Client Registry — Connectware documentation
Last updated
Was this helpful?