This message was deleted.
# aws
s
This message was deleted.
s
Do you mean that you want to update kubectl to point to your EKS cluster?
if so you can just use local from “@pulumi/command” and do something like (typescript example)
Copy code
const kc = new local.Command("execkc", {
    create: pulumi.interpolate`aws eks update-kubeconfig --name ${cluster.eksCluster.name}`
});
where cluster is
Copy code
const cluster = new eks.Cluster(...);
b
kubelet is the process that runs on each eks node and is used to configure the node in the cluster, make it join the cluster.
In order to configure nodeLocalDns, you need to change parameters for this process as indicated in the link.