...
1---
2apiVersion: apiextensions.k8s.io/v1
3kind: CustomResourceDefinition
4metadata:
5 name: network-attachment-definitions.k8s.cni.cncf.io
6spec:
7 group: k8s.cni.cncf.io
8 scope: Namespaced
9 names:
10 plural: network-attachment-definitions
11 singular: network-attachment-definition
12 kind: NetworkAttachmentDefinition
13 shortNames:
14 - net-attach-def
15 versions:
16 - name: v1
17 served: true
18 storage: true
19 schema:
20 openAPIV3Schema:
21 type: object
22 properties:
23 spec:
24 type: object
25 properties:
26 config:
27 type: string
View as plain text