fix(platform): add port 3000 to trading-platform NetworkPolicy ingress rules

Dashboard listens on port 3000 but NetworkPolicy only allowed 8000-8003.
This blocked all traffic including Tailscale proxy connections to trade:3000.
This commit is contained in:
Hermes DevOps 2026-05-25 07:05:45 +00:00
parent 6cec18cdd9
commit 113324abc1

View file

@ -23,6 +23,8 @@ spec:
matchLabels:
kubernetes.io/metadata.name: customer1
ports:
- port: 3000
protocol: TCP
- port: 8000
protocol: TCP
- port: 8001
@ -43,6 +45,8 @@ spec:
- trading-news-service
- trading-dashboard
ports:
- port: 3000
protocol: TCP
- port: 8000
protocol: TCP
- port: 8001