This message was deleted.
# general
s
This message was deleted.
t
AKS API has changed, you should adjust your code to use
defaultNodePool
instead. See https://github.com/pulumi/examples/blob/master/azure-ts-aks-mean/cluster.ts#L22
p
Thanks! I tried doing that, it errors about the
type
Copy code
defaultNodePool: {
   name: "nodepool",
   nodeCount: config.nodeCount,
   vmSize: config.nodeSize,
   type: "Linux"
 },
I have found available options for the "Type"
t
I think you can just omit it
p
Yeah, thanks. I'll switch to
defaultNodePool
again
Update: using
defaultNodePool
fixed it. thanks @tall-librarian-49374
👍 2