Hey all, we are creating an aks cluster by using ...
# azure
a
Hey all, we are creating an aks cluster by using the azure_native package. We create the aks with
aks = containerservice.ManagedCluster( ... )
and different nodepools by using
ManagedClusterAgentPoolProfileArgs
. Now Pulumi creates the different virtualmachine scale sets for us. We also are setting
auto_upgrade_profile=ManagedClusterAutoUpgradeProfileArgs(upgrade_channel=UpgradeChannel.NODE_IMAGE)
which does`nt propagate an upgrade policy to the scaleset config. Finally we want to activate the auto reimaging process via pulumi, which seems to be in this property:
pulumi_azure_native.compute.VirtualMachineScaleSetArgs.upgrade_policy
But in the end we do not find a way set it directly while creation or later. Any Idea? Thanks a lot