You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -133,12 +133,12 @@ INFO[0000] flows table created
133
133
At this stage, the collector wait for incoming data. If nothing shows yet, it means that no traffic is captured. Try to open the route of your application or update the filters of the capture.
134
134
135
135
Once some traffic is captured, the output will look like:
You can cycle to different views using left / right arrow keys and change the displayed enrichment colomns using page up / down ones.
139
139
Also, to adapt to your screen height, you can increase / decrease the number of displayed flows using up / down arrow keys.
140
140
141
-
In this capture, we see that the traffic is blocked by OVS since it reports the `OVS_DROP_LAST_ACTION` drop cause. This probably means that a Network Policy is involved.
141
+
In this capture, we see that the traffic is blocked by a network policy since it reports the `NetpolNamespace` network event.
142
142
Edit your network policies and give another try.
143
143
144
144
Behind the scenes in our scenario, we used to have a deny all on the pod label:
@@ -147,7 +147,7 @@ kind: NetworkPolicy
147
147
apiVersion: networking.k8s.io/v1
148
148
metadata:
149
149
name: deny-nodejs
150
-
namespace: connectivity-scenario
150
+
namespace: sample-app
151
151
spec:
152
152
podSelector:
153
153
matchLabels:
@@ -158,9 +158,9 @@ spec:
158
158
```
159
159
160
160
Once you updated your policies, you can give another try to your route until you fix the issue:
0 commit comments