Using vxlan as default value for flannel_backend

Flannel is recommending using vxlan[1] and udp is just for debugging
or the kernel doesn't support vxlan or host-gw. So this patch is
proposing using 'vxlan' as the default value of label 'flannel_backend'
and it has been verified with sonobuoy.

[1] https://github.com/coreos/flannel/blob/master/Documentation/backends.md

Task: 36425
Story: 2006482

Change-Id: Ibe7f3446be894c593c6147186cc159bd01834d29
This commit is contained in:
Feilong Wang 2019-09-02 14:52:01 +12:00
parent 6212fc974d
commit 0b033f03d0
2 changed files with 8 additions and 2 deletions

View File

@ -110,8 +110,8 @@ parameters:
flannel_backend: flannel_backend:
type: string type: string
description: > description: >
specify the backend for flannel, default udp backend specify the backend for flannel, default vxlan backend
default: "udp" default: "vxlan"
constraints: constraints:
- allowed_values: ["udp", "vxlan", "host-gw"] - allowed_values: ["udp", "vxlan", "host-gw"]

View File

@ -0,0 +1,6 @@
---
other:
- |
The default value of flannel_backend will be replaced with `vxlan` which
was `udp` based on the recommendation at
https://github.com/coreos/flannel/blob/master/Documentation/backends.md