-
Notifications
You must be signed in to change notification settings - Fork 9
/
values.yaml
55 lines (44 loc) · 1.06 KB
/
values.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
# The base hadoop image to use for all components.
# See this repo for image build details: https://github.com/Comcast/kube-yarn/tree/master/image
image: danisla/hadoop:2.7.3
imagePullPolicy: IfNotPresent
hbaseImage: pierrezemb/hbase-docker:distributed-1.3.1-hadoop-2.7.3
hbaseVersion: 1.4.2
# The version of the hadoop libraries being used in the image.
hadoopVersion: 2.7.3
# Select anitAffinity as either hard or soft, default is hard
antiAffinity: "soft"
hdfs:
nameNode:
pdbMinAvailable: 1
resources:
requests:
memory: "256Mi"
cpu: "10m"
limits:
memory: "2048Mi"
cpu: "1000m"
dataNode:
replicas: 3
pdbMinAvailable: 3
resources:
requests:
memory: "256Mi"
cpu: "10m"
limits:
memory: "2048Mi"
cpu: "1000m"
persistence:
nameNode:
enabled: false
storageClass: "-"
accessMode: ReadWriteOnce
size: 50Gi
dataNode:
enabled: false
storageClass: "-"
accessMode: ReadWriteOnce
size: 200Gi
hbase:
zookeeper:
quorum: "myzk-zookeeper"