Custom Resource Definition Names Patch
data class CustomResourceDefinitionNamesPatch(val categories: List<String>? = null, val kind: String? = null, val listKind: String? = null, val plural: String? = null, val shortNames: List<String>? = null, val singular: String? = null)
CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition
Constructors
Properties
Link copied to clipboard
categories is a list of grouped resources this custom resource belongs to (e.g. 'all'). This is published in API discovery documents, and used by clients to support invocations like kubectl get all
.
Link copied to clipboard
shortNames are short names for the resource, exposed in API discovery documents, and used by clients to support invocations like kubectl get <shortname>
. It must be all lowercase.