Skip to content

Commit

Permalink
Update changelog bump release (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
znerol authored Nov 5, 2023
1 parent ded9219 commit a99b4b3
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,18 @@ The format is based on `Keep a Changelog`_ and this project adheres to
`Unreleased`_
-------------

`3.0.0`_ - 2023-11-05
---------------------

Changed (BREAKING)
~~~~~~~~~~~~~~~~~~
- Use flags instead of positional arguments for config file and listen address
(#190)
- Scrape /nodes endpoint from current node only (#180)
- Remove tini from docker image (#179)
- Bump required python version to 3.9 (bullseye) (#162)
- Run with a dedicated user in container by default (#182)


`3.0.0b1`_ - 2023-10-16
-----------------------
Expand Down Expand Up @@ -265,7 +277,8 @@ Added

.. _Keep a Changelog: http://keepachangelog.com/en/1.0.0/
.. _Semantic Versioning: http://semver.org/spec/v2.0.0.html
.. _Unreleased: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.0.0b1...HEAD
.. _Unreleased: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.0.0...HEAD
.. _3.0.0: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v3.0.0b1...v3.0.0
.. _3.0.0b1: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v2.3.1...v3.0.0b1
.. _2.3.1: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v2.3.0...v2.3.1
.. _2.3.0: https://github.com/prometheus-pve/prometheus-pve-exporter/compare/v2.2.4...v2.3.0
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Example: Run the image with a mounted configuration file and published port:

.. code:: shell
docker run --init --name prometheus-pve-exporter -d -p 127.0.0.1:9221:9221 -v /path/to/pve.yml:/etc/pve.yml prompve/prometheus-pve-exporter
docker run --init --name prometheus-pve-exporter -d -p 127.0.0.1:9221:9221 -v /path/to/pve.yml:/etc/prometheus/pve.yml prompve/prometheus-pve-exporter
Prometheus PVE Exporter will now be reachable at http://localhost:9221/.

Expand Down Expand Up @@ -92,8 +92,8 @@ Usage
Exposes PVE onboot status


Use `[::]` for the `address` argument in order to bind to both IPv6 and IPv4
sockets on dual stacked machines.
Use `[::]` in the `--web.listen-address` flag in order to bind to both IPv6 and
IPv4 sockets on dual stacked machines.

Visit http://localhost:9221/pve?target=1.2.3.4&cluster=1&node=1 where 1.2.3.4
is the IP of the Proxmox VE node to get metrics from. Specify the ``module``
Expand Down
4 changes: 2 additions & 2 deletions pve.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
default:
user: prometheus@pve
password: sEcr3T!
verify_ssl: false
token_name: prompve-scraper
token_value: XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="prometheus-pve-exporter",
version="3.0.0b1",
version="3.0.0",
author="Lorenz Schori",
author_email="[email protected]",
description=("Proxmox VE exporter for the Prometheus monitoring system."),
Expand Down

0 comments on commit a99b4b3

Please sign in to comment.