I'm setting up a global network policy as follows, however the documentation claims the entries are in /var/log/syslog. But which pod or resource would let me see this information?
apiVersion: projectcalico.org/v3
kind: GlobalNetworkPolicy
metadata:
name: log-denied-packets
spec:
applyOnForward: true
preDNAT: true
ingress:
- action: Log
destination:
nets:
- <loadbalancer_IP>/32
ports:
- 80
protocol: TCP
source:
nets:
- <client_address>/32
- action: Log
destination:
nets:
- <loadbalancer_IP>/32
ports:
- 80
protocol: UDP
source:
nets:
- <client_address>/32
selector: ibm.role=='worker_public'
order: 300
types:
- Ingress