xxxxプログラマのメモ

先人に感謝と敬意:自分の困ったこと調べたことのメモ

remove taint from agentpool node

az aks nodepool | Microsoft Learn

az aks nodepool update --resource-group xxxx --cluster-name aks-xxxx --name agentpool --node-taints ""      
    • node-taints

ノード プールのノード テイント。 ノード プールの既存のノード テイントを更新するか、ノード プールの新しいノード テイントを作成できます。 空の文字列 "" を渡して、すべてのテイントを削除します。

Thanks!