rm3l / helm-charts

Collection of my Helm Charts, for deployment into Kubernetes clusters.
https://helm-charts.rm3l.org
MIT License
10 stars 9 forks source link

AdGuard - Option to configure `ipFamilyPolicy` and `ipFamilies` for services #86

Open hertznsk opened 1 week ago

hertznsk commented 1 week ago

Thanks for the AdGuard chart!

By default, Kubernetes services are created to work only on the IPv4 stack. If, like me, you have a dual stack network, you need to add settings to the services:

  ipFamilies:
    - IPv4
    - IPv6
  ipFamilyPolicy: PreferDualStack

Could you provide the appropriate service configuration options in the chart?

rm3l commented 2 days ago

Hi @hertznsk , Thanks for this suggestion, which definitely makes sense. Interested in contributing a PR?

hertznsk commented 18 hours ago

Interested in contributing a PR?

Well, I could try to do that. But I'm definitely not good at either k8s or helm.

I'll read more about it and do it next weekend.