adorable-scooter-32619
07/23/2023, 2:56 PM~ networkProfile: {
- dockerBridgeCidr: "172.17.0.1/16"
} Resources:
~ 1 to update
12 unchanged
But when we try to run pulumi, we get the following error message:
error: Code="SkuNotAvailable" Message="Basic managed cluster SKU name is invalid. 'Basic' has been replaced by 'Base' since v2023-02-01. "
We deployed the clusters with “Basic” SkuName and “Paid” SkuTier, which looks like was renamed.
When I check the cluster via az cli, the new name is already applied.
az aks show --resource-group RG --name CN | jq '.sku'
{
"name": "Base",
"tier": "Standard"
}
To deploy aks, we used the following version of containerservice:
<http://github.com/pulumi/pulumi-azure-native-sdk/containerservice|github.com/pulumi/pulumi-azure-native-sdk/containerservice> v1.103.0
If I simply try to replace Basic with Base and Paid with Standard in the code, Pulumi wants to replace the cluster, which we don’t want 😕
I also tried to export the stack, replace the values and import the stack again, but it does not work.
How can I manipulate the pulumi stack so that pulumi does not want to replace the whole stack?
Thanks for your help :)rough-morning-53309
07/23/2023, 3:16 PMadorable-scooter-32619
07/23/2023, 3:25 PM