Titums 3 Posted ... I have a server running Ubuntu 24 with a K3S node setup. I'm trying to set yup a pod with Ubuntu 24 and XFCE. The base image I'm basing mine off of is jrei/systemd-ubuntu:24.04. I've got it mostly working, there are just two issues. One is auto start and the other is DNS. This post is focusing on the DNS issue. Before bluetit starts DNS works just fine. After the connection is established DNS no longer works. In the logs I see this error: VPN Server has pushed IPv4 DNS server 10.65.2.1 ERROR: Cannot create a backup copy of resolv.conf I updated permission on the location I assume it's trying to back up to. sudo chmod 770 /etc/airvpn Then restarted bluetit, still getting the error and now DNS. If I manually set the dns server in /etc/resolv.conf it starts to "work" google works well, but any other web site is slow to resolve if it does at all. Most items don't resolve as all. The container config in K3S doesn't do anything special, it just uses default dns config. I did have to update CoreDNS, with "forward . 192.168.1.1" to get the pod's dns working before bluetit was started. What else would cause that error message? Anything else I should be looking into? Thanks for your help. Quote Share this post Link to post
Staff 10568 Posted ... On 6/22/2026 at 4:05 AM, Titums said: What else would cause that error message? Anything else I should be looking into? Hello! Thank you for your patience to reply to the numerous questions by the support team on your ticket. We re-publish the outcome here for Kubernetes users' and readers' comfort, and for future reference. On 6/22/2026 at 4:05 AM, Titums said: VPN Server has pushed IPv4 DNS server 10.65.2.1 ERROR: Cannot create a backup copy of resolv.conf Bluetit relies on filesystem-level operation to create the resolv.conf backup. In your setup, /etc/airvpn and /etc/resolv.conf are in different file systems. Therefore Linux kernel will return EXDEV ("cross-device link") error when Bluetit tries to move, via stdlib rename() method, /etc/resolv.conf into /etc/airvpn/ Possible work-around: Have /etc/airvpn and /etc/resolv.conf into the same file system, OR don't allow Bluetit to manage DNS by setting, inside bluetit.rc run control file, this directive: ignorednspush on and let the pod manage the DNS. You will not use anymore VPN DNS, but DNS queries will be tunneled anyway. You can still set your favorite DNS (even VPN DNS, if needed), but you have to set it manually. In a future Bluetit version we'll see how to improve Suite compatibility with Kubernetes (and possibly other environments). Kind regards Quote Share this post Link to post