Bump version to 0.9.88
This commit is contained in:
parent
138a982ffe
commit
1d480f5629
|
@ -1,5 +1,13 @@
|
||||||
## PVC Changelog
|
## PVC Changelog
|
||||||
|
|
||||||
|
###### [v0.9.88](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.88)
|
||||||
|
|
||||||
|
* [API Daemon] Adds an additional Prometheus metrics proxy for Zookeeper stats.
|
||||||
|
* [API Daemon] Adds a new configuration to enable or disable metric endpoints if desired, defaulting to enabled.
|
||||||
|
* [API Daemon] Alters and adjusts the metrics output for VMs to complement new dashboard.
|
||||||
|
* [CLI Client] Adds a "json-prometheus" output format to "pvc connection list" to auto-generate file SD configs.
|
||||||
|
* [Monitoring] Adds a new VM dashboard, updates the Cluster dashboard, and adds a README.
|
||||||
|
|
||||||
###### [v0.9.87](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.87)
|
###### [v0.9.87](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.87)
|
||||||
|
|
||||||
* [API Daemon] Adds cluster Prometheus resource utilization metrics and an updated Grafana dashboard.
|
* [API Daemon] Adds cluster Prometheus resource utilization metrics and an updated Grafana dashboard.
|
||||||
|
|
|
@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool
|
||||||
import daemon_lib.config as cfg
|
import daemon_lib.config as cfg
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.87"
|
version = "0.9.88"
|
||||||
|
|
||||||
# API version
|
# API version
|
||||||
API_VERSION = 1.0
|
API_VERSION = 1.0
|
||||||
|
|
|
@ -68,8 +68,8 @@ for HOST in ${HOSTS[@]}; do
|
||||||
ssh $HOST $SUDO systemctl restart pvcworkerd &>/dev/null
|
ssh $HOST $SUDO systemctl restart pvcworkerd &>/dev/null
|
||||||
sleep 2
|
sleep 2
|
||||||
ssh $HOST $SUDO systemctl restart pvchealthd &>/dev/null
|
ssh $HOST $SUDO systemctl restart pvchealthd &>/dev/null
|
||||||
sleep 2
|
# sleep 2
|
||||||
ssh $HOST $SUDO systemctl restart pvcnoded &>/dev/null
|
# ssh $HOST $SUDO systemctl restart pvcnoded &>/dev/null
|
||||||
echo " done."
|
echo " done."
|
||||||
echo -n "Waiting for node daemon to be running..."
|
echo -n "Waiting for node daemon to be running..."
|
||||||
while [[ $( ssh $HOST "pvc -q node list -f json ${HOST%%.*} | jq -r '.[].daemon_state'" 2>/dev/null ) != "run" ]]; do
|
while [[ $( ssh $HOST "pvc -q node list -f json ${HOST%%.*} | jq -r '.[].daemon_state'" 2>/dev/null ) != "run" ]]; do
|
||||||
|
|
|
@ -2,7 +2,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="pvc",
|
name="pvc",
|
||||||
version="0.9.87",
|
version="0.9.88",
|
||||||
packages=["pvc.cli", "pvc.lib"],
|
packages=["pvc.cli", "pvc.lib"],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"Click",
|
"Click",
|
||||||
|
|
|
@ -1,3 +1,13 @@
|
||||||
|
pvc (0.9.88-0) unstable; urgency=high
|
||||||
|
|
||||||
|
* [API Daemon] Adds an additional Prometheus metrics proxy for Zookeeper stats.
|
||||||
|
* [API Daemon] Adds a new configuration to enable or disable metric endpoints if desired, defaulting to enabled.
|
||||||
|
* [API Daemon] Alters and adjusts the metrics output for VMs to complement new dashboard.
|
||||||
|
* [CLI Client] Adds a "json-prometheus" output format to "pvc connection list" to auto-generate file SD configs.
|
||||||
|
* [Monitoring] Adds a new VM dashboard, updates the Cluster dashboard, and adds a README.
|
||||||
|
|
||||||
|
-- Joshua M. Boniface <joshua@boniface.me> Fri, 29 Dec 2023 14:50:40 -0500
|
||||||
|
|
||||||
pvc (0.9.87-0) unstable; urgency=high
|
pvc (0.9.87-0) unstable; urgency=high
|
||||||
|
|
||||||
* [API Daemon] Adds cluster Prometheus resource utilization metrics and an updated Grafana dashboard.
|
* [API Daemon] Adds cluster Prometheus resource utilization metrics and an updated Grafana dashboard.
|
||||||
|
|
|
@ -33,7 +33,7 @@ import os
|
||||||
import signal
|
import signal
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.87"
|
version = "0.9.88"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -49,7 +49,7 @@ import re
|
||||||
import json
|
import json
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.87"
|
version = "0.9.88"
|
||||||
|
|
||||||
|
|
||||||
##########################################################
|
##########################################################
|
||||||
|
|
|
@ -44,7 +44,7 @@ from daemon_lib.vmbuilder import (
|
||||||
)
|
)
|
||||||
|
|
||||||
# Daemon version
|
# Daemon version
|
||||||
version = "0.9.87"
|
version = "0.9.88"
|
||||||
|
|
||||||
|
|
||||||
config = cfg.get_configuration()
|
config = cfg.get_configuration()
|
||||||
|
|
Loading…
Reference in New Issue