fix: allow port 80 in inter-service egress for ClusterIP traffic

This commit is contained in:
Hermes DevOps 2026-05-29 13:16:35 +00:00
parent 79e0d98fbe
commit 18764cf6b5

View file

@ -115,7 +115,7 @@ spec:
ports: ports:
- port: 9092 - port: 9092
protocol: TCP protocol: TCP
# Allow inter-service egress # Allow inter-service egress (via ClusterIP services on port 80, plus direct pod ports)
- to: - to:
- podSelector: - podSelector:
matchExpressions: matchExpressions:
@ -127,6 +127,8 @@ spec:
- trading-news-service - trading-news-service
- trading-dashboard - trading-dashboard
ports: ports:
- port: 80
protocol: TCP
- port: 8000 - port: 8000
protocol: TCP protocol: TCP
- port: 8001 - port: 8001