mirror of https://github.com/kubernetes/kops.git
Update calico
This commit is contained in:
parent
011ab0f1b6
commit
716327e899
File diff suppressed because it is too large
Load Diff
|
@ -303,6 +303,15 @@ func (tf *TemplateFunctions) AddTo(dest template.FuncMap, secretStore fi.SecretS
|
|||
}
|
||||
return "CrossSubnet"
|
||||
}
|
||||
dest["CalicoIPv6PoolVXLANMode"] = func() string {
|
||||
if c.EncapsulationMode != "vxlan" {
|
||||
return "Never"
|
||||
}
|
||||
if c.VXLANMode != "" {
|
||||
return c.VXLANMode
|
||||
}
|
||||
return "Never"
|
||||
}
|
||||
}
|
||||
|
||||
if cluster.Spec.Networking.Cilium != nil {
|
||||
|
|
Loading…
Reference in New Issue