Alfred.app keyword trigger workflow that opens current Minikube Kubernetes Dashboard in your default browser
Mac only - requires Alfred.app and Python (which should already be on your system anyway).
This works with any URL but for this example I'm using Minikube. When you start your Minikube session pass the --url flag and redirect the url to a temp file:
minikube dashboard --url >| /tmp/kubedash
Download, install, and enable the workflow binary in this repo: OpenMinikubeDashboardURL.alfredworkflow
Now whenever you need to check your dashboard invoke Alfred and type keyword 'minidash' the URL will open in your default system browser (via this command: python -m webbrowser -t "$(tail -n 1 /tmp/kubedash)")
Also included in the binary are two simple bash keyword snippet expansions:
mkipcopies/pastes current Minikube machine's IP address from clipboard (provided current Kubernetes context is 'minikube'...check viakubectl config current-context)mkdashpastes the current URL of the Minikube dashboard (without opening browser)