Releases: tintoy/dotnet-kube-client
Releases · tintoy/dotnet-kube-client
KubeClient v2.2.0
Changes
- Introduce
KubeResultV1
and use it for delete operations (#55)
Breaking Changes
- Delete operations on Kubernetes resource clients now return
KubeResourceResultV1<TResource>
because, depending on the specified (or default) delete-propagation policy, those operations could return either the resource or aStatusV1
. This change is source-compatible (just not binary-compatible). - Instead of taking a
DeletePropagationPolicy
with a default ofForeground
, delete operations on Kubernetes resource clients now take aDeletePropagationPolicy?
with a default ofnull
(#55).