Skip to content

Commit a87ddab

Browse files
authored
Merge pull request #4 from HomeDevopsLab/tcp-udp-services
Tcp udp services
2 parents bbf2050 + 57c56cd commit a87ddab

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [2.1.0] - 2023-07-27
4+
### Added
5+
- replaced strict TCP protocol family in ports specification with variable: protocol which allows to decide which protocol is needed
6+
7+
38
## [2.0.0] - 2023-07-21
49
### Added
510
- ability to use nodeSelector function

chart/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 2.0.0
18+
version: 2.1.0
1919
# This is the version number of the application being deployed. This version number should be
2020
# incremented each time you make changes to the application. Versions are not expected to
2121
# follow Semantic Versioning. They should reflect the version the application is using.

chart/templates/service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ spec:
1515
{{- end }}
1616
ports:
1717
- name: {{ .name }}
18-
protocol: TCP
18+
protocol: {{ .protocol }}
1919
port: {{ .servicePort }}
2020
targetPort: {{ .targetPort }}
2121
selector:

0 commit comments

Comments
 (0)