To ensure a smooth and standardized deployment of Connectware agents on your Kubernetes cluster, we recommend that you use the connectware-agent Helm chart. This approach streamlines the installation process and provides a more robust and maintainable solution compared to manual deployment.
Deploying Agents Using the connectware-agent Helm Chart
The connectware-agent Helm chart simplifies the deployment of Connectware agents on Kubernetes. Here is an overview of the steps:
Add the Cybus Helm repository to your local Helm installation.
Update your local Helm chart repository.
Install the connectware-agent chart via Helm commands.
For detailed instructions on how to install agents via the connectware-agent Helm chart, see the this chapter.
Deploying Agents Manually
While manual deployment offers more control, it requires a deeper understanding of Kubernetes concepts and involves more steps than using the Helm chart.
To manually deploy agents on a Kubernetes cluster:
Prepare a YAML manifest file with the necessary configurations. You'll need to set the same parameters as in other deployment methods.
Create a Kubernetes secret containing the Cybus registry credentials. This is required for pulling Connectware container images from the registry.
Deploy the manifest, which uses an emptyDir volume for storing agent data. However, for production environments, we recommend replacing this with a persistent volume to ensure data durability.
Use the following command to create a secret named cybus-docker-registry:
apiVersion: apps/v1
kind: Deployment
metadata:
# The id for this kubernetes object
name: connectware-agent-deployment
labels:
# Attach labels for easy group selection
app: protocol-mapper-agent
spec:
replicas: 1
selector:
matchLabels:
app: protocol-mapper-agent
template:
metadata:
labels:
app: protocol-mapper-agent
spec:
# Configure volumes used by the agent to store data across restarts
volumes:
- name: agent-data-volume
emptyDir: {}
containers:
- name: protocol-mapper-agent
# Container image. Watch out: Must use identical version tag to current Connectware version!
image: registry.cybus.io/cybus/protocol-mapper:2.0.0
env:
# Make the protocol-mapper runs as an agent
- name: CYBUS_AGENT_MODE
value: 'distributed'
# Set the name of the agent. This must match the agentName used in the commissioning file.
- name: CYBUS_AGENT_NAME
value: 'myAgent'
# The IP address or hostname where the Connectware is running
- name: CYBUS_HOSTNAME_INGRESS
value: 'connectware'
ports:
# Expose the ports used by the agent.
- containerPort: 443
# Configure mount points
volumeMounts:
- mountPath: /data
name: agent-data-volume
# Configure resource limits
resources:
limits:
cpu: 4000m
memory: 4Gi
# Kubernetes secret used to pull the images from the Cybus registry
imagePullSecrets:
- name: cybus-docker-registry