Determining apiversion value for kustomization resource

Hi Team,

How to find apiversion value for kustomization resource ? It’s neither available in kubernetes documentation nor in the command mentioned below:

kubectl api-resources | grep -i “Kustomize”

Thanks,
Sakshi

Kustomize isn’t an in-cluster resource type, so you won’t see it with kubectl.

Just remember that it is this if you need to use it

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization

Thanks Alister.

Regards,
Sakshi