Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Kepler docs edits #25

Merged
merged 1 commit into from
Jan 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 7 additions & 13 deletions docs/install_kepler.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,21 @@
# Full Kepler install with dashboard


## Install `kube-prometheus-stack`

```bash
helm install prom prometheus-community/kube-prometheus-stack --set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues
=false --namespace monitoring --create-namespace
helm repo add prometheus-community https://prometheus-community.github.io/helm-charts
helm install kube-prometheus-stack prometheus-community/kube-prometheus-stack --set prometheus.prometheusSpec.serviceMonitorSelectorNilUsesHelmValues=false --namespace monitoring --create-namespace
```

## Install `kepler`

> Make sure you override the specific fields
```diff
serviceMonitor:
- enabled: false
+ enabled: true
- namespace: ""
+ namespace: monitoring
```

```bash
helm install kepler kepler/kepler --values values.yaml -n monitoring
helm repo add kepler https://sustainable-computing-io.github.io/kepler-helm-chart
helm install kepler kepler/kepler --set serviceMonitor.enabled=true --set serviceMonitor.namespace=monitoring --namespace monitoring
```

- If Kepler pods won't start or metrics are 0 check [trouble shooting](https://sustainable-computing.io/usage/trouble_shooting/) docs.

## Add the kepler grafana dashboard

```bash
Expand Down