When you read about API Groups in Kubernetes, you may come across group names like core/v1
, batch/v1
, storage.k8s.io/v1
, and scheduling.k8s.io/v1
. Some of these groups have the k8s.io
postfix, while others do not. It can be confusing when specifying the apiVersion in your Kubernetes manifests, as you need to specify it as like v1
, batch/v1
, and storage.k8s.io/v1
.
Knowing the reason will make me less confused.
Thanks.