...
1apiVersion: apiextensions.k8s.io/v1
2kind: CustomResourceDefinition
3metadata:
4 annotations:
5 cnrm.cloud.google.com/version: 0.0.0-dev
6 creationTimestamp: null
7 labels:
8 cnrm.cloud.google.com/managed-by-kcc: "true"
9 cnrm.cloud.google.com/stability-level: alpha
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: computeglobalnetworkendpointgroups.compute.cnrm.cloud.google.com
13spec:
14 group: compute.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ComputeGlobalNetworkEndpointGroup
19 plural: computeglobalnetworkendpointgroups
20 shortNames:
21 - gcpcomputeglobalnetworkendpointgroup
22 - gcpcomputeglobalnetworkendpointgroups
23 singular: computeglobalnetworkendpointgroup
24 preserveUnknownFields: false
25 scope: Namespaced
26 versions:
27 - additionalPrinterColumns:
28 - jsonPath: .metadata.creationTimestamp
29 name: Age
30 type: date
31 - description: When 'True', the most recent reconcile of the resource succeeded
32 jsonPath: .status.conditions[?(@.type=='Ready')].status
33 name: Ready
34 type: string
35 - description: The reason for the value in 'Ready'
36 jsonPath: .status.conditions[?(@.type=='Ready')].reason
37 name: Status
38 type: string
39 - description: The last transition time for the value in 'Status'
40 jsonPath: .status.conditions[?(@.type=='Ready')].lastTransitionTime
41 name: Status Age
42 type: date
43 name: v1alpha1
44 schema:
45 openAPIV3Schema:
46 properties:
47 apiVersion:
48 description: 'apiVersion defines the versioned schema of this representation
49 of an object. Servers should convert recognized schemas to the latest
50 internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources'
51 type: string
52 kind:
53 description: 'kind is a string value representing the REST resource this
54 object represents. Servers may infer this from the endpoint the client
55 submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds'
56 type: string
57 metadata:
58 type: object
59 spec:
60 properties:
61 defaultPort:
62 description: |-
63 Immutable. The default port used if the port number is not specified in the
64 network endpoint.
65 type: integer
66 description:
67 description: |-
68 Immutable. An optional description of this resource. Provide this property when
69 you create the resource.
70 type: string
71 networkEndpointType:
72 description: 'Immutable. Type of network endpoints in this network
73 endpoint group. Possible values: ["INTERNET_IP_PORT", "INTERNET_FQDN_PORT"].'
74 type: string
75 projectRef:
76 description: The project that this resource belongs to.
77 oneOf:
78 - not:
79 required:
80 - external
81 required:
82 - name
83 - not:
84 anyOf:
85 - required:
86 - name
87 - required:
88 - namespace
89 required:
90 - external
91 properties:
92 external:
93 description: 'Allowed value: The `name` field of a `Project` resource.'
94 type: string
95 name:
96 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
97 type: string
98 namespace:
99 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
100 type: string
101 type: object
102 resourceID:
103 description: Immutable. Optional. The name of the resource. Used for
104 creation and acquisition. When unset, the value of `metadata.name`
105 is used as the default.
106 type: string
107 required:
108 - networkEndpointType
109 - projectRef
110 type: object
111 status:
112 properties:
113 conditions:
114 description: Conditions represent the latest available observation
115 of the resource's current state.
116 items:
117 properties:
118 lastTransitionTime:
119 description: Last time the condition transitioned from one status
120 to another.
121 type: string
122 message:
123 description: Human-readable message indicating details about
124 last transition.
125 type: string
126 reason:
127 description: Unique, one-word, CamelCase reason for the condition's
128 last transition.
129 type: string
130 status:
131 description: Status is the status of the condition. Can be True,
132 False, Unknown.
133 type: string
134 type:
135 description: Type is the type of the condition.
136 type: string
137 type: object
138 type: array
139 observedGeneration:
140 description: ObservedGeneration is the generation of the resource
141 that was most recently observed by the Config Connector controller.
142 If this is equal to metadata.generation, then that means that the
143 current reported status reflects the most recent desired state of
144 the resource.
145 type: integer
146 selfLink:
147 type: string
148 type: object
149 required:
150 - spec
151 type: object
152 served: true
153 storage: true
154 subresources:
155 status: {}
156status:
157 acceptedNames:
158 kind: ""
159 plural: ""
160 conditions: []
161 storedVersions: []
View as plain text