Vintner
Commands

Cluster Commands

List provisioned Kubernetes clusters from the CLI.

Cluster Commands

grape clusters list

List all provisioned Kubernetes clusters.

grape clusters list

Output:

NAME                    PROVIDER  REGION      ENDPOINT                                          ARGOCD
api-backend-production  aws       eu-west-1   https://ABC123.gr7.eu-west-1.eks.amazonaws.com    https://argocd.example.com
data-pipeline-staging   gcp       us-east4    https://34.123.45.67                              https://argocd-staging.example.com

Shows clusters from all active vines with:

  • Cluster name and cloud provider
  • Region
  • Kubernetes API endpoint
  • ArgoCD dashboard URL (if installed)

Accessing a Cluster

After identifying a cluster, configure kubectl using the provider-specific command:

aws eks update-kubeconfig --name api-backend-production --region eu-west-1
kubectl get nodes
gcloud container clusters get-credentials data-pipeline-staging --region us-east4
kubectl get nodes
az aks get-credentials --name my-cluster --resource-group my-rg
kubectl get nodes

On this page