Hi there, We are currently trying to update our a...
# azure
a
Hi there, We are currently trying to update our azure projects to V2 with the upgrade guide, but we are currently struggling with azure-kubernetes. We updated the libs and see only 1 change (networkProfile), so it looks good.
Copy code
~ 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:
Copy code
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.
Copy code
az aks show --resource-group RG --name CN | jq '.sku'
{
  "name": "Base",
  "tier": "Standard"
}
To deploy aks, we used the following version of containerservice:
Copy code
<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 :)
r
Hey @adorable-scooter-32619, thank you for this feedback. Could you please open an issue so the team can track and investigate this issue?
a
Hi @rough-morning-53309, sure 🙂