madic-creates
madic-creates
Thunderbird and Evolution fully support wayland. Though Thunderbird only with MOZ_ENABLE_WAYLAND. RSS Reader I don't know
Can confirm on a linux system. I don't think it has anything to do with the operating system. Setting the following environment variables for the docker container does not seem...
As workaround I added the following to the task: ``` vars: mitogen_task_isolation: fork ``` Example: ``` - name: Podman | Installing podman.... package: name: - podman state: present vars: mitogen_task_isolation:...
Can confirm. My export does not include a CSV. Even a full YouTube export does not include it. And I am living in germany
You get the error because there is already some process listening on udp port 57, so pihole can't use it. But I got it working with dhcp enabled. Though it...
I had that (not MetalLB but Kube-VIP), but it was not working because DHCP is working at OSI Layer 2 and not 3. DHCP Requests are Arp Broadcasts and not...
What do you need? The image can be found as part of the kubernetes manifest: image: homeall/dhcphelper A search engine leads me to the following github repo: https://github.com/homeall/dhcphelper
The feature was introduced in the following pull request: https://github.com/kube-vip/kube-vip/pull/617 My goal is that a pod "follows" a vip. It needs to be on the same node as the vip....
I tried that but I'm not sure how that works. I've enabled Service Election and configured a LoadBalancer with externalTrafficPolicy: Local. But at the moment the vip is on another...
Nevermind. I think I found the problem. Used the wrong env variable. It's **svc_election** and not **enableServicesElection**. The documentation seems not to be up-to-date on https://kube-vip.io/docs/usage/kubernetes-services/?query=external#load-balancing-load-balancers-when-using-arp-mode-yes-you-read-that-correctly-kube-vip-v050 Using service LoadBalancing fixed...