This repository is now deprecated. The latest charts are available on our new Helm repository https://helm.itrsgroup.com.
Add the ITRS repo:
helm repo add itrs https://itrs-group.github.io/helm-charts
The charts use images in the ITRS Docker registry. Create a registry secret before deploying a chart:
kubectl create secret docker-registry itrsdocker \
--docker-server=https://docker.itrsgroup.com \
--docker-username=USERNAME \
--docker-password=PASSWORD \
-n NAMESPACE
View a chart’s configuration options:
helm show values itrs/netprobe
Install a chart:
helm install -f config.yaml netprobe itrs/netprobe
NOTE: When using a chart with a pre-release version (i.e. alpha or beta), it is necessary to
append --devel
to each Helm command, otherwise Helm will not detect the chart in the repository.
helm install -f config.yaml netprobe itrs/netprobe --devel