bigdata charts
jupyter-0.1.11
为 Kubernetes 策划的大数据图表。
`charts/`` 文件夹中的图表已打包并可在 Gradiant 的 helm repo 中获取:
https://gradiant.github.io/bigdata-charts/
您可以将 helm 存储库添加到 Helm CLI:
helm repo add bigdata-gradiant https://gradiant.github.io/bigdata-charts/
然后您就有了一组可供安装的图表。例如,安装hdfs:
helm install --name hdfs bigdata-gradiant/hdfs
使用版本的 URL 进行安装。例如,安装hdfs v0.1.0图表:
helm install --name hdfs https://github.com/Gradiant/bigdata-charts/releases/download/hdfs-0.1.0/hdfs-0.1.0.tgz
tee
控制台工具,同时输出到控制台和文件测试特定图表、lint 并安装,还将控制台日志发送到日志文件reports/hdfs.log
:
scripts/ct.sh lint-and-install
--charts charts/hdfs/
--chart-repos incubator=https://kubernetes-charts-incubator.storage.googleapis.com/,gradiant=https://gradiant.github.io/bigdata-charts
| tee reports/hdfs.log
reports/hdfs.log
,charts/chart-name/ci/gke-values.yaml
,示例如下: ---
persistence :
nameNode :
enabled : true
storageClass : standard-ssd
accessMode : ReadWriteOnce
size : 50Gi
dataNode :
enabled : true
storageClass : standard-hdd
accessMode : ReadWriteOnce
size : 200Gi
ci/
文件夹中提供多个文件 - 对于每个ci/*-values.yaml
将有单独的部署scripts/ct.sh lint-and-install
--check-version-increment
--upgrade
--charts charts/hdfs/
--chart-repos incubator=https://kubernetes-charts-incubator.storage.googleapis.com/,gradiant=https://gradiant.github.io/bigdata-charts
| tee reports/hdfs.log
reports/
文件以获取生成的控制台输出。