This message was deleted.
# general
a
This message was deleted.
1
👀 1
c
localhost:8080
is what you get if you don’t have a kubeconfig, Did you forget to set $KUBECONFIG to point at a valid file?
l
I have KUBECONFIG set in in the ~/.zshrc
Copy code
export KUBECONFIG="/Users/MYUSER/.kube/config"
c
is that a valid file?
l
kubeconfig has this, where XX are replacing the actual secret data
Copy code
apiVersion: v1
kind: Config
clusters:
  - name: rancher-desktop
    cluster:
      server: <https://127.0.0.1:6443>
      certificate-authority-data: XX
      insecure-skip-tls-verify: false
users:
  - name: rancher-desktop
    user:
      client-certificate-data: XX
      client-key-data: XX
contexts:
  - name: rancher-desktop
    context:
      cluster: rancher-desktop
      name: rancher-desktop
      user: rancher-desktop
preferences: {}
current-context: ""
I ended up uninstall the k8s client, docker and docker compose, removed the bad config file. then reinstalled RD and now it seems to work again. 🤷
q
Pretty destructive 🙂. I had it conflicting with minikube so I just uninstalled minikube, backed up and removed the config from ~/.kube and did a "factory reset" on Rancher Desktop.