Update calico to version 3.25.0
This commit is contained in:
parent
d03105916a
commit
9014aa38d3
7 changed files with 70 additions and 20 deletions
|
|
@ -64,6 +64,12 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
|
ignoredInterfaces:
|
||||||
|
description: IgnoredInterfaces indicates the network interfaces that
|
||||||
|
needs to be excluded when reading device routes.
|
||||||
|
items:
|
||||||
|
type: string
|
||||||
|
type: array
|
||||||
listenPort:
|
listenPort:
|
||||||
description: ListenPort is the port where BGP protocol should listen.
|
description: ListenPort is the port where BGP protocol should listen.
|
||||||
Defaults to 179
|
Defaults to 179
|
||||||
|
|
|
||||||
|
|
@ -101,12 +101,23 @@ spec:
|
||||||
remote AS number comes from the remote node's NodeBGPSpec.ASNumber,
|
remote AS number comes from the remote node's NodeBGPSpec.ASNumber,
|
||||||
or the global default if that is not set.
|
or the global default if that is not set.
|
||||||
type: string
|
type: string
|
||||||
|
reachableBy:
|
||||||
|
description: Add an exact, i.e. /32, static route toward peer IP in
|
||||||
|
order to prevent route flapping. ReachableBy contains the address
|
||||||
|
of the gateway which peer can be reached by.
|
||||||
|
type: string
|
||||||
sourceAddress:
|
sourceAddress:
|
||||||
description: Specifies whether and how to configure a source address
|
description: Specifies whether and how to configure a source address
|
||||||
for the peerings generated by this BGPPeer resource. Default value
|
for the peerings generated by this BGPPeer resource. Default value
|
||||||
"UseNodeIP" means to configure the node IP as the source address. "None"
|
"UseNodeIP" means to configure the node IP as the source address. "None"
|
||||||
means not to configure a source address.
|
means not to configure a source address.
|
||||||
type: string
|
type: string
|
||||||
|
ttlSecurity:
|
||||||
|
description: TTLSecurity enables the generalized TTL security mechanism
|
||||||
|
(GTSM) which protects against spoofed packets by ignoring received
|
||||||
|
packets with a smaller than expected TTL value. The provided value
|
||||||
|
is the number of hops (edges) between the peers.
|
||||||
|
type: integer
|
||||||
type: object
|
type: object
|
||||||
type: object
|
type: object
|
||||||
served: true
|
served: true
|
||||||
|
|
|
||||||
|
|
@ -36,7 +36,7 @@ spec:
|
||||||
priorityClassName: system-cluster-critical
|
priorityClassName: system-cluster-critical
|
||||||
containers:
|
containers:
|
||||||
- name: calico-kube-controllers
|
- name: calico-kube-controllers
|
||||||
image: docker.io/calico/kube-controllers:v3.24.5
|
image: docker.io/calico/kube-controllers:v3.25.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# Choose which controllers to run.
|
# Choose which controllers to run.
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ spec:
|
||||||
# It can be deleted if this is a fresh installation, or if you have already
|
# It can be deleted if this is a fresh installation, or if you have already
|
||||||
# upgraded to use calico-ipam.
|
# upgraded to use calico-ipam.
|
||||||
- name: upgrade-ipam
|
- name: upgrade-ipam
|
||||||
image: docker.io/calico/cni:v3.24.5
|
image: docker.io/calico/cni:v3.25.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
|
command: ["/opt/cni/bin/calico-ipam", "-upgrade"]
|
||||||
envFrom:
|
envFrom:
|
||||||
|
|
@ -72,7 +72,7 @@ spec:
|
||||||
# This container installs the CNI binaries
|
# This container installs the CNI binaries
|
||||||
# and CNI network config file on each node.
|
# and CNI network config file on each node.
|
||||||
- name: install-cni
|
- name: install-cni
|
||||||
image: docker.io/calico/cni:v3.24.5
|
image: docker.io/calico/cni:v3.25.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command: ["/opt/cni/bin/install"]
|
command: ["/opt/cni/bin/install"]
|
||||||
envFrom:
|
envFrom:
|
||||||
|
|
@ -115,7 +115,7 @@ spec:
|
||||||
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
|
# i.e. bpf at /sys/fs/bpf and cgroup2 at /run/calico/cgroup. Calico-node initialisation is executed
|
||||||
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
|
# in best effort fashion, i.e. no failure for errors, to not disrupt pod creation in iptable mode.
|
||||||
- name: "mount-bpffs"
|
- name: "mount-bpffs"
|
||||||
image: docker.io/calico/node:v3.24.5
|
image: docker.io/calico/node:v3.25.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command: ["calico-node", "-init", "-best-effort"]
|
command: ["calico-node", "-init", "-best-effort"]
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|
@ -141,7 +141,7 @@ spec:
|
||||||
# container programs network policy and routes on each
|
# container programs network policy and routes on each
|
||||||
# host.
|
# host.
|
||||||
- name: calico-node
|
- name: calico-node
|
||||||
image: docker.io/calico/node:v3.24.5
|
image: docker.io/calico/node:v3.25.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
envFrom:
|
envFrom:
|
||||||
- configMapRef:
|
- configMapRef:
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@ spec:
|
||||||
serviceAccountName: calicoctl
|
serviceAccountName: calicoctl
|
||||||
containers:
|
containers:
|
||||||
- name: calicoctl
|
- name: calicoctl
|
||||||
image: calico/ctl:v3.24.5
|
image: calico/ctl:v3.25.0
|
||||||
command:
|
command:
|
||||||
- /calicoctl
|
- /calicoctl
|
||||||
args:
|
args:
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
# Calico Version master
|
# Calico Version master
|
||||||
# https://projectcalico.docs.tigera.io/releases#master
|
# https://projectcalico.docs.tigera.io/releases#master
|
||||||
# This manifest includes the following component versions:
|
# This manifest includes the following component versions:
|
||||||
# calico/ctl:v3.24.5
|
# calico/ctl:v3.25.0
|
||||||
|
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: ServiceAccount
|
kind: ServiceAccount
|
||||||
|
|
|
||||||
|
|
@ -80,9 +80,10 @@ spec:
|
||||||
[Default: false]'
|
[Default: false]'
|
||||||
type: boolean
|
type: boolean
|
||||||
bpfEnforceRPF:
|
bpfEnforceRPF:
|
||||||
description: 'BPFEnforceRPF enforce strict RPF on all interfaces with
|
description: 'BPFEnforceRPF enforce strict RPF on all host interfaces
|
||||||
BPF programs regardless of what is the per-interfaces or global
|
with BPF programs regardless of what is the per-interfaces or global
|
||||||
setting. Possible values are Disabled or Strict. [Default: Strict]'
|
setting. Possible values are Disabled, Strict or Loose. [Default:
|
||||||
|
Strict]'
|
||||||
type: string
|
type: string
|
||||||
bpfExtToServiceConnmark:
|
bpfExtToServiceConnmark:
|
||||||
description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit
|
description: 'BPFExtToServiceConnmark in BPF mode, control a 32bit
|
||||||
|
|
@ -122,6 +123,14 @@ spec:
|
||||||
kube-proxy. Lower values give reduced set-up latency. Higher values
|
kube-proxy. Lower values give reduced set-up latency. Higher values
|
||||||
reduce Felix CPU usage by batching up more work. [Default: 1s]'
|
reduce Felix CPU usage by batching up more work. [Default: 1s]'
|
||||||
type: string
|
type: string
|
||||||
|
bpfL3IfacePattern:
|
||||||
|
description: BPFL3IfacePattern is a regular expression that allows
|
||||||
|
to list tunnel devices like wireguard or vxlan (i.e., L3 devices)
|
||||||
|
in addition to BPFDataIfacePattern. That is, tunnel interfaces not
|
||||||
|
created by Calico, that Calico workload traffic flows over as well
|
||||||
|
as any interfaces that handle incoming traffic to nodeports and
|
||||||
|
services from outside the cluster.
|
||||||
|
type: string
|
||||||
bpfLogLevel:
|
bpfLogLevel:
|
||||||
description: 'BPFLogLevel controls the log level of the BPF programs
|
description: 'BPFLogLevel controls the log level of the BPF programs
|
||||||
when in BPF dataplane mode. One of "Off", "Info", or "Debug". The
|
when in BPF dataplane mode. One of "Off", "Info", or "Debug". The
|
||||||
|
|
@ -197,11 +206,12 @@ spec:
|
||||||
to use. Only used if UseInternalDataplaneDriver is set to false.
|
to use. Only used if UseInternalDataplaneDriver is set to false.
|
||||||
type: string
|
type: string
|
||||||
dataplaneWatchdogTimeout:
|
dataplaneWatchdogTimeout:
|
||||||
description: 'DataplaneWatchdogTimeout is the readiness/liveness timeout
|
description: "DataplaneWatchdogTimeout is the readiness/liveness timeout
|
||||||
used for Felix''s (internal) dataplane driver. Increase this value
|
used for Felix's (internal) dataplane driver. Increase this value
|
||||||
if you experience spurious non-ready or non-live events when Felix
|
if you experience spurious non-ready or non-live events when Felix
|
||||||
is under heavy load. Decrease the value to get felix to report non-live
|
is under heavy load. Decrease the value to get felix to report non-live
|
||||||
or non-ready more quickly. [Default: 90s]'
|
or non-ready more quickly. [Default: 90s] \n Deprecated: replaced
|
||||||
|
by the generic HealthTimeoutOverrides."
|
||||||
type: string
|
type: string
|
||||||
debugDisableLogDropping:
|
debugDisableLogDropping:
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
@ -305,15 +315,21 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
type: array
|
type: array
|
||||||
featureDetectOverride:
|
featureDetectOverride:
|
||||||
description: FeatureDetectOverride is used to override the feature
|
description: FeatureDetectOverride is used to override feature detection
|
||||||
detection. Values are specified in a comma separated list with no
|
based on auto-detected platform capabilities. Values are specified
|
||||||
spaces, example; "SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=".
|
in a comma separated list with no spaces, example; "SNATFullyRandom=true,MASQFullyRandom=false,RestoreSupportsLock=". "true"
|
||||||
"true" or "false" will force the feature, empty or omitted values
|
or "false" will force the feature, empty or omitted values are auto-detected.
|
||||||
are auto-detected.
|
type: string
|
||||||
|
featureGates:
|
||||||
|
description: FeatureGates is used to enable or disable tech-preview
|
||||||
|
Calico features. Values are specified in a comma separated list
|
||||||
|
with no spaces, example; "BPFConnectTimeLoadBalancingWorkaround=enabled,XyZ=false".
|
||||||
|
This is used to enable features that are not fully production ready.
|
||||||
type: string
|
type: string
|
||||||
floatingIPs:
|
floatingIPs:
|
||||||
description: FloatingIPs configures whether or not Felix will program
|
description: FloatingIPs configures whether or not Felix will program
|
||||||
floating IP addresses.
|
non-OpenStack floating IP addresses. (OpenStack-derived floating
|
||||||
|
IPs are always programmed, regardless of this setting.)
|
||||||
enum:
|
enum:
|
||||||
- Enabled
|
- Enabled
|
||||||
- Disabled
|
- Disabled
|
||||||
|
|
@ -330,6 +346,23 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
healthPort:
|
healthPort:
|
||||||
type: integer
|
type: integer
|
||||||
|
healthTimeoutOverrides:
|
||||||
|
description: HealthTimeoutOverrides allows the internal watchdog timeouts
|
||||||
|
of individual subcomponents to be overriden. This is useful for
|
||||||
|
working around "false positive" liveness timeouts that can occur
|
||||||
|
in particularly stressful workloads or if CPU is constrained. For
|
||||||
|
a list of active subcomponents, see Felix's logs.
|
||||||
|
items:
|
||||||
|
properties:
|
||||||
|
name:
|
||||||
|
type: string
|
||||||
|
timeout:
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- name
|
||||||
|
- timeout
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
interfaceExclude:
|
interfaceExclude:
|
||||||
description: 'InterfaceExclude is a comma-separated list of interfaces
|
description: 'InterfaceExclude is a comma-separated list of interfaces
|
||||||
that Felix should exclude when monitoring for host endpoints. The
|
that Felix should exclude when monitoring for host endpoints. The
|
||||||
|
|
@ -371,7 +404,7 @@ spec:
|
||||||
type: string
|
type: string
|
||||||
iptablesBackend:
|
iptablesBackend:
|
||||||
description: IptablesBackend specifies which backend of iptables will
|
description: IptablesBackend specifies which backend of iptables will
|
||||||
be used. The default is legacy.
|
be used. The default is Auto.
|
||||||
type: string
|
type: string
|
||||||
iptablesFilterAllowAction:
|
iptablesFilterAllowAction:
|
||||||
type: string
|
type: string
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue