Skip to content

Commit 197a4ce

Browse files
committed
fix(helm): Use strings in stead of integers for ports in CiliumNetworkPolicies
1 parent 37eddab commit 197a4ce

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

production/helm/loki/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Entries should be ordered as follows:
1212
Entries should include a reference to the pull request that introduced the change.
1313

1414
## Unreleased
15+
- [BUGFIX] Use strings in stead of integers for ports in CiliumNetworkPolicies
1516

1617
## 6.40.0
1718

production/helm/loki/templates/ciliumnetworkpolicy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ spec:
3131
egress:
3232
- toPorts:
3333
- ports:
34-
- port: 53
34+
- port: "53"
3535
protocol: UDP
36-
- port: 53
36+
- port: "53"
3737
protocol: TCP
3838
toEndpoints:
3939
- namespaceSelector: {}

0 commit comments

Comments
 (0)