Skip to content

Commit

Permalink
fix ports
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Shcherbakov committed Nov 12, 2024
1 parent 4e0c050 commit 503caa0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions deploy/chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ spec:
- name: http
containerPort: {{ .Values.service.port }}
protocol: TCP
- name: gui
containerPort: {{ .Values.service.additonalPort }}
- name: admin
containerPort: {{ .Values.service.adminPort }}
protocol: TCP
livenessProbe:
{{- toYaml .Values.livenessProbe | nindent 12 }}
Expand Down
6 changes: 3 additions & 3 deletions deploy/chart/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ spec:
targetPort: {{ .Values.service.port }}
protocol: TCP
name: http
- port: {{ .Values.service.port }}
targetPort: {{ .Values.service.additonalPort }}
- port: {{ .Values.service.adminPort }}
targetPort: {{ .Values.service.adminPort }}
protocol: TCP
name: gui
name: admin
selector:
{{- include "helm-chart.selectorLabels" . | nindent 4 }}
4 changes: 2 additions & 2 deletions deploy/chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ image:

service:
type: ClusterIP
port: 19091
additonalPort: 19092
port: 19090
adminPort: 19091

autoscaling:
enabled: true
Expand Down

0 comments on commit 503caa0

Please sign in to comment.