Helm Chart

This guide will walk you through deploying Qtap on a Kubernetes cluster using Helm.

Prerequisites

  • Kubernetes cluster

  • Helm installed

  • Valid registration token from app.qpoint.io

Install Qpoint Helm Repo

First, add the Qpoint Helm Repo.

helm repo add qpoint https://helm.qpoint.io/
helm repo update

Deploy Qtap

Deploy Qtap using Helm. Replace $TOKEN with your actual registration token.

helm install qpoint-tap qpoint/qpoint-tap \
  -n qpoint \
  --create-namespace \
  --set logLevel=info \
  --set registrationToken=$TOKEN 

You can find all configurable options with:

helm show values qpoint/qpoint-tap

Last updated