...
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: stable
10 cnrm.cloud.google.com/system: "true"
11 cnrm.cloud.google.com/tf2crd: "true"
12 name: computetargetgrpcproxies.compute.cnrm.cloud.google.com
13spec:
14 group: compute.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ComputeTargetGRPCProxy
19 plural: computetargetgrpcproxies
20 shortNames:
21 - gcpcomputetargetgrpcproxy
22 - gcpcomputetargetgrpcproxies
23 singular: computetargetgrpcproxy
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: v1beta1
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 description:
62 description: An optional description of this resource.
63 type: string
64 resourceID:
65 description: Immutable. Optional. The name of the resource. Used for
66 creation and acquisition. When unset, the value of `metadata.name`
67 is used as the default.
68 type: string
69 urlMapRef:
70 description: |-
71 The UrlMap resource that defines the mapping from URL to the BackendService.
72 The protocol field in the BackendService must be set to GRPC.
73 oneOf:
74 - not:
75 required:
76 - external
77 required:
78 - name
79 - not:
80 anyOf:
81 - required:
82 - name
83 - required:
84 - namespace
85 required:
86 - external
87 properties:
88 external:
89 description: 'Allowed value: The `selfLink` field of a `ComputeURLMap`
90 resource.'
91 type: string
92 name:
93 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
94 type: string
95 namespace:
96 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
97 type: string
98 type: object
99 validateForProxyless:
100 description: |-
101 Immutable. If true, indicates that the BackendServices referenced by
102 the urlMap may be accessed by gRPC applications without using
103 a sidecar proxy. This will enable configuration checks on urlMap
104 and its referenced BackendServices to not allow unsupported features.
105 A gRPC application must use "xds:///" scheme in the target URI
106 of the service it is connecting to. If false, indicates that the
107 BackendServices referenced by the urlMap will be accessed by gRPC
108 applications via a sidecar proxy. In this case, a gRPC application
109 must not use "xds:///" scheme in the target URI of the service
110 it is connecting to.
111 type: boolean
112 type: object
113 status:
114 properties:
115 conditions:
116 description: Conditions represent the latest available observation
117 of the resource's current state.
118 items:
119 properties:
120 lastTransitionTime:
121 description: Last time the condition transitioned from one status
122 to another.
123 type: string
124 message:
125 description: Human-readable message indicating details about
126 last transition.
127 type: string
128 reason:
129 description: Unique, one-word, CamelCase reason for the condition's
130 last transition.
131 type: string
132 status:
133 description: Status is the status of the condition. Can be True,
134 False, Unknown.
135 type: string
136 type:
137 description: Type is the type of the condition.
138 type: string
139 type: object
140 type: array
141 creationTimestamp:
142 description: Creation timestamp in RFC3339 text format.
143 type: string
144 fingerprint:
145 description: |-
146 Fingerprint of this resource. A hash of the contents stored in
147 this object. This field is used in optimistic locking. This field
148 will be ignored when inserting a TargetGrpcProxy. An up-to-date
149 fingerprint must be provided in order to patch/update the
150 TargetGrpcProxy; otherwise, the request will fail with error
151 412 conditionNotMet. To see the latest fingerprint, make a get()
152 request to retrieve the TargetGrpcProxy. A base64-encoded string.
153 type: string
154 observedGeneration:
155 description: ObservedGeneration is the generation of the resource
156 that was most recently observed by the Config Connector controller.
157 If this is equal to metadata.generation, then that means that the
158 current reported status reflects the most recent desired state of
159 the resource.
160 type: integer
161 selfLink:
162 type: string
163 selfLinkWithId:
164 description: Server-defined URL with id for the resource.
165 type: string
166 type: object
167 type: object
168 served: true
169 storage: true
170 subresources:
171 status: {}
172status:
173 acceptedNames:
174 kind: ""
175 plural: ""
176 conditions: []
177 storedVersions: []
View as plain text