Skip to content

Commit

Permalink
Correct extraPorts hostPort property.
Browse files Browse the repository at this point in the history
  • Loading branch information
and1truong committed Apr 29, 2024
1 parent 3201389 commit c9129fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ Main (unreleased)
- Fix an issue on Windows where uninstalling Alloy did not remove it from the
Add/Remove programs list. (@rfratto)

- Fix wrong access alloy.extraPorts.hostPort in cluster service definition (@and1truong)

v1.0.0 (2024-04-09)
-------------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ spec:
protocol: "TCP"
{{- range $portMap := $values.extraPorts }}
- name: {{ $portMap.name }}
port: {{ $portMap.port }}
port: {{ $portMap.hostPort }}
targetPort: {{ $portMap.targetPort }}
protocol: {{ coalesce $portMap.protocol "TCP" }}
{{- end }}
Expand Down

0 comments on commit c9129fb

Please sign in to comment.