PodDisruptionBudget (PDB) リソースを使用して AKS Arc クラスターを完全に削除できない
適用対象: Azure Local バージョン 23H2
PodDisruptionBudget (PDB) リソースを持つ AKS Arc クラスターを削除すると、PDB リソースの削除に失敗する可能性があります。 既定では、PDB はワークロード ID が有効な AKS Arc クラスターにインストールされます。
回避策
AKS Arc クラスターを削除する前に、AKS Arc クラスターの kubeconfig にアクセスし、すべての PDB を削除します。
AKS Arc クラスターにアクセスします。
az connectedk8s proxy -n $aks_cluster_name -g $resource_group_name
PDB を確認します。
kubectl get pdb -A
すべての PDB を削除します。 ワークロード ID の有効化から生成された PDB を削除する例を次に示します。
kubectl delete pdb azure-wi-webhook-controller-manager -n arc-workload-identity
AKS Arc クラスターを削除します。
az aksarc delete -n $aks_cluster_name -g $resource_group_name