Skip to content

Commit

Permalink
MANDE: incremented chart version to 0.5.7, added API service configur…
Browse files Browse the repository at this point in the history
…ation with port 8006
  • Loading branch information
ganga2166 committed Jan 10, 2025
1 parent 7928a8a commit 2b3e52e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/mande/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 6 additions & 0 deletions charts/mande/templates/server/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions charts/mande/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ server:
wf:
port: 8005
portName: http-wf

api:
port: 8006
portName: api

metrics:
enabled: true

Expand Down

0 comments on commit 2b3e52e

Please sign in to comment.