Last active
August 22, 2020 01:16
-
-
Save ronaknnathani/957a56210bd4fbd8e11120273c6b4ede to your computer and use it in GitHub Desktop.
Sample flannel CNI plugin configuration. By default, it is stored at /etc/cni/net.d/10-flannel.conflist.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "cni0", | |
"plugins": [ | |
{ | |
"type": "flannel", | |
"delegate": { | |
"ipMasq": false, | |
"hairpinMode": true, | |
"isDefaultGateway": true | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment