Install Prometheus on the PI Cluster
helm repo add kubedge2 "https://raw.githubusercontent.com/kubedge/helmrepos/arm32v7/kubedge2"
helm repo update
If you feel lucky:
helm install kubedge2/prometheus-arm32v7 --name prometheus
If you want to better understand the setup:
cd $MY_LOCAL_HELM_CHARTS
helm fetch kubedge2/prometheus-arm32v7
tar xvf prometheus-arm32v7-7.3.4.tgz
cd prometheus-arm32v7/
helm install . --name prometheus
The images creation scripts are availble under:
The chart is available under:
Run the delete command
helm delete --purge prometheus
release "prometheus" deleted
We still have to be able to create the images automatically using .travis.yml
WIP