Skip to content

Commit c4bd7d0

Browse files
committed
remove metrics port
1 parent 1c71521 commit c4bd7d0

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

charts/vaas/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v2
22
name: vaas
3-
version: 3.3.0-beta.4
3+
version: 3.3.0-beta.5
44
description: Deployment of a Verdict-as-a-Service on-premise instance
55
maintainers:
66
- name: G DATA CyberDefense AG

charts/vaas/templates/gateway/statefulset.yaml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -80,15 +80,11 @@ spec:
8080
- name: ws
8181
containerPort: {{ .Values.gateway.service.ws.port }}
8282
protocol: TCP
83-
{{- if .Values.gateway.metrics.enabled }}
84-
- name: metrics
85-
containerPort: {{ .Values.gateway.metrics.targetPort }}
86-
protocol: TCP
8783
{{- if .Values.gateway.metrics.livenessProbe.enabled }}
8884
livenessProbe:
8985
httpGet:
9086
path: {{ .Values.gateway.metrics.livenessProbe.httpGet.path }}
91-
port: {{ .Values.gateway.metrics.livenessProbe.httpGet.port | default "metrics" }}
87+
port: {{ .Values.gateway.metrics.livenessProbe.httpGet.port | default "http" }}
9288
timeoutSeconds: {{ .Values.gateway.metrics.livenessProbe.timeoutSeconds }}
9389
{{- with .Values.gateway.metrics.livenessProbe.initalDelaySeconds }}
9490
initialDelaySeconds: {{ . }}
@@ -107,7 +103,7 @@ spec:
107103
readinessProbe:
108104
httpGet:
109105
path: {{ .Values.gateway.metrics.readinessProbe.httpGet.path }}
110-
port: {{ .Values.gateway.metrics.readinessProbe.httpGet.port | default "metrics" }}
106+
port: {{ .Values.gateway.metrics.readinessProbe.httpGet.port | default "http" }}
111107
timeoutSeconds: {{ .Values.gateway.metrics.readinessProbe.timeoutSeconds }}
112108
{{- with .Values.gateway.metrics.readinessProbe.initalDelaySeconds }}
113109
initialDelaySeconds: {{ . }}
@@ -122,7 +118,6 @@ spec:
122118
failureThreshold: {{ . }}
123119
{{- end }}
124120
{{- end }}
125-
{{- end }}
126121
resources:
127122
{{- toYaml .Values.gateway.resources | nindent 12 }}
128123
{{- with .Values.gateway.nodeSelector }}

charts/vaas/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,6 @@ gateway:
160160

161161
metrics:
162162
enabled: false
163-
targetPort: 9110
164163
livenessProbe:
165164
enabled: true
166165
httpGet:

0 commit comments

Comments
 (0)