fix: remove trailing backslash and yaml indent (#9339)
* fix: remove trailing backslash * fixed indent in cilium config templatepull/9342/head
parent
694de1d67b
commit
3646dc0bd2
|
@ -142,12 +142,12 @@ data:
|
||||||
{% if cilium_version | regex_replace('v') is version('1.12', '<') %}
|
{% if cilium_version | regex_replace('v') is version('1.12', '<') %}
|
||||||
native-routing-cidr: "{{ cilium_native_routing_cidr }}"
|
native-routing-cidr: "{{ cilium_native_routing_cidr }}"
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if cilium_native_routing_cidr | length %}
|
{% if cilium_native_routing_cidr | length %}
|
||||||
ipv4-native-routing-cidr: "{{ cilium_native_routing_cidr }}"
|
ipv4-native-routing-cidr: "{{ cilium_native_routing_cidr }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if cilium_native_routing_cidr_ipv6 | length %}
|
{% if cilium_native_routing_cidr_ipv6 | length %}
|
||||||
ipv6-native-routing-cidr: "{{ cilium_native_routing_cidr_ipv6 }}"
|
ipv6-native-routing-cidr: "{{ cilium_native_routing_cidr_ipv6 }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
auto-direct-node-routes: "{{ cilium_auto_direct_node_routes }}"
|
auto-direct-node-routes: "{{ cilium_auto_direct_node_routes }}"
|
||||||
|
@ -182,16 +182,16 @@ data:
|
||||||
|
|
||||||
# Enable transparent network encryption
|
# Enable transparent network encryption
|
||||||
{% if cilium_encryption_enabled %}
|
{% if cilium_encryption_enabled %}
|
||||||
{% if cilium_encryption_type == "ipsec" %}
|
{% if cilium_encryption_type == "ipsec" %}
|
||||||
enable-ipsec: "true"
|
enable-ipsec: "true"
|
||||||
ipsec-key-file: /etc/ipsec/keys
|
ipsec-key-file: /etc/ipsec/keys
|
||||||
encrypt-node: "{{ cilium_ipsec_node_encryption }}"
|
encrypt-node: "{{ cilium_ipsec_node_encryption }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if cilium_encryption_type == "wireguard" %}
|
{% if cilium_encryption_type == "wireguard" %}
|
||||||
enable-wireguard: "true"
|
enable-wireguard: "true"
|
||||||
enable-wireguard-userspace-fallback: "{{ cilium_wireguard_userspace_fallback }}"
|
enable-wireguard-userspace-fallback: "{{ cilium_wireguard_userspace_fallback }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
# IPAM settings
|
# IPAM settings
|
||||||
|
@ -236,4 +236,4 @@ data:
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
masqLinkLocal: {{ cilium_masq_link_local|bool }}
|
masqLinkLocal: {{ cilium_masq_link_local|bool }}
|
||||||
resyncInterval: "{{ cilium_ip_masq_resync_interval }}"
|
resyncInterval: "{{ cilium_ip_masq_resync_interval }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -167,7 +167,7 @@ spec:
|
||||||
- name: cilium-config-path
|
- name: cilium-config-path
|
||||||
mountPath: /tmp/cilium/config-map
|
mountPath: /tmp/cilium/config-map
|
||||||
readOnly: true
|
readOnly: true
|
||||||
{% if cilium_ip_masq_agent_enable %}\
|
{% if cilium_ip_masq_agent_enable %}
|
||||||
- name: ip-masq-agent
|
- name: ip-masq-agent
|
||||||
mountPath: /etc/config
|
mountPath: /etc/config
|
||||||
readOnly: true
|
readOnly: true
|
||||||
|
|
Loading…
Reference in New Issue