Install the Edge Delta Agent with kubectl
2 minute read
Overview
Note: The kubectl installation method is no longer supported. Please use Helm. If you require a manifest please generate one using Helm.
To generate a Kubernetes manifest from the helm chart:
helm template edgedelta edgedelta/edgedelta \
--version vX.XX.X \
--set secretApiKey.value=12345678987654321 \
--set edApiEndpoint="https://api.edgedelta.com" \
-n edgedelta > edgedelta-manifest.yaml
Replace the X.XX.X
with the version number and 12345678987654321
with your pipeline’s key.
See Helm documentation for more details on using this command.
The Edge Delta pipeline can be installed in a Kubernetes environment using kubectl. It is installed by default as a DaemonSet - pods on every node. It analyses logs from each pod in each node as well as metrics from the cluster, and streams them to the configured destinations.
Install with Default Settings
You can install Edge Delta using Helm without changing any default settings.
Install an Edge Delta Pipeline
Use the Kubernetes template option while following these steps:
- Click Pipelines.
- Click New Pipeline.
- Select Edge.
- Select the appropriate environment template.
- Specify a name to identify the pipeline.
- Click Generate Deployment Command.
- Execute the installation commands, they include the unique ID for the pipeline.
- Click View Pipeline.
- Click View Sources Found and select the sources you want to monitor.
- Click Add Sources.
Install with Custom Settings
You can create your own custom manifest. To start, download the default manifest and add custom variables to it. Then apply the local file, in this example the custom-agent.yml file in the current folder is applied:
kubectl apply -f custom-agent.yml