Skip to content

Commit

Permalink
less than 15 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
avimoondra committed May 21, 2024
1 parent f52c53a commit 2b7667b
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ spec:
- name: rpc
containerPort: {{ include (printf "temporal.%s.grpcPort" $service) $ }}
protocol: TCP
- name: tcp-metrics
- name: http-metrics
containerPort: 9090
protocol: TCP
{{- if and (ne $service "worker") $.Values.server.useLegacyHealthProbe }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
{{- end }}
spec:
endpoints:
- port: tcp-metrics
- port: http-metrics
interval: {{ default $.Values.server.metrics.serviceMonitor.interval $serviceValues.metrics.serviceMonitor.interval }}
{{- with (default $.Values.server.metrics.serviceMonitor.metricRelabelings $serviceValues.metrics.serviceMonitor.metricRelabelings) }}
metricRelabelings:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,9 +66,9 @@ spec:
protocol: TCP
name: grpc-rpc
- port: 9090
targetPort: tcp-metrics
targetPort: http-metrics
protocol: TCP
name: tcp-metrics
name: http-metrics
selector:
app.kubernetes.io/name: {{ include "temporal.name" $ }}
app.kubernetes.io/instance: {{ $.Release.Name }}
Expand Down
4 changes: 2 additions & 2 deletions charts/retool/templates/deployment_backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ spec:
{{- end }}
ports:
- containerPort: {{ .Values.service.internalPort }}
name: tcp-{{ template "retool.fullname" . }}
name: http-server
protocol: TCP
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
Expand Down Expand Up @@ -357,4 +357,4 @@ spec:
- protocol: TCP
port: 80
targetPort: {{ .Values.service.internalPort }}
name: tcp-{{ template "retool.fullname" . }}
name: http-server
4 changes: 2 additions & 2 deletions charts/retool/templates/deployment_code_executor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ spec:
{{- end }}
ports:
- containerPort: 3004
name: tcp-{{ template "retool.codeExecutor.name" . }}
name: http-server
protocol: TCP
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
Expand Down Expand Up @@ -137,5 +137,5 @@ spec:
- protocol: TCP
port: 80
targetPort: 3004
name: tcp-{{ template "retool.codeExecutor.name" . }}
name: http-server
{{- end }}
4 changes: 2 additions & 2 deletions charts/retool/templates/deployment_multiplayer_ws.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
selector:
retoolService: {{ template "retool.multiplayer.name" . }}
ports:
- name: tcp-{{ template "retool.multiplayer.name" . }}
- name: http-server
protocol: TCP
port: 80
targetPort: 3001
Expand Down Expand Up @@ -130,7 +130,7 @@ spec:
{{- end }}
ports:
- containerPort: 3001
name: tcp-{{ template "retool.multiplayer.name" . }}
name: http-server
protocol: TCP
resources:
{{ toYaml .Values.multiplayer.resources | indent 10 }}
Expand Down
4 changes: 2 additions & 2 deletions charts/retool/templates/deployment_workflows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ spec:
{{- end }}
ports:
- containerPort: {{ .Values.service.internalPort }}
name: tcp-{{ template "retool.workflowBackend.name" . }}
name: http-server
protocol: TCP
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
Expand Down Expand Up @@ -319,5 +319,5 @@ spec:
- protocol: TCP
port: 80
targetPort: {{ .Values.service.internalPort }}
name: tcp-{{ template "retool.workflowBackend.name" . }}
name: http-server
{{- end }}
10 changes: 5 additions & 5 deletions charts/retool/templates/deployment_workflows_worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,10 @@ spec:
{{- end }}
ports:
- containerPort: 3005
name: tcp-{{ template "retool.workflowWorker.name" . }}
name: http-server
protocol: TCP
- containerPort: 9090
name: tcp-metrics
name: http-metrics
protocol: TCP

{{- if .Values.livenessProbe.enabled }}
Expand Down Expand Up @@ -342,9 +342,9 @@ spec:
- protocol: TCP
port: 3005
targetPort: 3005
name: tcp-{{ template "retool.workflowWorker.name" . }}
name: http-server
- protocol: TCP
port: 9090
targetPort: tcp-metrics
name: tcp-metrics
targetPort: http-metrics
name: http-metrics
{{- end }}

0 comments on commit 2b7667b

Please sign in to comment.