...
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: computehttpshealthchecks.compute.cnrm.cloud.google.com
13spec:
14 group: compute.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: ComputeHTTPSHealthCheck
19 plural: computehttpshealthchecks
20 shortNames:
21 - gcpcomputehttpshealthcheck
22 - gcpcomputehttpshealthchecks
23 singular: computehttpshealthcheck
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 checkIntervalSec:
62 description: |-
63 How often (in seconds) to send a health check. The default value is 5
64 seconds.
65 type: integer
66 description:
67 description: |-
68 An optional description of this resource. Provide this property when
69 you create the resource.
70 type: string
71 healthyThreshold:
72 description: |-
73 A so-far unhealthy instance will be marked healthy after this many
74 consecutive successes. The default value is 2.
75 type: integer
76 host:
77 description: |-
78 The value of the host header in the HTTPS health check request. If
79 left empty (default value), the public IP on behalf of which this
80 health check is performed will be used.
81 type: string
82 port:
83 description: |-
84 The TCP port number for the HTTPS health check request.
85 The default value is 443.
86 type: integer
87 requestPath:
88 description: |-
89 The request path of the HTTPS health check request.
90 The default value is /.
91 type: string
92 resourceID:
93 description: Immutable. Optional. The name of the resource. Used for
94 creation and acquisition. When unset, the value of `metadata.name`
95 is used as the default.
96 type: string
97 timeoutSec:
98 description: |-
99 How long (in seconds) to wait before claiming failure.
100 The default value is 5 seconds. It is invalid for timeoutSec to have
101 greater value than checkIntervalSec.
102 type: integer
103 unhealthyThreshold:
104 description: |-
105 A so-far healthy instance will be marked unhealthy after this many
106 consecutive failures. The default value is 2.
107 type: integer
108 type: object
109 status:
110 properties:
111 conditions:
112 description: Conditions represent the latest available observation
113 of the resource's current state.
114 items:
115 properties:
116 lastTransitionTime:
117 description: Last time the condition transitioned from one status
118 to another.
119 type: string
120 message:
121 description: Human-readable message indicating details about
122 last transition.
123 type: string
124 reason:
125 description: Unique, one-word, CamelCase reason for the condition's
126 last transition.
127 type: string
128 status:
129 description: Status is the status of the condition. Can be True,
130 False, Unknown.
131 type: string
132 type:
133 description: Type is the type of the condition.
134 type: string
135 type: object
136 type: array
137 creationTimestamp:
138 description: Creation timestamp in RFC3339 text format.
139 type: string
140 observedGeneration:
141 description: ObservedGeneration is the generation of the resource
142 that was most recently observed by the Config Connector controller.
143 If this is equal to metadata.generation, then that means that the
144 current reported status reflects the most recent desired state of
145 the resource.
146 type: integer
147 selfLink:
148 type: string
149 type: object
150 type: object
151 served: true
152 storage: true
153 subresources:
154 status: {}
155status:
156 acceptedNames:
157 kind: ""
158 plural: ""
159 conditions: []
160 storedVersions: []
View as plain text