hi ,
when we install managed kubernetes eks cluster , where will be the tools like kubectl , prometheus grafana can be installed . we don’t have accesss to the master in eks
You don’t need access to the controlplane nodes to install those things. kubectl you’ll install wherever you want to access the cluster from – it’s client-side configuration and a client side tool. You’ll typically install something like prometheus and grafana using a tool like helm, which is also a client side tool. With eks you are not putting your work-loads on masters; you’re putting them on workers.
thanks for the reply , understood thank you