Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add support for minikube, terragrunt, tgenv #1014

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
19 changes: 19 additions & 0 deletions src/minikube.ts
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,25 @@ const completionSpec: Fig.Spec = {
},
],
},
{
name: "dashboard",
description:
"Access the Kubernetes dashboard running within the minikube cluster",
options: [
{
name: "--port",
description:
"Exposed port of the proxyfied dashboard. Set to 0 to pick a random port",
yinchuandong marked this conversation as resolved.
Show resolved Hide resolved
args: {
name: "int",
},
},
{
name: "--url",
description: "Display dashboard URL instead of opening a browse",
},
],
},
{
name: "status",
description: "Gets the status of a local Kubernetes cluster",
Expand Down