Skip to content

Commit

Permalink
Added port names in the helm chart
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
Christopher Woods authored and Christopher Woods committed Oct 24, 2024
1 parent 564cd4f commit d30cf9b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
### Added
- Added names for the ports in the helm charts

## [0.0.7] - 2024-10-24
### Added
- Added an healthcheck server to simplify pod healthchecks
- Added a healthcheck server to simplify pod healthchecks
- Updated helm charts to use the healthcheck server, plus expose the bridge server port

## [0.0.6] - 2024-10-23
Expand Down
3 changes: 3 additions & 0 deletions helm/bridge/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@ spec:
ports:
- protocol: TCP
port: {{ .Values.port }}
name: agent
targetPort: {{ .Values.port }}
- protocol: TCP
port: {{ .Values.bridge_port }}
name: bridge
targetPort: {{ .Values.bridge_port }}
- protocol: TCP
port: {{ .Values.health_port }}
name: health
targetPort: {{ .Values.health_port }}
selector:
app.kubernetes.io/name: op-bridge
2 changes: 2 additions & 0 deletions helm/portal/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ spec:
ports:
- protocol: TCP
port: {{ .Values.port }}
name: agent
targetPort: {{ .Values.port }}
- protocol: TCP
port: {{ .Values.health_port }}
name: health
targetPort: {{ .Values.health_port }}
selector:
app.kubernetes.io/name: op-portal

0 comments on commit d30cf9b

Please sign in to comment.