...
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: sqlsslcerts.sql.cnrm.cloud.google.com
13spec:
14 group: sql.cnrm.cloud.google.com
15 names:
16 categories:
17 - gcp
18 kind: SQLSSLCert
19 plural: sqlsslcerts
20 shortNames:
21 - gcpsqlsslcert
22 - gcpsqlsslcerts
23 singular: sqlsslcert
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 commonName:
62 description: Immutable. The common name to be used in the certificate
63 to identify the client. Constrained to [a-zA-Z.-_ ]+. Changing this
64 forces a new resource to be created.
65 type: string
66 instanceRef:
67 description: The Cloud SQL instance.
68 oneOf:
69 - not:
70 required:
71 - external
72 required:
73 - name
74 - not:
75 anyOf:
76 - required:
77 - name
78 - required:
79 - namespace
80 required:
81 - external
82 properties:
83 external:
84 description: 'Allowed value: The `name` field of a `SQLInstance`
85 resource.'
86 type: string
87 name:
88 description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names'
89 type: string
90 namespace:
91 description: 'Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/'
92 type: string
93 type: object
94 resourceID:
95 description: Immutable. Optional. The service-generated sha1Fingerprint
96 of the resource. Used for acquisition only. Leave unset to create
97 a new resource.
98 type: string
99 required:
100 - commonName
101 - instanceRef
102 type: object
103 status:
104 properties:
105 cert:
106 description: The actual certificate data for this client certificate.
107 type: string
108 certSerialNumber:
109 description: The serial number extracted from the certificate data.
110 type: string
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 createTime:
138 description: The time when the certificate was created in RFC 3339
139 format, for example 2012-11-15T16:19:00.094Z.
140 type: string
141 expirationTime:
142 description: The time when the certificate expires in RFC 3339 format,
143 for example 2012-11-15T16:19:00.094Z.
144 type: string
145 observedGeneration:
146 description: ObservedGeneration is the generation of the resource
147 that was most recently observed by the Config Connector controller.
148 If this is equal to metadata.generation, then that means that the
149 current reported status reflects the most recent desired state of
150 the resource.
151 type: integer
152 privateKey:
153 description: The private key associated with the client certificate.
154 type: string
155 serverCaCert:
156 description: The CA cert of the server this client cert was generated
157 from.
158 type: string
159 sha1Fingerprint:
160 description: The SHA1 Fingerprint of the certificate.
161 type: string
162 type: object
163 required:
164 - spec
165 type: object
166 served: true
167 storage: true
168 subresources:
169 status: {}
170status:
171 acceptedNames:
172 kind: ""
173 plural: ""
174 conditions: []
175 storedVersions: []
View as plain text