Workloads
In Chronosphere Telemetry Pipeline, you can use the PipelineKind attribute to specify workload (opens in a new tab) types for pipelines.
Pipelines can run as the following workload types:
- Deployment (opens in a new tab): A pipeline run as a Deployment has a configurable number of replicas. If you don’t specify a workload type, new pipelines are Deployments by default.
- DaemonSet (opens in a new tab): A pipeline run as a DaemonSet adds a copy of itself to every node in the Kubernetes cluster where it’s deployed.
Set a pipeline’s workload type
To set the workload type for a new pipeline, use the --kind
flag in
Pipeline CLI:
calyptia create pipeline --kind WORKLOAD
Replace WORKLOAD
with either deployment
or daemonSet
.
After you create a pipeline, you can’t change its workload type.