Infrastructure
Kubernetes
Installation
Add the ngrok Kubernetes Operator to Helm.
helm repo add ngrok https://charts.ngrok.com
You’ll need to add an ngrok API key and Authtoken in the next step. Sign up for a free account and follow the instructions to get your endpoint online.
export NGROK_AUTHTOKEN=YOUR_NGROK_AUTHTOKEN_HERE
helm install ngrok-operator ngrok/ngrok-operator \
--namespace ngrok-operator \
--create-namespace \
--set credentials.apiKey=$NGROK_API_KEY \
--set credentials.authtoken=$NGROK_AUTHTOKEN
Verify the operator is running and healthy.
kubectl get pods -n ngrok-operator