Skip to content

Commit 336e4a4

Browse files
committed
update change log and support matirix for the release version 6.1.4
1 parent ef17108 commit 336e4a4

File tree

6 files changed

+26
-5
lines changed

6 files changed

+26
-5
lines changed

docs/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
# Version 6.1.4 (07/21/2021)
2+
3+
Added support for the 'protocol' command line argument.
4+
Removed fixed port numbers for HTTP/HTTPS connections.
5+
6+
Expanded test module with more unit tests
7+
8+
Tested with Grafana 8.0.3 version
9+
10+
11+
112
# Version 6.1.3 (05/21/2021)
213

314
Added support for the 'includeDiskData' command line argument.

docs/CLASSIC_SETUP.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,9 @@ Define a new data source (Data Sources -> Add New)
7575

7676
![](/docs/Example_Add_DataSource.png)
7777

78-
**NOTE**: The IBM Spectrum Scale bridge listens on port 4242 for HTTP connections, and on port 8443 for HTTPS(SSL) connections. Follow the instructions [Generate SSL certificates](https://github.com/IBM/ibm-spectrum-scale-bridge-for-grafana/wiki/How-to-setup-HTTPS%28SSL%29-connection-for-the-IBM-Spectrum-Scale-bridge-for-Grafana#generate-ssl-certificates) to generate a private ssl key and a ssl certificate
78+
**NOTE**: Per default the IBM Spectrum Scale bridge listens on port 4242 for HTTP connections. For HTTPS(SSL) connections you need to set the appropriate protocol settings on the bridge start.
79+
Follow the instructions [Generate SSL certificates](https://github.com/IBM/ibm-spectrum-scale-bridge-for-grafana/wiki/How-to-setup-HTTPS%28SSL%29-connection-for-the-IBM-Spectrum-Scale-bridge-for-Grafana#generate-ssl-certificates) to generate a private ssl key and a ssl certificate
80+
81+
7982

8083
Grafana now can talk to Spectrum Scale Performance Monitoring tool via the bridge. Follow the grafana instructions to create dashboards.

docs/RUNNING_AS_DOCKER_CONTAINER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Now you can add the host running the bridge container to the Grafana monitoring
6969
2. Start the bridge running in a container:
7070

7171
```shell
72-
# podman run -dt -p 4242:4242,8443:8443 -e "SERVER=9.XXX.XXX.XXX" -e "PORT=8443" -e "TLSKEYPATH=/etc/bridge_ssl/certs" -e "TLSKEYFILE=privkey.pem" -e "TLSCERTFILE=cert.pem" \ -v /tmp:/var/log/ibm_bridge_for_grafana -v /etc/bridge_ssl/certs:/etc/bridge_ssl/certs \ --pod new:my-bridge-ssl-test-pod --name bridge-ssl-test bridge_image:latest
72+
# podman run -dt -p 4242:4242,8443:8443 -e "SERVER=9.XXX.XXX.XXX" -e "PORT=8443" -e "PROTOCOL=https" -e "TLSKEYPATH=/etc/bridge_ssl/certs" -e "TLSKEYFILE=privkey.pem" -e "TLSCERTFILE=cert.pem" \ -v /tmp:/var/log/ibm_bridge_for_grafana -v /etc/bridge_ssl/certs:/etc/bridge_ssl/certs \ --pod new:my-bridge-ssl-test-pod --name bridge-ssl-test bridge_image:latest
7373

7474
# podman logs bridge-ssl-test
7575
Connection to the collector server established successfully

docs/SETUP_SSL_CONNECTION.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ Openssl will then ask you a series of questions. You can enter whatever values a
2121
Note: The file names for the key and the certificate should be ‘privkey.pem’ and ‘cert.pem’.
2222

2323

24-
3. Start the bridge listening on the socket port 8443. Don't forget to provide the location and the file name of the tls private key and the tls certificate:
24+
3. Start the bridge listening on the socket port 8443 using HTTPS protocol. Don't forget to provide the location and the file name of the tls private key and the tls certificate:
2525

2626
```shell
27-
# python3 zimonGrafanaIntf.py -p 8443 -t /etc/bridge_ssl/certs -k privkey.pem -m cert.pem
27+
# python3 zimonGrafanaIntf.py -p 8443 -r https -t /etc/bridge_ssl/certs -k privkey.pem -m cert.pem
2828
```
2929

3030

docs/SUPPORT_MATRIX.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
The following matrix gives a quick overview of the supported software for the IBM Spectrum Scale bridge for Grafana packages by version number:
22

3+
# Version 6.1.4 (07/21/2021)
4+
- Python 3.6
5+
- CherryPy 18.6.0
6+
- IBM Spectrum Scale system must run 5.1.0.3 and above or
7+
- IBM Spectrum Scale Container Native Storage Access(CNSA) devices having minReleaseLevel 5.1.0.1
8+
- Grafana 8.0.0 and above
9+
310
# Version 6.1.3 (05/21/2021)
411
- Python 3.6
512
- CherryPy 18.6.0

source/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
@author: HWASSMAN
2121
'''
2222

23-
__version__ = '6.1.3'
23+
__version__ = '6.1.4'

0 commit comments

Comments
 (0)