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:
parent
6cec18cdd9
commit
113324abc1
1 changed files with 4 additions and 0 deletions
|
|
@ -23,6 +23,8 @@ spec:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
kubernetes.io/metadata.name: customer1
|
kubernetes.io/metadata.name: customer1
|
||||||
ports:
|
ports:
|
||||||
|
- port: 3000
|
||||||
|
protocol: TCP
|
||||||
- port: 8000
|
- port: 8000
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
- port: 8001
|
- port: 8001
|
||||||
|
|
@ -43,6 +45,8 @@ spec:
|
||||||
- trading-news-service
|
- trading-news-service
|
||||||
- trading-dashboard
|
- trading-dashboard
|
||||||
ports:
|
ports:
|
||||||
|
- port: 3000
|
||||||
|
protocol: TCP
|
||||||
- port: 8000
|
- port: 8000
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
- port: 8001
|
- port: 8001
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue