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
I'm able to reach 172.24.0.[2-4] ips from my host:
ping 172.24.0.2
PING 172.24.0.2 (172.24.0.2) 56(84) bytes of data.
64 bytes from 172.24.0.2: icmp_seq=1 ttl=64 time=0.068 ms
64 bytes from 172.24.0.2: icmp_seq=2 ttl=64 time=0.056 ms
Here you can see my LoadBalancer service:
$ kubectl get svc -l "app.kubernetes.io/name=kafka,app.kubernetes.io/instance=kafka,app.kubernetes.io/component=kafka,pod" -w
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
kafka-0-external LoadBalancer 10.43.101.121 172.24.0.10 9094:32094/TCP 30h
As you can see, 172.24.0.10 is assigned.
Nevertheless, I'm not able to reach it from my host:
ping 172.24.0.10
PING 172.24.0.10 (172.24.0.10) 56(84) bytes of data.
From 172.24.0.1 icmp_seq=1 Destination Host Unreachable
From 172.24.0.1 icmp_seq=2 Destination Host Unreachable
From 172.24.0.1 icmp_seq=3 Destination Host Unreachable
I've realized that it's trying to reach 172.24.0.10 from 172.24.0.1.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I've created a k3d cluster using this configuration file:
After that, I installed metallb using helm chart.
Here ip address pool manifest:
Here
kafka-streams
docker network:I'm able to reach 172.24.0.[2-4] ips from my host:
Here you can see my LoadBalancer service:
As you can see,
172.24.0.10
is assigned.Nevertheless, I'm not able to reach it from my host:
I've realized that it's trying to reach
172.24.0.10
from172.24.0.1
.Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions