I have a azure.containerservice.KubernetesCluster ...
# general
g
I have a azure.containerservice.KubernetesCluster and a kubernetes.Provider created from it. When I try to increase the node-count of the cluster, pulumi wants to replace most of the things I have deployed on the cluster (Deployments, Services, etc.). Is this the expected behavior?
w
Not expected. But sounds similar to https://github.com/pulumi/pulumi/issues/2012. If you have additional details on repro steps, fee free to add them there so we can look into what is causing this. Are you using
.get
to get the KubernetesCluster?
g
No, I created the cluster from Pulumi code too
export const k8sProvider = new k8s.Provider(“BZV2-K8S-Provider”, { kubeconfig: k8sCluster.kubeConfigRaw, });
I added the details I can see to the issue
I also saved the whole console output, if you would like to look at any other part of it (but it contains secrets, so I can’t share it in there). Hope it helps!