-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathkci.rocks_databases.yaml
325 lines (324 loc) · 13.2 KB
/
kci.rocks_databases.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
annotations:
controller-gen.kubebuilder.io/version: v0.7.0
creationTimestamp: null
name: databases.kci.rocks
spec:
group: kci.rocks
names:
kind: Database
listKind: DatabaseList
plural: databases
shortNames:
- db
singular: database
scope: Namespaced
versions:
- additionalPrinterColumns:
- description: current db phase
jsonPath: .status.phase
name: Phase
type: string
- description: current db status
jsonPath: .status.status
name: Status
type: boolean
- description: If database is protected to not get deleted.
jsonPath: .spec.deletionProtected
name: Protected
type: boolean
- description: instance reference
jsonPath: .spec.instance
name: DBInstance
type: string
- description: time since creation of resource
jsonPath: .metadata.creationTimestamp
name: Age
type: date
name: v1alpha1
schema:
openAPIV3Schema:
description: Database is the Schema for the databases API
properties:
apiVersion:
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'
type: string
kind:
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'
type: string
metadata:
type: object
spec:
description: DatabaseSpec defines the desired state of Database
properties:
backup:
description: DatabaseBackup defines the desired state of backup and
schedule
properties:
cron:
type: string
enable:
type: boolean
required:
- cron
- enable
type: object
connectionStringTemplate:
description: 'ConnectionStringTemplate field can be used to pass a
custom template for generating a db connection string. These keywords
can be used: Protocol, DatabaseHost, DatabasePort, UserName, Password,
DatabaseName. Default template looks like this: "{{ .Protocol }}://{{
.UserName }}:{{ .Password }}@{{ .DatabaseHost }}:{{ .DatabasePort
}}/{{ .DatabaseName }}"'
type: string
deletionProtected:
type: boolean
extensions:
items:
type: string
type: array
instance:
type: string
postgres:
description: Postgres struct should be used to provide resource that
only applicable to postgres
properties:
dropPublicSchema:
description: If set to true, the public schema will be dropped
after the database creation
type: boolean
schemas:
description: Specify schemas to be created. The user created by
db-operator will have all access on them.
items:
type: string
type: array
type: object
secretName:
type: string
secretsTemplates:
additionalProperties:
type: string
type: object
required:
- backup
- deletionProtected
- instance
- secretName
type: object
status:
description: DatabaseStatus defines the observed state of Database
properties:
database:
type: string
instanceRef:
description: DbInstance is the Schema for the dbinstances API
properties:
apiVersion:
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'
type: string
kind:
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'
type: string
metadata:
type: object
spec:
description: DbInstanceSpec defines the desired state of DbInstance
properties:
adminSecretRef:
description: NamespacedName is a fork of the kubernetes api
type of the same name. Sadly this is required because CRD
structs must have all fields json tagged and the kubernetes
type is not tagged.
properties:
Name:
type: string
Namespace:
type: string
required:
- Name
- Namespace
type: object
backup:
description: DbInstanceBackup defines name of google bucket
to use for storing database dumps for backup when backup
is enabled
properties:
bucket:
type: string
required:
- bucket
type: object
engine:
description: 'Important: Run "make generate" to regenerate
code after modifying this file'
type: string
generic:
description: GenericInstance is used when instance type is
generic and describes necessary informations to use instance
generic instance can be any backend, it must be reachable
by described address and port
properties:
backupHost:
description: BackupHost address will be used for dumping
database for backup Usually secondary address for primary-secondary
setup or cluster lb address If it's not defined, above
Host will be used as backup host address.
type: string
host:
type: string
port:
type: integer
publicIp:
type: string
required:
- host
- port
type: object
google:
description: GoogleInstance is used when instance type is
Google Cloud SQL and describes necessary informations to
use google API to create sql instances
properties:
apiEndpoint:
type: string
clientSecretRef:
description: NamespacedName is a fork of the kubernetes
api type of the same name. Sadly this is required because
CRD structs must have all fields json tagged and the
kubernetes type is not tagged.
properties:
Name:
type: string
Namespace:
type: string
required:
- Name
- Namespace
type: object
configmapRef:
description: NamespacedName is a fork of the kubernetes
api type of the same name. Sadly this is required because
CRD structs must have all fields json tagged and the
kubernetes type is not tagged.
properties:
Name:
type: string
Namespace:
type: string
required:
- Name
- Namespace
type: object
instance:
type: string
required:
- configmapRef
- instance
type: object
monitoring:
description: DbInstanceMonitoring defines if exporter
properties:
enabled:
type: boolean
required:
- enabled
type: object
sslConnection:
description: DbInstanceSSLConnection defines weather connection
from db-operator to instance has to be ssl or not
properties:
enabled:
type: boolean
skip-verify:
description: SkipVerity use SSL connection, but don't
check against a CA
type: boolean
required:
- enabled
- skip-verify
type: object
required:
- adminSecretRef
- engine
type: object
status:
description: DbInstanceStatus defines the observed state of DbInstance
properties:
checksums:
additionalProperties:
type: string
type: object
info:
additionalProperties:
type: string
type: object
phase:
description: 'Important: Run "make generate" to regenerate
code after modifying this file'
type: string
status:
type: boolean
required:
- phase
- status
type: object
type: object
monitorUserSecret:
type: string
phase:
description: 'Important: Run "make generate" to regenerate code after
modifying this file Add custom validation using kubebuilder tags:
https://book-v1.book.kubebuilder.io/beyond_basics/generating_crd.html'
type: string
proxyStatus:
description: DatabaseProxyStatus defines whether proxy for database
is enabled or not if so, provide information
properties:
serviceName:
type: string
sqlPort:
format: int32
type: integer
status:
type: boolean
required:
- serviceName
- sqlPort
- status
type: object
status:
type: boolean
user:
type: string
required:
- database
- instanceRef
- phase
- status
- user
type: object
type: object
served: true
storage: true
subresources:
status: {}
status:
acceptedNames:
kind: ""
plural: ""
conditions: []
storedVersions: []