Using Helm, how do I configure the Helm Chart to automatically include the port forwarding?
Documentation I have seen so far indicate I create a Helm chart, I run ...
helm install myhelmchart
... then forward the port manually...
export POD_NAME=$(kubectl get pods --namespace default -l "app.kubernetes.io/name=myhelmchart,app.kubernetes.io/instance=pouring-rat" -o jsonpath="{.items[0].metadata.name}")
echo "Visit http://127.0.0.1:8080 to use your application"
kubectl port-forward $POD_NAME 8080:80