On Kubernetes it's possible to use Helm or install it via Deployment resource specification.
Helm
Make sure you have helm installed in your machine. Check Helm installation page
shellVERSION=$(curl -s https://releases.hoop.dev/release/latest.txt) helm upgrade --install hoopagent \ https://releases.hoop.dev/release/$VERSION/hoopagent-chart-$VERSION.tgz \ --set "config.HOOP_KEY=<AUTH-KEY>"
Using Manifests
shellVERSION=$(curl -s https://releases.hoop.dev/release/latest.txt) helm template hoopagent \ https://releases.hoop.dev/release/$VERSION/hoopagent-chart-$VERSION.tgz \ --set 'config.HOOP_KEY=<AUTH-KEY>' \ --set 'image.tag=1.21.31' \ --set 'extraSecret=AWS_REGION=us-east-1'
Starting from version 1.21.9, there is only one way to configure the agent key, which is by using the
config.HOOP_KEY
configuration. This requires creating a key in a DSN format in the API. To use legacy options, use the Helm chart version 1.21.4.