This message was deleted.
# general
a
This message was deleted.
h
have you looked thru these docs: https://rancher.com/docs/rancher/v2.6/en/
In addition you can also checkout community.suse.com and attend one of many free meetups
b
Thanks for your response. I've gone through it and installed basic k8s cluster on VMs. But I wants to have multiple control plane components. For HA Is there a way to define it
h
Yes, so which Kubernetes distribution is your cluster running? For example, when you run
kubectl get nodes
, it will show you something similar to below:
Copy code
kubectl get nodes
NAME      STATUS   ROLES                              AGE   VERSION
node1     Ready    control-plane,etcd,master,worker   16h   v1.22.13+rke2r1
above you can see I have rke2 cluster (from what is shown under VERSION column). Then their docs will guide how to do a HA deployment...
b
It's v1.24.4+rke2r1 With one master And two worker nodes
I will go through this docs as well
h