Hey guys - any idea what is the Pulumi (in Golang)...
# general
p
Hey guys - any idea what is the Pulumi (in Golang) equivalent of
ektctl
command:
Copy code
eksctl create iamidentitymapping
Basically I am trying to add via code -
KarpenterInstanceNodeRole
to aws-auth config map another way to do it is to just to edit it manually via the command:
Copy code
kubectl edit configmap aws-auth -n kube-system
b
@prehistoric-sandwich-7272 you can now use server side apply to patch the configmap https://www.pulumi.com/registry/packages/kubernetes/how-to-guides/managing-resources-with-server-side-apply/#upsert-a-resource
p
@billowy-army-68599 Thanks!!