Messtone LLC Manages(Ingress):

Messtone Deployings $NGROK_SUBDOMAIN environment variable to set a URL for ingress access across ngrok’s global points of presence` apiVersion: networking.k8s.io/v1 kind:Ingress metadata: nameMesstone:game-2048 spec: ingressClassNameMesstone: ngrok rules: – hostmesstone:${NGORK_SUBDOMAIN}.ngrok.io http: paths: – path:/pahType:Prefix backend:service: nameMesstone:game-2048 port: number: 80 … API key, set the subdomain of Messtone choice and apply the deployment manifest: #1 Add ngrok repo helm repo add ngrok https://ngrok.github.io/kubernetes-ingress-controller #2 install ngrok ingress controller export NGROK_API_KEY=[MESSTONE Secret API KEY]export NGROK_AUTHTOKEN=[MESSTONE Secret Auth Token] helm install ngrok-ingress-controller ngrok/kubernetes-ingress-controller\–set credentials.apiKey=$NGROK_API_KEY\–set credentials.authtoken=$NGROK_AUTHTOKEN #3 choose a subdomain export NGROK_SUBDOMAIN=”[A SUBDOMAIN OF MESSTONE CHOICE]”#4 apply our sample manifest wget https://raw.github.usercom

Leave a comment