Hi, what’s the best practice for upgrading the eks...
# kubernetes
m
Hi, what’s the best practice for upgrading the eks kubernetes version and managed node group version? Should I be doing it through aws console or via pulumi’s
version
property in
eks.Cluster
and
eks.ManagedNodeGroup
? I’m just not sure if there will be a down time if I use pulumi since aws console allows for rolling updates option
s
I would use the Cluster's
version
property in the
ManagedNodeGroup
. Pulumi just makes an API call to AWS to initiate the upgrade, so the behavior is the same as if you went to the console to do the same stuff.