-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdfs-crd.yaml
47 lines (47 loc) · 1.18 KB
/
hdfs-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
43
44
45
46
47
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
metadata:
name: hdfs.opencore.com
spec:
group: stable.opencore.com
names:
kind: HDFS
plural: hdfs
singular: hdfs
scope: Namespaced
versions:
- name: v1
served: true
storage: true
schema:
openAPIV3Schema:
properties:
apiVersion:
type: string
kind:
type: string
metadata:
type: object
spec:
properties:
nameNode:
type: object
properties:
minNodeCount:
type: integer
minimum: 1
# default: 2
maxNodeCount:
type: integer
minimum: 1
# default: 2
config:
additionalProperties:
type: string
hadoopConf:
additionalProperties:
type: string
type: object
hadoopConfigMap:
type: string