...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 name: viewrequests.edge.ncr.com
5 annotations:
6 controller-gen.kubebuilder.io/version: (unknown)
7spec:
8 group: edge.ncr.com
9 names:
10 kind: ViewRequest
11 listKind: ViewRequestList
12 plural: viewrequests
13 singular: viewrequest
14 scope: Namespaced
15 versions:
16 - name: v1alpha1
17 schema:
18 openAPIV3Schema:
19 type: object
20 description: ViewRequest is the Schema for the viewrequests API
21 properties:
22 apiVersion:
23 type: string
24 description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
25 kind:
26 type: string
27 description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
28 metadata:
29 type: object
30 spec:
31 type: object
32 description: ViewRequestSpec defines the desired state of ViewRequest
33 properties:
34 name:
35 type: string
36 namespace:
37 type: string
38 kind:
39 type: string
40 group:
41 type: string
42 keepCurrent:
43 type: boolean
44 version:
45 type: string
46 required:
47 - group
48 - keepCurrent
49 - kind
50 - version
51 status:
52 type: object
53 description: ViewRequestStatus defines the observed state of ViewRequest
54 properties:
55 resources:
56 type: string
57 format: byte
58 error:
59 type: object
60 description: Error contains error information when an error occurs on the agent
61 properties:
62 status:
63 type: string
64 message:
65 type: string
66 served: true
67 storage: true
68 subresources:
69 status: {}
View as plain text