Skip to content

Commit

Permalink
MANDE: Added port for IP login
Browse files Browse the repository at this point in the history
  • Loading branch information
deshetti committed Sep 1, 2023
1 parent 4a5327b commit 359b3b1
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/mande/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.4.6
version: 0.5.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
appVersion: 0.18.0
appVersion: 0.34.0

maintainers:
- name: deshetti
Expand Down
8 changes: 7 additions & 1 deletion charts/mande/templates/server/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,10 @@ spec:
protocol: TCP
{{- if .Values.server.service.admin.portName }}
name: {{ .Values.server.service.admin.portName }}
{{- end }}
{{- end }}
- port: {{ .Values.server.service.ip.port }}
targetPort: 8004
protocol: TCP
{{- if .Values.server.service.ip.portName }}
name: {{ .Values.server.service.ip.portName }}
{{- end }}
4 changes: 4 additions & 0 deletions charts/mande/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,10 @@ server:
port: 8000
portName: http-admin

ip:
port: 8004
portName: http-ip

metrics:
enabled: false

Expand Down

0 comments on commit 359b3b1

Please sign in to comment.