-
Notifications
You must be signed in to change notification settings - Fork 1
/
iotdb_cluster_crd.yaml
43 lines (42 loc) · 1.16 KB
/
iotdb_cluster_crd.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
# A demo CRD for the Kopf example operators.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: iotdbclusters.jfeinauer.dev
spec:
scope: Namespaced
group: jfeinauer.dev
names:
kind: IoTDBCluster
plural: iotdbclusters
singular: iotdbcluster
shortNames:
- iotdbc
- iotdbcs
versions:
- name: v1
served: true
storage: true
schema:
openAPIV3Schema:
type: object
properties:
spec:
type: object
x-kubernetes-preserve-unknown-fields: true
properties:
adminPassword:
type: string
version: # Can be 12.2 only at the moment
type: string
seedNodes:
type: integer
engine-config:
type: object
x-kubernetes-preserve-unknown-fields: true
cluster-properties:
type: object
x-kubernetes-preserve-unknown-fields: true
status:
type: object
x-kubernetes-preserve-unknown-fields: true