-1

I have two containers:

  • one hosting the cluster (minikube)
  • one where the deployment is triggered (with helm)

When running elm install I get

Error: INSTALLATION FAILED: Kubernetes cluster unreachable: Get "http://localhost:8080/version": dial tcp 127.0.0.1:8080: connect: connection refused

This is clear, because my cluster is running on a different host). How/Where can I set the Kubernetes Cluster IP address? When I run helm install my app should be deployed on the remote cluster.

user3579222
  • 1,103
  • 11
  • 28
  • It normally uses the `$HOME/.kube/config` file, the file mentioned in the `$KUBECONFIG` environment variable, or the other standard Kubernetes configuration. – David Maze Sep 11 '22 at 10:51

1 Answers1

0

It can be done with

helm --kube-context=

The steps to create the context are desribed here

user3579222
  • 1,103
  • 11
  • 28