One can always use the k9s program (set up and used as advised here). Alternatively it is possible to directly open a shell into, or transfer files from a pod using the following incantations from one's own shell:
kubectl get pods --context=cognitor-aks --namespace=cognitera-platform
kubectl exec -it --context=cognitor-aks --namespace=<namespace> pod/<pod name> -- bash
kubectl cp --context=cognitor-aks --namespace=<namespace> ./local-file.txt <pod name>:/tmp/remote-file.txt
kubectl port-forward --context=hetzner-staging --namespace=cognitera-platform svc/postgresql 35001:5432