You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN echo "the PERFMONPORT port is set to $SERVERPORT"
35
44
36
-
ARG CERTPATH=None
45
+
ARG CERTPATH='/etc/bridge_ssl/certs'
37
46
ENV TLSKEYPATH=$CERTPATH
47
+
RUN mkdir -p $CERTPATH
38
48
39
49
ARG KEYFILE=None
40
50
ENV TLSKEYFILE=$KEYFILE
@@ -47,6 +57,7 @@ ENV APIKEYNAME=$KEYNAME
47
57
48
58
ARG KEYVALUE=None
49
59
ENV APIKEYVALUE=$KEYVALUE
60
+
RUN if [ "${APIKEYVALUE:0:1}" = "/" ]; then ln -s $APIKEYVALUE /etc/perfmon-api-keys; echo "APIKEYVALUE is a PATH"; else echo "APIKEYVALUE not a PATH"; fi
50
61
51
62
RUN if [ -z "$TLSKEYPATH" ] || [ -z "$TLSCERTFILE" ] || [ -z "$TLSKEYFILE" ] && [ "$PROTOCOL" = "https" ]; then echo "TLSKEYPATH FOR SSL CONNECTION NOT SET - ERROR"; exit 1; else echo "PASS"; fi
52
63
RUN echo "the ssl certificates path is set to $TLSKEYPATH"
@@ -55,23 +66,33 @@ ARG PMCOLLECTORIP=0.0.0.0
55
66
ENV SERVER=$PMCOLLECTORIP
56
67
RUN echo "the pmcollector server ip is set to $SERVER"
Copy file name to clipboardExpand all lines: docs/RELEASE_NOTES.md
+15-5Lines changed: 15 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,16 @@
1
+
# Version 7.0.6 (04/12/2022)
2
+
Fetch raw data for GPFSDiskCap metrics as workaround for the zimon issue not returning all capacity metrics results. \
3
+
Added non root user to the Dockerfile. This way the main process will be started with a non-root user when running in a container. \
4
+
Added labels to the Dockerfile
5
+
6
+
Tested with Grafana version 8.0.3
7
+
Tested with RedHat community-powered Grafana operator v.4.1
8
+
9
+
10
+
1
11
# Version 7.0.5 (02/10/2022)
2
-
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi:8.5
3
-
Added 'caCertPath' to the configurable parameters, which allows the user to enable or disable CA certificate verification for the REST API HTTPS connections to the pmcollector.
12
+
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi:8.5\
13
+
Added 'caCertPath' to the configurable parameters, which allows the user to enable or disable CA certificate verification for the REST API HTTPS connections to the pmcollector.\
4
14
Added 'retryDelay' to the configurable parameters. Using this parameter the user can control how long the bridge should sleep before re-attempting to query the MetaData, in case no data was returned by pmcollector through the initial bridge startup
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi:8.4-209
22
+
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi:8.4-209\
13
23
Moved out the documentation files from the repository content. They have been placed on the [project Wiki](https://github.com/IBM/ibm-spectrum-scale-bridge-for-grafana/wiki).
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi:8.4-206
31
+
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi:8.4-206\
22
32
Added requirements_ubi8.txt file including the python versions packages needed to be installed to run the bridge in an OpenShift production environment, on top of the redhat UBI8 image
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi
40
+
Changed the Dockerfile parent image to the registry.access.redhat.com/ubi8/ubi\
31
41
Changed the sleep time = 60 seconds for re-attempting to get the MetaData from the pmcollector in case no data have been returned during the bridge start instead of stopping the process directly
0 commit comments