Using the docker image for v6, what's now the recommended method to load whitelist/blacklist/regex entries? Are there now env variables I could use?
I have a few of those from my old pihole that I'd like to migrate. I'm using kubernetes, so some way of entering those into the deployment file would be great.
As an alternative, you can use the web interface to load these entries.
Adding a list of "space-separated" entries at once, will add them in a single step.
I'm actually trying to create a stateless kubernetes pod. (well, microk8s, but much the same), so entries made via the Web interface wouldn't survive a restart.
I've tried a config map, but it creates any files as root and the volume is read only, so pihole fails when trying to changing permissions.
I may have to build my own image with my config added there.