dotfiles/bin/kube-portforward
2018-04-18 09:13:33 +02:00

8 lines
235 B
Bash
Executable file

#!/bin/bash
set -xeuo pipefail
selector="$1"
shift
pod=$(kubectl get pods -l ${selector} --field-selector=status.phase=Running -o template --template="{{with index .items 0}}{{.metadata.name}}{{end}}")
kubectl port-forward $pod "$@"