I’m using eks.Cluster to deploy a k8s cluster. I’d...
# kubernetes
p
I’m using eks.Cluster to deploy a k8s cluster. I’d like to use calico vxlan for ipam, which means I need to delete the aws-node daemonset and then apply the calico-vxlan manifests prior to building the first nodegroup. is there a way to deploy the eks infra up to that point, ensure the daemonset doesn’t exist, and then subsequently deploy the remaining aspects of my stack? (ideally all during a single pulumi up invocation)
b
unfortunately this isn't possible due to EKS limitations the best method is t build a dynamic provider that deletes the daemonset
p
😞 ok