Installing k3s cluster on azure vm #10017
Unanswered
khalidkhushal
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have installed k3s cluster on azure vm using following cmd:
curl -sfL https://get.k3s.io | INSTALL_K3S_VERSION="v1.24.2+k3s1" INSTALL_K3S_EXEC="server --config ~/k3s-config-files/server-config.yaml" sh -s - --write-kubeconfig-mode 644
I have installed bare metal ingress controller and a loadbalancer service using:
kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/controller-v1.3.1/deploy/static/provider/baremetal/deploy.yaml
here is the result for
kubectl get svc -A
I can see the internal IP of node as external IP in loadbalancer but I can not connect to the cluster using Public IP of VM. I am trying to debug but not able to find the reason.
Beta Was this translation helpful? Give feedback.
All reactions