Open vince-vibin opened 2 years ago
so i think i actually just fixed in by just disabeling traefic. Maybe this is going to cause problems later so im going to keep you updated.
To disable i used this command:
kubectl delete -n kube-system helmcharts traefik
The thing is that i now have multiple adresses for each service and i think that should not be the case
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE
pihole-dhcp LoadBalancer 10.43.144.208 192.168.178.200,192.168.178.201,192.168.178.202,192.168.178.203 67:32211/UDP 2m30s
pihole-dns-tcp LoadBalancer 10.43.186.24 192.168.178.200,192.168.178.201,192.168.178.202,192.168.178.203 53:31398/TCP 2m30s
pihole-dns-udp LoadBalancer 10.43.243.170 192.168.178.200,192.168.178.201,192.168.178.202,192.168.178.203 53:31275/UDP 2m30s
pihole-web LoadBalancer 10.43.19.61 192.168.178.200,192.168.178.201,192.168.178.202,192.168.178.203 80:30004/TCP,443:30006/TCP 2m30s
Any ideas about that?
You have defined type
twice. Maybe thats the issue?
serviceWeb:
type: ClusterIP
loadBalancerIP: 192.168.178.210
annotations:
metallb.universe.tf/allow-shared-ip: pihole-svc
type: LoadBalancer
loadBalancerIP
will be removed soon, as it is deprecrated.
I think your Metallb setup is not correct. If you remove the loadBalancerIP
setting all the services should be deployed with one external IP.
i'm new to this so maybe i'm not really getting what you want me to do, but i now deployed the service like this
serviceWeb:
type: LoadBalancer
annotations:
metallb.universe.tf/allow-shared-ip: pihole-svc
but its still just pending. is there any documentation about the right metallb config?
Hey so im deploying this on my raspberry pi cluster with this comand:
helm install --version '2.5.8' --namespace pihole --values values.yaml pihole mojo2600/pihole
but when i check the pods the ServiceWeb pods are stuck in pending:also this is my values.yaml:
(Note that
loadBalancerIP
never is the IP of a node but a random free IP in the network and i dont really know if that is how it is supposed to be 😅) When is describe a pod im getting this error:Do you guys have any idea?