Cilium: overwrite auto-detected MTU of underlying network (#6329)

This commit is contained in:
Pasquale Toscano 2020-07-02 16:12:47 +02:00 committed by GitHub
parent 017df7113d
commit 4ce970c0b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View file

@ -2,6 +2,7 @@
# Log-level
cilium_debug: false
cilium_mtu: ""
cilium_enable_ipv4: true
cilium_enable_ipv6: false

View file

@ -25,6 +25,9 @@ spec:
- --kvstore=etcd
- --kvstore-opt=etcd.config=/var/lib/etcd-config/etcd.config
- --config-dir=/tmp/cilium/config-map
{% if cilium_mtu != "" %}
- --mtu={{ cilium_mtu }}
{% endif %}
command:
- cilium-agent
env: