Update calico to version 3.24.0
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
8e4129387e
commit
0de1caead0
30 changed files with 101 additions and 49 deletions
|
|
@ -1,3 +1,4 @@
|
|||
# Source: calico/templates/kdd-crds.yaml
|
||||
apiVersion: apiextensions.k8s.io/v1
|
||||
kind: CustomResourceDefinition
|
||||
metadata:
|
||||
|
|
@ -9,6 +10,7 @@ spec:
|
|||
listKind: FelixConfigurationList
|
||||
plural: felixconfigurations
|
||||
singular: felixconfiguration
|
||||
preserveUnknownFields: false
|
||||
scope: Cluster
|
||||
versions:
|
||||
- name: v1
|
||||
|
|
@ -86,7 +88,7 @@ spec:
|
|||
description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit
|
||||
mark that is set on connections from an external client to a local
|
||||
service. This mark allows us to control how packets of that connection
|
||||
are routed within the host and how is routing intepreted by RPF
|
||||
are routed within the host and how is routing interpreted by RPF
|
||||
check. [Default: 0]'
|
||||
type: integer
|
||||
bpfExternalServiceMode:
|
||||
|
|
@ -134,6 +136,11 @@ spec:
|
|||
policy. Selectors such as "all()" can result in large numbers of
|
||||
entries (one entry per endpoint in that case).
|
||||
type: integer
|
||||
bpfMapSizeIfState:
|
||||
description: BPFMapSizeIfState sets the size for ifstate map. The
|
||||
ifstate map must be large enough to hold an entry for each device
|
||||
(host + workloads) on a host.
|
||||
type: integer
|
||||
bpfMapSizeNATAffinity:
|
||||
type: integer
|
||||
bpfMapSizeNATBackend:
|
||||
|
|
@ -166,6 +173,11 @@ spec:
|
|||
are inclusive. [Default: 20000:29999]'
|
||||
pattern: ^.*
|
||||
x-kubernetes-int-or-string: true
|
||||
bpfPolicyDebugEnabled:
|
||||
description: BPFPolicyDebugEnabled when true, Felix records detailed
|
||||
information about the BPF policy programs, which can be examined
|
||||
with the calico-bpf command-line tool.
|
||||
type: boolean
|
||||
chainInsertMode:
|
||||
description: 'ChainInsertMode controls whether Felix hooks the kernel''s
|
||||
top-level iptables chains by inserting a rule at the top of the
|
||||
|
|
@ -295,7 +307,6 @@ spec:
|
|||
are auto-detected.
|
||||
type: string
|
||||
floatingIPs:
|
||||
default: Disabled
|
||||
description: FloatingIPs configures whether or not Felix will program
|
||||
floating IP addresses.
|
||||
enum:
|
||||
|
|
@ -557,6 +568,10 @@ spec:
|
|||
information. - WorkloadIPs: use workload endpoints to construct
|
||||
routes. - CalicoIPAM: the default - use IPAM data to construct routes.'
|
||||
type: string
|
||||
routeSyncDisabled:
|
||||
description: RouteSyncDisabled will disable all operations performed
|
||||
on the route table. Set to true to run in network-policy mode only.
|
||||
type: boolean
|
||||
routeTableRange:
|
||||
description: Deprecated in favor of RouteTableRanges. Calico programs
|
||||
additional Linux route tables for various purposes. RouteTableRange
|
||||
|
|
@ -634,7 +649,13 @@ spec:
|
|||
vxlanVNI:
|
||||
type: integer
|
||||
wireguardEnabled:
|
||||
description: 'WireguardEnabled controls whether Wireguard is enabled.
|
||||
description: 'WireguardEnabled controls whether Wireguard is enabled
|
||||
for IPv4 (encapsulating IPv4 traffic over an IPv4 underlay network).
|
||||
[Default: false]'
|
||||
type: boolean
|
||||
wireguardEnabledV6:
|
||||
description: 'WireguardEnabledV6 controls whether Wireguard is enabled
|
||||
for IPv6 (encapsulating IPv6 traffic over an IPv6 underlay network).
|
||||
[Default: false]'
|
||||
type: boolean
|
||||
wireguardHostEncryptionEnabled:
|
||||
|
|
@ -643,7 +664,11 @@ spec:
|
|||
type: boolean
|
||||
wireguardInterfaceName:
|
||||
description: 'WireguardInterfaceName specifies the name to use for
|
||||
the Wireguard interface. [Default: wg.calico]'
|
||||
the IPv4 Wireguard interface. [Default: wireguard.cali]'
|
||||
type: string
|
||||
wireguardInterfaceNameV6:
|
||||
description: 'WireguardInterfaceNameV6 specifies the name to use for
|
||||
the IPv6 Wireguard interface. [Default: wg-v6.cali]'
|
||||
type: string
|
||||
wireguardKeepAlive:
|
||||
description: 'WireguardKeepAlive controls Wireguard PersistentKeepalive
|
||||
|
|
@ -651,11 +676,19 @@ spec:
|
|||
type: string
|
||||
wireguardListeningPort:
|
||||
description: 'WireguardListeningPort controls the listening port used
|
||||
by Wireguard. [Default: 51820]'
|
||||
by IPv4 Wireguard. [Default: 51820]'
|
||||
type: integer
|
||||
wireguardListeningPortV6:
|
||||
description: 'WireguardListeningPortV6 controls the listening port
|
||||
used by IPv6 Wireguard. [Default: 51821]'
|
||||
type: integer
|
||||
wireguardMTU:
|
||||
description: 'WireguardMTU controls the MTU on the Wireguard interface.
|
||||
See Configuring MTU [Default: 1420]'
|
||||
description: 'WireguardMTU controls the MTU on the IPv4 Wireguard
|
||||
interface. See Configuring MTU [Default: 1440]'
|
||||
type: integer
|
||||
wireguardMTUV6:
|
||||
description: 'WireguardMTUV6 controls the MTU on the IPv6 Wireguard
|
||||
interface. See Configuring MTU [Default: 1420]'
|
||||
type: integer
|
||||
wireguardRoutingRulePriority:
|
||||
description: 'WireguardRoutingRulePriority controls the priority value
|
||||
|
|
@ -687,4 +720,3 @@ status:
|
|||
plural: ""
|
||||
conditions: []
|
||||
storedVersions: []
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue