Files from python version needed from testing.
[ric-plt/a1.git] / integration_tests / portforward.sh
diff --git a/integration_tests/portforward.sh b/integration_tests/portforward.sh
new file mode 100644 (file)
index 0000000..17f56b7
--- /dev/null
@@ -0,0 +1,8 @@
+#!/bin/bash
+# fail on error
+set -eux
+pod=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=a1mediator,app.kubernetes.io/instance=a1" -o jsonpath="{.items[0].metadata.name}")
+# this listener must run to forward the port, it's not just a config change
+# it logs a line periodically that don't add much value, capture in a file.
+rm forward.log
+kubectl port-forward "$pod" 10000:10000 > forward.log 2>&1  &