😢
client-goのfake clientではServer side apply を扱えない
メモレベルの記事です。
2021/8/1現在、client-goのfake clientでServer side applyをしようとするとnodes "nodename" not found
もしくはPatchType is not supported
のエラーが返ってきます。
こちらのissueにある通り、現状ユーザー側で対応できることは
Return a better error that explains that apply testing using the fake client requires registering a reactor (see the example in #99462)
のみです。fakeclientにはPrependReactor
というメソッドが生えており、これを用いて自分の目的に沿ったReactorを自分で追加することになります。
issueで参考として挙げられているのはこちらです↓
Discussion