Good day, I am manually creating k3d cluster on a fresh AWS EC2 instance.
1. Installed docker, k3s, k3d.
2. Run k3d command to create cluster with 3 + 3 nodes (k3d cluster create my-cluster --servers 3 --agents 3).
Issue- when performing kubectl get nodes, I assume to list all created k3d nodes, instead, I get EC2 instance. When running k3d node ls, I clearly see all created nodes.
Question- how can I work in the k3d cluster, example, install helm charts in cluster instead of on EC2 instance. Many thanks!