This message was deleted.
# aws
s
This message was deleted.
b
How would you do this in a typical EKS deployment? Typically I believe you’d specify a custom launch configuration with your own user userdata that brings up the kube components.
b
That's what I'm also trying to find out!
b
I think you’d do it the same way in pulumi. Note that in EKS you can’t control the api server itself
b
Yeah I was reading it's being deployed in a Amazon controlled VPC (https://docs.aws.amazon.com/eks/latest/userguide/eks-networking.html) But what I really want is to send some custom flags to it. I just can't find where to hook myself in order to do it
Basically I want to change these parameters: • anonymous-auth = "false" (true by default) • allow-privileged = "false" (also true by default) any some other flags
b
I’m pretty sure that’s not going to be possible if it requires a change to
kube-api-server
, unless the EKS API supports those specific flags.