File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed
Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -11,4 +11,4 @@ maintainers:
1111name : hdfs
1212sources :
1313- https://github.com/apache/hadoop
14- version : 0.1.1
14+ version : 0.1.2
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ The following table lists the configurable parameters of the Hadoop chart and th
4646| antiAffinity | string | ` "soft" ` | |
4747| conf.coreSite | string | ` nil ` | |
4848| conf.hdfsSite."dfs.replication" | int | ` 3 ` | |
49- | dataNode.pdbMinAvailable | int | ` 1 ` | |
50- | dataNode.replicas | int | ` 1 ` | |
49+ | dataNode.pdbMinAvailable | int | ` 3 ` | |
50+ | dataNode.replicas | int | ` 3 ` | |
5151| dataNode.resources.limits.cpu | string | ` "1000m" ` | |
5252| dataNode.resources.limits.memory | string | ` "2048Mi" ` | |
5353| dataNode.resources.requests.cpu | string | ` "10m" ` | |
@@ -73,6 +73,7 @@ The following table lists the configurable parameters of the Hadoop chart and th
7373| ingress.nameNode.hosts[ 0] | string | ` "hdfs-namenode.local" ` | |
7474| ingress.nameNode.labels | object | ` {} ` | |
7575| ingress.nameNode.path | string | ` "/" ` | |
76+ | nameNode.replicas | int | ` 1 ` | |
7677| nameNode.pdbMinAvailable | int | ` 1 ` | |
7778| nameNode.port | int | ` 8020 ` | |
7879| nameNode.resources.limits.cpu | string | ` "1000m" ` | |
Original file line number Diff line number Diff line change 1515 app.kubernetes.io/component : namenode
1616 {{- include "hdfs.labels" . | nindent 6 }}
1717 serviceName : {{ include "hdfs.fullname" . }}-namenode
18- replicas : 1
18+ replicas : {{ .Values.nameNode.replicas }}
1919 template :
2020 metadata :
2121 labels :
Original file line number Diff line number Diff line change @@ -22,8 +22,9 @@ httpfs:
2222 adminPort : 14001
2323
2424nameNode :
25- port : 8020
25+ replicas : 1
2626 pdbMinAvailable : 1
27+ port : 8020
2728 resources :
2829 requests :
2930 memory : " 256Mi"
@@ -32,8 +33,8 @@ nameNode:
3233 memory : " 2048Mi"
3334 cpu : " 1000m"
3435dataNode :
35- replicas : 1
36- pdbMinAvailable : 1
36+ replicas : 3
37+ pdbMinAvailable : 3
3738 resources :
3839 requests :
3940 memory : " 256Mi"
You can’t perform that action at this time.
0 commit comments