diff --git a/charts/mande/Chart.yaml b/charts/mande/Chart.yaml index af32884..cf429cf 100644 --- a/charts/mande/Chart.yaml +++ b/charts/mande/Chart.yaml @@ -15,7 +15,7 @@ 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.5.6 +version: 0.5.7 # 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 diff --git a/charts/mande/templates/server/service.yaml b/charts/mande/templates/server/service.yaml index 72098d4..7cd4f15 100644 --- a/charts/mande/templates/server/service.yaml +++ b/charts/mande/templates/server/service.yaml @@ -37,6 +37,12 @@ spec: {{- if .Values.server.service.ip.portName }} name: {{ .Values.server.service.ip.portName }} {{- end }} + - port: {{ .Values.server.service.api.port }} + targetPort: 8006 + protocol: TCP + {{- if .Values.server.service.api.portName }} + name: {{ .Values.server.service.api.portName }} + {{- end }} - port: {{ .Values.server.service.wf.port }} targetPort: 8005 protocol: TCP diff --git a/charts/mande/values.yaml b/charts/mande/values.yaml index ffc4b89..3565f04 100644 --- a/charts/mande/values.yaml +++ b/charts/mande/values.yaml @@ -144,6 +144,11 @@ server: wf: port: 8005 portName: http-wf + + api: + port: 8006 + portName: api + metrics: enabled: true