Skip to content

Commit 02b7a29

Browse files
authored
Merge pull request #209 from Helene/prepare_8.0.0
Publish v8.0.0 release
2 parents c1faecb + ef94087 commit 02b7a29

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM $BASE
33

44
LABEL com.ibm.name="IBM Storage Scale bridge for Grafana"
55
LABEL com.ibm.vendor="IBM"
6-
LABEL com.ibm.version="8.0.0-dev"
6+
LABEL com.ibm.version="8.0.0"
77
LABEL com.ibm.url="https://github.com/IBM/ibm-spectrum-scale-bridge-for-grafana"
88
LABEL com.ibm.description="This tool translates the IBM Storage Scale performance data collected internally \
99
to the query requests acceptable by the Grafana integrated openTSDB plugin"

docs/RELEASE_NOTES.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# Version 8.0.0 (04/26/2024)
2+
The Grafana Bridge has been refactored to allow several APIs to be registered and run as standalone plugins. The OpenTSDB API now needs to be explicitly registered via port configuration in config.ini before it can be used with Grafana.
3+
Added the new Prometheus Exporter plugin which collects metrics and exposes them in a format that can be scraped by the Prometheus timeseries database. This plugin also needs to be enabled via port configuration.
4+
Added Prometheus server configuration file examples.
5+
Added a Client Basic Authentication over HTTP/S support.
6+
Added features to collect and report the internal performance statistics of grafana-bridge.
7+
8+
Tested with Grafana version 10.2.3
9+
Tested with RedHat community-powered Grafana operator v.5
10+
11+
12+
113
# Version 7.1.3 (03/08/2024)
214
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi9/ubi:9.3-1610 \
315

docs/SUPPORT_MATRIX.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,15 @@
11
The following matrix gives a quick overview of the supported software for the IBM Storage Scale bridge for Grafana packages by version number:
2+
# Version 8.0.0 (04/26/2024)
3+
Classic Scale:
4+
- Python 3.9
5+
- CherryPy 18.9.0
6+
- IBM Storage Scale system must run 5.2.0 and above
7+
- Grafana 10.2.3 and above
8+
9+
Cloud native:
10+
- IBM Storage Scale Container Native Storage Access(CNSA) devices having minReleaseLevel 5.2.0
11+
- RedHat community-powered Grafana-Operator v5
12+
213
# Version 7.1.3 (03/08/2024)
314
Classic Scale:
415
- Python 3.9

source/__version__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'''
22
##############################################################################
3-
# Copyright 2021 IBM Corp.
3+
# Copyright 2024 IBM Corp.
44
#
55
# Licensed under the Apache License, Version 2.0 (the "License");
66
# you may not use this file except in compliance with the License.
@@ -20,4 +20,4 @@
2020
@author: HWASSMAN
2121
'''
2222

23-
__version__ = '8.0.0-dev'
23+
__version__ = '8.0.0'

0 commit comments

Comments
 (0)