Skip to content

Commit

Permalink
Merge pull request #291 from RADAR-base/feature/disable-metrics
Browse files Browse the repository at this point in the history
Do not include jmx pods when monitoring is disabled
  • Loading branch information
keyvaann authored Oct 28, 2024
2 parents 2a3bf88 + aa2f724 commit aa53a12
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion charts/radar-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "0.7.2"
description: A Helm chart for RADAR-base gateway. REST Gateway to Kafka, for incoming participant data. It performs authentication, authorization, content validation and decompression. For more details of the configurations, see https://github.com/RADAR-base/RADAR-Gateway/blob/master/gateway.yml.
name: radar-gateway
version: 1.2.3
version: 1.2.4
icon: "http://radar-base.org/wp-content/uploads/2022/09/Logo_RADAR-Base-RGB.png"
sources:
- https://github.com/RADAR-base/radar-helm-charts/tree/main/charts/radar-gateway
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# radar-gateway
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/radar-gateway)](https://artifacthub.io/packages/helm/radar-base/radar-gateway)

![Version: 1.2.3](https://img.shields.io/badge/Version-1.2.3-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.2](https://img.shields.io/badge/AppVersion-0.7.2-informational?style=flat-square)
![Version: 1.2.4](https://img.shields.io/badge/Version-1.2.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.7.2](https://img.shields.io/badge/AppVersion-0.7.2-informational?style=flat-square)

A Helm chart for RADAR-base gateway. REST Gateway to Kafka, for incoming participant data. It performs authentication, authorization, content validation and decompression. For more details of the configurations, see https://github.com/RADAR-base/RADAR-Gateway/blob/master/gateway.yml.

Expand Down
3 changes: 3 additions & 0 deletions charts/radar-gateway/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ spec:
metadata:
annotations:
checksum/configmap: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
kubectl.kubernetes.io/default-container: {{ .Chart.Name | quote }}
labels:
app.kubernetes.io/name: {{ include "radar-gateway.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
Expand Down Expand Up @@ -41,6 +42,7 @@ spec:
- {{ .Release.Name }}
topologyKey: "kubernetes.io/hostname"
containers:
{{- if .Values.serviceMonitor.enabled }}
- image: sscaling/jmx-prometheus-exporter
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
Expand All @@ -59,6 +61,7 @@ spec:
volumeMounts:
- mountPath: /etc/radar-gateway/
name: gateway-jmx-configmap
{{- end }}
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
Expand Down
2 changes: 2 additions & 0 deletions charts/radar-gateway/templates/jmx-configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.serviceMonitor.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
Expand All @@ -10,3 +11,4 @@ data:
lowercaseOutputName: true
lowercaseOutputLabelNames: true
ssl: false
{{- end }}
2 changes: 2 additions & 0 deletions charts/radar-gateway/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if .Values.serviceMonitor.enabled }}
- name: metrics
port: 5556
protocol: TCP
targetPort: metrics
{{- end }}
selector:
app.kubernetes.io/name: {{ include "radar-gateway.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
2 changes: 1 addition & 1 deletion charts/radar-push-endpoint/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: "0.3.2"
description: A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming data from Push or Subscription based WEB APIs. It performs authentication, authorization and content validation. For more details of the configurations, see https://github.com/RADAR-base/RADAR-PushEndpoint.
name: radar-push-endpoint
version: 0.3.4
version: 0.3.5
icon: "http://radar-base.org/wp-content/uploads/2022/09/Logo_RADAR-Base-RGB.png"
sources:
- https://github.com/RADAR-base/radar-helm-charts/tree/main/charts/radar-push-endpoint
Expand Down
2 changes: 1 addition & 1 deletion charts/radar-push-endpoint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# radar-push-endpoint
[![Artifact HUB](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/radar-push-endpoint)](https://artifacthub.io/packages/helm/radar-base/radar-push-endpoint)

![Version: 0.3.4](https://img.shields.io/badge/Version-0.3.4-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.2](https://img.shields.io/badge/AppVersion-0.3.2-informational?style=flat-square)
![Version: 0.3.5](https://img.shields.io/badge/Version-0.3.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.3.2](https://img.shields.io/badge/AppVersion-0.3.2-informational?style=flat-square)

A Helm chart for RADAR-base Push Endpoint. REST Gateway to Kafka, for incoming data from Push or Subscription based WEB APIs. It performs authentication, authorization and content validation. For more details of the configurations, see https://github.com/RADAR-base/RADAR-PushEndpoint.

Expand Down
3 changes: 3 additions & 0 deletions charts/radar-push-endpoint/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ spec:
metadata:
annotations:
checksum/configmap: {{ include (print $.Template.BasePath "/configmap.yaml") . | sha256sum }}
kubectl.kubernetes.io/default-container: {{ .Chart.Name | quote }}
labels:
app.kubernetes.io/name: {{ include "radar-push-endpoint.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
Expand Down Expand Up @@ -41,6 +42,7 @@ spec:
- {{ .Release.Name }}
topologyKey: "kubernetes.io/hostname"
containers:
{{- if .Values.serviceMonitor.enabled }}
- image: sscaling/jmx-prometheus-exporter
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
Expand All @@ -59,6 +61,7 @@ spec:
volumeMounts:
- mountPath: /etc/radar-push-endpoint/
name: gateway-jmx-configmap
{{- end }}
- name: {{ .Chart.Name }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
Expand Down
2 changes: 2 additions & 0 deletions charts/radar-push-endpoint/templates/jmx-configmap.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{{- if .Values.serviceMonitor.enabled }}
apiVersion: v1
kind: ConfigMap
metadata:
Expand All @@ -10,3 +11,4 @@ data:
lowercaseOutputName: true
lowercaseOutputLabelNames: true
ssl: false
{{- end }}
2 changes: 2 additions & 0 deletions charts/radar-push-endpoint/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ spec:
targetPort: http
protocol: TCP
name: http
{{- if .Values.serviceMonitor.enabled }}
- name: metrics
port: 5556
protocol: TCP
targetPort: metrics
{{- end }}
selector:
app.kubernetes.io/name: {{ include "radar-push-endpoint.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}

0 comments on commit aa53a12

Please sign in to comment.