37 lines
764 B
YAML
37 lines
764 B
YAML
apiVersion: apiextensions.k8s.io/v1
|
|
kind: CustomResourceDefinition
|
|
metadata:
|
|
name: shirts.stable.example.com
|
|
spec:
|
|
group: stable.example.com
|
|
scope: Namespaced
|
|
names:
|
|
plural: shirts
|
|
singular: shirt
|
|
kind: Shirt
|
|
versions:
|
|
- name: v1
|
|
served: true
|
|
storage: true
|
|
schema:
|
|
openAPIV3Schema:
|
|
type: object
|
|
properties:
|
|
spec:
|
|
type: object
|
|
properties:
|
|
color:
|
|
type: string
|
|
size:
|
|
type: string
|
|
selectableFields:
|
|
- jsonPath: .spec.color
|
|
- jsonPath: .spec.size
|
|
additionalPrinterColumns:
|
|
- jsonPath: .spec.color
|
|
name: Color
|
|
type: string
|
|
- jsonPath: .spec.size
|
|
name: Size
|
|
type: string
|