I am using Kubent to diagnose API deprecation before upgrading my Kubernetes cluster. I am having hard time finding information on how to properly read the programs' output.
-----------
>>> Deprecated APIs removed in 1.22 <<<
-----------
KIND NAMESPACE NAME API_VERSION REPLACE_WITH (SINCE)
ClusterRoleBinding <undefined> kubernetes-dashboard rbac.authorization.k8s.io/v1beta1 rbac.authorization.k8s.io/v1 (1.8.0)
CustomResourceDefinition <undefined> authorizationpolicies.security.istio.io apiextensions.k8s.io/v1beta1 apiextensions.k8s.io/v1 (1.16.0)
Notice the Column REPLACE_WITH (SINCE), which created my confusion because k8 is far from 1.8.0 version. Also, the Deprecated APIs... message suggest that those Endpoints enclosed in <<>> will be deprecated in the last release.
So, may you please explain how should this output be interpreted?