-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathiotdb_crd.yaml
38 lines (37 loc) · 959 Bytes
/
iotdb_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
# A demo CRD for the Kopf example operators.
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: iotdbreleases.jfeinauer.dev
spec:
scope: Namespaced
group: jfeinauer.dev
names:
kind: IoTDBRelease
plural: iotdbreleases
singular: iotdbrelease
shortNames:
- iotdb
- iotdbs
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
image:
type: string
engine-config:
type: object
x-kubernetes-preserve-unknown-fields: true
status:
type: object
x-kubernetes-preserve-unknown-fields: true