Hello,
I Installed a kubernetes cluster, it is composed of 1 master node and 3 workers on baremetal at my home.
* I used weavenet as CNI and the default is externalTrafficPolicy is externalTrafficPolicy: Cluster
I created a namespace for MetalLB
~/k8s/metalb$ cat namespace.yaml
I install metallb using helm charts in the namespace
helm install metallb metallb/metallb -f values.yaml -n metallb
I customized some values :
* loadBalancerClass: "nginx"
* controller.logLevel: debug
* controller.labels:
* speaker
* speaker.logLevel: info
* speaker.labels:
* crds.validationFailurePolicy=Ignore
I use kubectl logs and describe on the various pod.
I do not see any error.
How to do you confirm metalLB is running correctly ?
Then a create a Ingress in my kubernetes cluster.
No public IP is assign.
I do not see error.
Any help would be appreciated
Best Regards
Abdou