From 359b3b104b230337d956aee325ea3f6a1ee722b4 Mon Sep 17 00:00:00 2001 From: Shashi Deshetti Date: Fri, 1 Sep 2023 07:21:18 -0500 Subject: [PATCH] MANDE: Added port for IP login --- charts/mande/Chart.yaml | 4 ++-- charts/mande/templates/server/service.yaml | 8 +++++++- charts/mande/values.yaml | 4 ++++ 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/charts/mande/Chart.yaml b/charts/mande/Chart.yaml index bfb9f44..465beac 100644 --- a/charts/mande/Chart.yaml +++ b/charts/mande/Chart.yaml @@ -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 diff --git a/charts/mande/templates/server/service.yaml b/charts/mande/templates/server/service.yaml index a9fb8be..3eddfee 100644 --- a/charts/mande/templates/server/service.yaml +++ b/charts/mande/templates/server/service.yaml @@ -30,4 +30,10 @@ spec: protocol: TCP {{- if .Values.server.service.admin.portName }} name: {{ .Values.server.service.admin.portName }} - {{- end }} \ No newline at end of file + {{- end }} + - port: {{ .Values.server.service.ip.port }} + targetPort: 8004 + protocol: TCP + {{- if .Values.server.service.ip.portName }} + name: {{ .Values.server.service.ip.portName }} + {{- end }} \ No newline at end of file diff --git a/charts/mande/values.yaml b/charts/mande/values.yaml index 0bdce24..c5455e4 100644 --- a/charts/mande/values.yaml +++ b/charts/mande/values.yaml @@ -137,6 +137,10 @@ server: port: 8000 portName: http-admin + ip: + port: 8004 + portName: http-ip + metrics: enabled: false