|
| 1 | +hbase |
| 2 | +===== |
| 3 | +HBase is an open-source non-relational distributed database modeled after Google's Bigtable and written in Java. |
| 4 | + |
| 5 | +Current chart version is `0.1.0` |
| 6 | + |
| 7 | +Source code can be found [here](https://hbase.apache.org/) |
| 8 | + |
| 9 | +## Chart Requirements |
| 10 | + |
| 11 | +| Repository | Name | Version | |
| 12 | +|------------|------|---------| |
| 13 | +| https://gradiant.github.io/charts | hdfs | ~0.1.0 | |
| 14 | +| https://kubernetes-charts-incubator.storage.googleapis.com/ | zookeeper | ~2.1.0 | |
| 15 | + |
| 16 | +## Installing the Chart |
| 17 | + |
| 18 | +Add gradiant helm repo: |
| 19 | + |
| 20 | +``` |
| 21 | +helm repo add gradiant https://gradiant.github.io/charts |
| 22 | +``` |
| 23 | + |
| 24 | +To install the chart with the release name `hbase`: |
| 25 | + |
| 26 | +``` |
| 27 | +$ helm install --name hbase gradiant/hbase |
| 28 | +``` |
| 29 | + |
| 30 | +The chart will also install required zookeeper and hdfs by default. |
| 31 | +To only install hbase and provide external zookeeper and/or hdfs: |
| 32 | + |
| 33 | +``` |
| 34 | +$ helm install --name hbase |
| 35 | + --set hdfs.enabled=false \ |
| 36 | + --set conf.hbaseSite."hbase.rootdir"="hdfs://my-hdfs:8020/hbase" \ |
| 37 | + --set zookeeper.enabled=false \ |
| 38 | + --set conf.hbaseSite."hbase.zookeeper.quorum"="my-zookeeper:2181" \ |
| 39 | + gradiant/hbase |
| 40 | +``` |
| 41 | + |
| 42 | +``` |
| 43 | + and setup an external hdfs and zookeper by setting hdfs.enabled=false and h |
| 44 | +
|
| 45 | +## Chart Values |
| 46 | +
|
| 47 | +| Key | Type | Default | Description | |
| 48 | +|-----|------|---------|-------------| |
| 49 | +| antiAffinity | string | `"soft"` | | |
| 50 | +| conf.hbaseSite."hbase.rootdir" | string | `"{{.Release.Name}}-hdfs-namenode:8020/hbase"` | | |
| 51 | +| conf.hbaseSite."hbase.zookeeper.quorum" | string | `"{{.Release.Name}}-zookeeper:2181"` | | |
| 52 | +| hbase.master.resources.limits.cpu | string | `"1000m"` | | |
| 53 | +| hbase.master.resources.limits.memory | string | `"2048Mi"` | | |
| 54 | +| hbase.master.resources.requests.cpu | string | `"10m"` | | |
| 55 | +| hbase.master.resources.requests.memory | string | `"256Mi"` | | |
| 56 | +| hbase.regionServer.replicas | int | `1` | | |
| 57 | +| hbase.regionServer.resources.limits.cpu | string | `"1000m"` | | |
| 58 | +| hbase.regionServer.resources.limits.memory | string | `"2048Mi"` | | |
| 59 | +| hbase.regionServer.resources.requests.cpu | string | `"10m"` | | |
| 60 | +| hbase.regionServer.resources.requests.memory | string | `"256Mi"` | | |
| 61 | +| hbaseVersion | string | `"2.0.1"` | | |
| 62 | +| hdfs.enabled | bool | `true` | | |
| 63 | +| image.pullPolicy | string | `"IfNotPresent"` | | |
| 64 | +| image.repository | string | `"gradiant/hbase-base"` | | |
| 65 | +| image.tag | string | `"2.0.1"` | | |
| 66 | +| prometheus.config.lowercaseOutputLabelNames | bool | `true` | | |
| 67 | +| prometheus.config.lowercaseOutputName | bool | `true` | | |
| 68 | +| prometheus.config.rules[0].labels.namespace | string | `"$1"` | | |
| 69 | +| prometheus.config.rules[0].labels.region | string | `"$3"` | | |
| 70 | +| prometheus.config.rules[0].labels.table | string | `"$2"` | | |
| 71 | +| prometheus.config.rules[0].name | string | `"HBase_metric_$4"` | | |
| 72 | +| prometheus.config.rules[0].pattern | string | `"Hadoop\u003cservice=HBase, name=RegionServer, sub=Regions\u003e\u003c\u003eNamespace_([^\\W_]+)_table_([^\\W_]+)_region_([^\\W_]+)_metric_(\\w+)"` | | |
| 73 | +| prometheus.config.rules[1].labels.name | string | `"$2"` | | |
| 74 | +| prometheus.config.rules[1].labels.sub | string | `"$3"` | | |
| 75 | +| prometheus.config.rules[1].name | string | `"hadoop_$1_$4"` | | |
| 76 | +| prometheus.config.rules[1].pattern | string | `"Hadoop\u003cservice=(\\w+), name=(\\w+), sub=(\\w+)\u003e\u003c\u003e([\\w._]+)"` | | |
| 77 | +| prometheus.config.rules[2].pattern | string | `".+"` | | |
| 78 | +| prometheus.enabled | bool | `true` | | |
| 79 | +| prometheus.image | string | `"spdigital/prometheus-jmx-exporter-kubernetes"` | | |
| 80 | +| prometheus.imageTag | string | `"0.3.1"` | | |
| 81 | +| prometheus.port | int | `5556` | | |
| 82 | +| prometheus.resources | object | `{}` | | |
| 83 | +| prometheus.thriftPort | int | `5557` | | |
| 84 | +| zookeeper.enabled | bool | `true` | | |
| 85 | +| zookeeper.replicaCount | int | `1` | | |
0 commit comments