Helm Chart
Preflight Check
If you'd like to verify your environment's compatibility, use the following script:
curl -sSL https://github.com/qpoint-io/preflight/releases/latest/download/preflight.sh | sudo bashPrerequisites
Kubernetes cluster on a Linux Host with supported Kernel (5.10+)
HelmKubectl
Install Qpoint Helm Repo
First, add the Qpoint Helm Repo:
helm repo add qpoint https://helm.qpoint.io/helm repo updatehelm search repo qpoint/qtap --versionshelm show values qpoint/qtapDeploy Qtap
You'll need to provide your Qtap configuration using a YAML file. First, create your configuration file qtap-config.yaml and supply it via your helm command:
helm install qtap qpoint/qtap \
-n qpoint \
--create-namespace \
--set logLevel=warn \
--set-file config=./qtap-config.yamlVerifying the Deployment
To verify that Qtap is running:
kubectl get pods -n qpointYou should see a pod named qtap-xxxx in the Running state.
Uninstalling Qtap
To uninstall Qtap:
helm uninstall qtap -n qpointImportant Notes
The Qtap pod requires privileged access for eBPF operations. Ensure your cluster's security policies allow this.
To set a specific version, use
--set image.tag="v0.11.3"For cloud-connected mode, keep your registration token secure and do not share it in public repositories.
For local mode, ensure your configuration is correctly formatted and contains all necessary settings.
The default configuration mounts the host's
/sysdirectory. Ensure this is allowed in your cluster.You may need to adjust resource requests and limits based on your cluster's capacity and Qtap's requirements.
When using secret management, ensure proper RBAC permissions are in place for accessing the secret.
Last updated