Fix documentation for enableNodePort and IPAM

This commit is contained in:
Ole Markus With 2020-03-02 19:42:47 +01:00
parent 8ca9bb195c
commit c1e123103e
1 changed files with 2 additions and 2 deletions

View File

@ -387,7 +387,7 @@ type CiliumNetworkingSpec struct {
// Default: none // Default: none
ContainerRuntimeLabels string `json:"containerRuntimeLabels,omitempty"` ContainerRuntimeLabels string `json:"containerRuntimeLabels,omitempty"`
// Ipam determines the IP address allocation mode to use. // Ipam determines the IP address allocation mode to use.
// "eni" will use AWS native networking for pods // "eni" will use AWS native networking for pods. Eni requires masquerade to be set to false.
Ipam string `json:"ipam,omitempty"` Ipam string `json:"ipam,omitempty"`
// IPTablesRulesNoinstall disables installing the base IPTables rules used for masquerading and kube-proxy. // IPTablesRulesNoinstall disables installing the base IPTables rules used for masquerading and kube-proxy.
// Default: false // Default: false
@ -396,7 +396,7 @@ type CiliumNetworkingSpec struct {
// Default: false // Default: false
AutoDirectNodeRoutes bool `json:"autoDirectNodeRoutes"` AutoDirectNodeRoutes bool `json:"autoDirectNodeRoutes"`
// EnableNodePort replaces kube-proxy with Cilium's BPF implementation. // EnableNodePort replaces kube-proxy with Cilium's BPF implementation.
// Requires masquerading to be disabled. // Requires spec.kubeProxy.enabled be set to false.
// Default: false // Default: false
EnableNodePort bool `json:"enableNodePort"` EnableNodePort bool `json:"enableNodePort"`