-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #204 from manuelbuil/testing_calico_update
Upgrade Calico to v3.21.2
- Loading branch information
1 parent
c8d8635
commit 3d82382
Showing
40 changed files
with
5,736 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
apiVersion: v1 | ||
description: Installs the CRDs for rke2-calico | ||
name: rke2-calico-crd | ||
type: application | ||
version: v3.21.201 |
141 changes: 141 additions & 0 deletions
141
...e2-calico-crd/v3.21.201/templates/calico/kdd/crd.projectcalico.org_bgpconfigurations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: bgpconfigurations.crd.projectcalico.org | ||
spec: | ||
group: crd.projectcalico.org | ||
names: | ||
kind: BGPConfiguration | ||
listKind: BGPConfigurationList | ||
plural: bgpconfigurations | ||
singular: bgpconfiguration | ||
scope: Cluster | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: BGPConfiguration contains the configuration for any BGP routing. | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: BGPConfigurationSpec contains the values of the BGP configuration. | ||
properties: | ||
asNumber: | ||
description: 'ASNumber is the default AS number used by a node. [Default: | ||
64512]' | ||
format: int32 | ||
type: integer | ||
communities: | ||
description: Communities is a list of BGP community values and their | ||
arbitrary names for tagging routes. | ||
items: | ||
description: Community contains standard or large community value | ||
and its name. | ||
properties: | ||
name: | ||
description: Name given to community value. | ||
type: string | ||
value: | ||
description: Value must be of format `aa:nn` or `aa:nn:mm`. | ||
For standard community use `aa:nn` format, where `aa` and | ||
`nn` are 16 bit number. For large community use `aa:nn:mm` | ||
format, where `aa`, `nn` and `mm` are 32 bit number. Where, | ||
`aa` is an AS Number, `nn` and `mm` are per-AS identifier. | ||
pattern: ^(\d+):(\d+)$|^(\d+):(\d+):(\d+)$ | ||
type: string | ||
type: object | ||
type: array | ||
listenPort: | ||
description: ListenPort is the port where BGP protocol should listen. | ||
Defaults to 179 | ||
maximum: 65535 | ||
minimum: 1 | ||
type: integer | ||
logSeverityScreen: | ||
description: 'LogSeverityScreen is the log severity above which logs | ||
are sent to the stdout. [Default: INFO]' | ||
type: string | ||
nodeToNodeMeshEnabled: | ||
description: 'NodeToNodeMeshEnabled sets whether full node to node | ||
BGP mesh is enabled. [Default: true]' | ||
type: boolean | ||
prefixAdvertisements: | ||
description: PrefixAdvertisements contains per-prefix advertisement | ||
configuration. | ||
items: | ||
description: PrefixAdvertisement configures advertisement properties | ||
for the specified CIDR. | ||
properties: | ||
cidr: | ||
description: CIDR for which properties should be advertised. | ||
type: string | ||
communities: | ||
description: Communities can be list of either community names | ||
already defined in `Specs.Communities` or community value | ||
of format `aa:nn` or `aa:nn:mm`. For standard community use | ||
`aa:nn` format, where `aa` and `nn` are 16 bit number. For | ||
large community use `aa:nn:mm` format, where `aa`, `nn` and | ||
`mm` are 32 bit number. Where,`aa` is an AS Number, `nn` and | ||
`mm` are per-AS identifier. | ||
items: | ||
type: string | ||
type: array | ||
type: object | ||
type: array | ||
serviceClusterIPs: | ||
description: ServiceClusterIPs are the CIDR blocks from which service | ||
cluster IPs are allocated. If specified, Calico will advertise these | ||
blocks, as well as any cluster IPs within them. | ||
items: | ||
description: ServiceClusterIPBlock represents a single allowed ClusterIP | ||
CIDR block. | ||
properties: | ||
cidr: | ||
type: string | ||
type: object | ||
type: array | ||
serviceExternalIPs: | ||
description: ServiceExternalIPs are the CIDR blocks for Kubernetes | ||
Service External IPs. Kubernetes Service ExternalIPs will only be | ||
advertised if they are within one of these blocks. | ||
items: | ||
description: ServiceExternalIPBlock represents a single allowed | ||
External IP CIDR block. | ||
properties: | ||
cidr: | ||
type: string | ||
type: object | ||
type: array | ||
serviceLoadBalancerIPs: | ||
description: ServiceLoadBalancerIPs are the CIDR blocks for Kubernetes | ||
Service LoadBalancer IPs. Kubernetes Service status.LoadBalancer.Ingress | ||
IPs will only be advertised if they are within one of these blocks. | ||
items: | ||
description: ServiceLoadBalancerIPBlock represents a single allowed | ||
LoadBalancer IP CIDR block. | ||
properties: | ||
cidr: | ||
type: string | ||
type: object | ||
type: array | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
111 changes: 111 additions & 0 deletions
111
...calico/rke2-calico-crd/v3.21.201/templates/calico/kdd/crd.projectcalico.org_bgppeers.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: bgppeers.crd.projectcalico.org | ||
spec: | ||
group: crd.projectcalico.org | ||
names: | ||
kind: BGPPeer | ||
listKind: BGPPeerList | ||
plural: bgppeers | ||
singular: bgppeer | ||
scope: Cluster | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: BGPPeerSpec contains the specification for a BGPPeer resource. | ||
properties: | ||
asNumber: | ||
description: The AS Number of the peer. | ||
format: int32 | ||
type: integer | ||
keepOriginalNextHop: | ||
description: Option to keep the original nexthop field when routes | ||
are sent to a BGP Peer. Setting "true" configures the selected BGP | ||
Peers node to use the "next hop keep;" instead of "next hop self;"(default) | ||
in the specific branch of the Node on "bird.cfg". | ||
type: boolean | ||
maxRestartTime: | ||
description: Time to allow for software restart. When specified, this | ||
is configured as the graceful restart timeout. When not specified, | ||
the BIRD default of 120s is used. | ||
type: string | ||
node: | ||
description: The node name identifying the Calico node instance that | ||
is targeted by this peer. If this is not set, and no nodeSelector | ||
is specified, then this BGP peer selects all nodes in the cluster. | ||
type: string | ||
nodeSelector: | ||
description: Selector for the nodes that should have this peering. When | ||
this is set, the Node field must be empty. | ||
type: string | ||
password: | ||
description: Optional BGP password for the peerings generated by this | ||
BGPPeer resource. | ||
properties: | ||
secretKeyRef: | ||
description: Selects a key of a secret in the node pod's namespace. | ||
properties: | ||
key: | ||
description: The key of the secret to select from. Must be | ||
a valid secret key. | ||
type: string | ||
name: | ||
description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names | ||
TODO: Add other useful fields. apiVersion, kind, uid?' | ||
type: string | ||
optional: | ||
description: Specify whether the Secret or its key must be | ||
defined | ||
type: boolean | ||
required: | ||
- key | ||
type: object | ||
type: object | ||
peerIP: | ||
description: The IP address of the peer followed by an optional port | ||
number to peer with. If port number is given, format should be `[<IPv6>]:port` | ||
or `<IPv4>:<port>` for IPv4. If optional port number is not set, | ||
and this peer IP and ASNumber belongs to a calico/node with ListenPort | ||
set in BGPConfiguration, then we use that port to peer. | ||
type: string | ||
peerSelector: | ||
description: Selector for the remote nodes to peer with. When this | ||
is set, the PeerIP and ASNumber fields must be empty. For each | ||
peering between the local node and selected remote nodes, we configure | ||
an IPv4 peering if both ends have NodeBGPSpec.IPv4Address specified, | ||
and an IPv6 peering if both ends have NodeBGPSpec.IPv6Address specified. The | ||
remote AS number comes from the remote node's NodeBGPSpec.ASNumber, | ||
or the global default if that is not set. | ||
type: string | ||
sourceAddress: | ||
description: Specifies whether and how to configure a source address | ||
for the peerings generated by this BGPPeer resource. Default value | ||
"UseNodeIP" means to configure the node IP as the source address. "None" | ||
means not to configure a source address. | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
59 changes: 59 additions & 0 deletions
59
...rke2-calico-crd/v3.21.201/templates/calico/kdd/crd.projectcalico.org_blockaffinities.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: blockaffinities.crd.projectcalico.org | ||
spec: | ||
group: crd.projectcalico.org | ||
names: | ||
kind: BlockAffinity | ||
listKind: BlockAffinityList | ||
plural: blockaffinities | ||
singular: blockaffinity | ||
scope: Cluster | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: BlockAffinitySpec contains the specification for a BlockAffinity | ||
resource. | ||
properties: | ||
cidr: | ||
type: string | ||
deleted: | ||
description: Deleted indicates that this block affinity is being deleted. | ||
This field is a string for compatibility with older releases that | ||
mistakenly treat this field as a string. | ||
type: string | ||
node: | ||
type: string | ||
state: | ||
type: string | ||
required: | ||
- cidr | ||
- deleted | ||
- node | ||
- state | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
62 changes: 62 additions & 0 deletions
62
...-calico-crd/v3.21.201/templates/calico/kdd/crd.projectcalico.org_clusterinformations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
apiVersion: apiextensions.k8s.io/v1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
name: clusterinformations.crd.projectcalico.org | ||
spec: | ||
group: crd.projectcalico.org | ||
names: | ||
kind: ClusterInformation | ||
listKind: ClusterInformationList | ||
plural: clusterinformations | ||
singular: clusterinformation | ||
scope: Cluster | ||
versions: | ||
- name: v1 | ||
schema: | ||
openAPIV3Schema: | ||
description: ClusterInformation contains the cluster specific information. | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation | ||
of an object. Servers should convert recognized schemas to the latest | ||
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this | ||
object represents. Servers may infer this from the endpoint the client | ||
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: ClusterInformationSpec contains the values of describing | ||
the cluster. | ||
properties: | ||
calicoVersion: | ||
description: CalicoVersion is the version of Calico that the cluster | ||
is running | ||
type: string | ||
clusterGUID: | ||
description: ClusterGUID is the GUID of the cluster | ||
type: string | ||
clusterType: | ||
description: ClusterType describes the type of the cluster | ||
type: string | ||
datastoreReady: | ||
description: DatastoreReady is used during significant datastore migrations | ||
to signal to components such as Felix that it should wait before | ||
accessing the datastore. | ||
type: boolean | ||
variant: | ||
description: Variant declares which variant of Calico should be active. | ||
type: string | ||
type: object | ||
type: object | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] |
Oops, something went wrong.