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

updating the rpm-install instructions in the wake that the rpm instal… #156

Merged
merged 3 commits into from
May 28, 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
24 changes: 24 additions & 0 deletions docs/installation/kepler-rpm.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Install Kepler as RPM

## Versions 0.7.10 and newer
The current rpm release is a systemd unit that starts a podman container.

Download the latest stable release from the Kepler release URL [download](https://github.com/sustainable-computing-io/kepler/releases/)

```sh
tar xvzf kepler.rpm.tar.gz
yum install RPMS/noarch/container-kepler-0.7.10-1.noarch.rpm
systemctl enable container-kepler --now
```

Verify that podman starts a kepler container via

`sudo podman ps`

then via your browser pointing to the URL below on the preconfigured port [browser](http://localhost:8888/metrics)

or via a curl command:

`curl localhost:8888/metrics | grep kepler_node_package_joules_total`


## Versions prior to 0.7.10
Older version directly install kepler as a rpm package (as opposed to as a container in newer versions)
To install the Kepler RPM [download](https://github.com/sustainable-computing-io/kepler/releases/) the latest stable version, unpack and install:

```sh
Expand Down