22 lines
654 B
Markdown
22 lines
654 B
Markdown
# Install Kepler and Electricitymap on Kubernetes cluster.
|
|
|
|
## Install Kepler
|
|
1 - Add Kepler helm repo
|
|
```
|
|
helm repo add kepler https://sustainable-computing-io.github.io/kepler-helm-chart
|
|
```
|
|
2 - Install Kepler with values.yaml
|
|
```
|
|
cd kepler
|
|
helm install kepler kepler/kepler --namespace kepler --create-namespace --values kepler-values.yaml
|
|
```
|
|
3 - Add Grafana Dashboard "kepler-dashboard.json"
|
|
|
|
## Install electricitymap exporter
|
|
1 - Apply all yaml files
|
|
```
|
|
cd electricitymap
|
|
kubectl apply -f electricitymap-deploy.yaml -n kepler
|
|
kubectl apply -f electricitymap-svc.yaml -n kepler
|
|
kubectl apply -f service-monitor.yaml -n cattle-monitoring-system
|
|
``` |