File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
roles/network_plugin/cilium Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -58,6 +58,12 @@ cilium_monitor_aggregation: medium
58
58
# Kube Proxy Replacement mode (true/false)
59
59
cilium_kube_proxy_replacement : false
60
60
61
+ # If not defined `cilium_dns_proxy_enable_transparent_mode`, it will following the Cilium behavior.
62
+ # When Cilium is configured to replace kube-proxy, it automatically enables dnsProxy, which will conflict with nodelocaldns.
63
+ # You can set `false` avoid conflict with nodelocaldns.
64
+ # https://github.com/cilium/cilium/issues/33144
65
+ # cilium_dns_proxy_enable_transparent_mode:
66
+
61
67
# If upgrading from Cilium < 1.5, you may want to override some of these options
62
68
# to prevent service disruptions. See also:
63
69
# http://docs.cilium.io/en/stable/install/upgrade/#changes-that-may-require-action
Original file line number Diff line number Diff line change @@ -28,6 +28,11 @@ loadbalancer:
28
28
29
29
kubeProxyReplacement: {{ cilium_kube_proxy_replacement }}
30
30
31
+ {% if cilium_dns_proxy_enable_transparent_mode is defined %}
32
+ dnsProxy:
33
+ enableTransparentMode: {{ cilium_dns_proxy_enable_transparent_mode }}
34
+ {% endif %}
35
+
31
36
extraVolumes:
32
37
{{ cilium_agent_extra_volumes | to_nice_yaml(indent=2) | indent(2) }}
33
38
You can’t perform that action at this time.
0 commit comments