blob: 17f56b7a7200571e15dd3a75aadfb70e68f1e5d6 [file] [log] [blame]
naman.guptaec6b6cf2022-12-12 17:03:19 +05301#!/bin/bash
2# fail on error
3set -eux
4pod=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=a1mediator,app.kubernetes.io/instance=a1" -o jsonpath="{.items[0].metadata.name}")
5# this listener must run to forward the port, it's not just a config change
6# it logs a line periodically that don't add much value, capture in a file.
7rm forward.log
8kubectl port-forward "$pod" 10000:10000 > forward.log 2>&1 &