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:
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue