calico ネットワーク プラグインを使用して 3 ノードの Kubernetes クラスターをインストールしました。何らかの理由で、kubernetes を完全に削除し、別のネットワーク プラグインである Flannel で再インストールすることにしました。
最初のコンテナーをデプロイしようとするまでは、すべて問題ないように見えました。
kubectl describe pod/cassandra
次のエラーを返します。
Unknown desc = [failed to set up sandbox container "957f68c3cbe9b230b0e2bd6729a12c340f903de568622e28e335f7b48563a445" network for pod "cassandra-d7db46b86-dz7ck": networkPlugin cni failed to set up pod "cassandra-d7db46b86-dz7ck_default" network: error getting ClusterInformation: Get https://[10.96.0.1]:443/apis/crd.projectcalico.org/v1/clusterinformations/default: x509: certificate signed by unknown authority (possibly because of "crypto/rsa: verification error" while trying to verify candidate authority certificate "kubernetes"), failed to clean up sandbox container "957f68c3cbe9b230b0e2bd6729a12c340f903de568622e28e335f7b48563a445" network for pod "cassandra-d7db46b86-dz7ck": networkPlugin cni failed to teardown pod "cassandra-d7db46b86-dz7ck_default" network: error getting ClusterInformation: Get https://[10.96.0.1]:443/apis/crd.projectcalico.org/v1/clusterinformations/default: x509: certificate signed by unknown authority (possibly because of "crypto/rsa: verification error" while trying to verify candidate authority certificate "kubernetes")]
Normal SandboxChanged 3s (x3 over 18s) kubelet, <node name> Pod sandbox changed, it will be killed and re-created.
エラーを読むと、calico プラグインを削除して Flannel プラグインをインストールしたにもかかわらず、まだ Kubernetes で calico プラグインが使用されているようです。
どうすればこの混乱をきれいにできますか?