0

When I run a command like

helm install MyApp

How do I know what cluster it will install too using Google GKE?

Evan Carroll
  • 2,921
  • 6
  • 37
  • 85

1 Answers1

0

Helm just uses whatever your kube config is set to, you can see that with,

kubectl config current-context

Or you can view the raw config with

kubectl config view

And it should be listed as current-context

Evan Carroll
  • 2,921
  • 6
  • 37
  • 85