Skip to content

Commit 81dca6e

Browse files
committed
apps: upgrade calico to v3.28.1
1 parent 4d56305 commit 81dca6e

22 files changed

+5725
-1648
lines changed

helmfile.d/upstream/index.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ charts:
6565
opensearch-project/opensearch: 2.21.0
6666
opensearch-project/opensearch-dashboards: 2.19.0
6767

68-
projectcalico/tigera-operator: v3.26.4
68+
projectcalico/tigera-operator: v3.28.1
6969

7070
prometheus-community/kube-prometheus-stack: 56.6.2
7171
prometheus-community/prometheus-blackbox-exporter: 8.13.0
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
apiVersion: v2
2-
appVersion: v3.26.4
2+
appVersion: v3.28.1
33
description: Installs the Tigera operator for Calico
44
home: https://projectcalico.docs.tigera.io/about/about-calico
55
icon: https://projectcalico.docs.tigera.io/images/felix_icon.png
@@ -8,4 +8,4 @@ sources:
88
- https://github.com/projectcalico/calico/tree/master/calico/_includes/charts/tigera-operator
99
- https://github.com/tigera/operator
1010
- https://github.com/projectcalico/calico
11-
version: v3.26.4
11+
version: v3.28.1

helmfile.d/upstream/projectcalico/tigera-operator/README.md

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,11 @@ ownership of the helm resources to the new chart location.
8787
The default values.yaml should be suitable for most basic deployments.
8888

8989
```
90-
# Image pull secrets to provision for pulling images from private registries.
91-
# This field is a map of desired Secret name to .dockerconfigjson formatted data to use for the secret.
92-
# Populates the `imagePullSecrets` property for all Pods controlled by the `Installation` resource.
90+
# imagePullSecrets is a special helm field which, when specified, creates a secret
91+
# containing the pull secret which is used to pull all images deployed by this helm chart and the resulting operator.
92+
# this field is a map where the key is the desired secret name and the value is the contents of the imagePullSecret.
93+
#
94+
# Example: --set-file imagePullSecrets.gcr=./pull-secret.json
9395
imagePullSecrets: {}
9496
9597
# Configures general installation parameters for Calico. Schema is based
@@ -99,6 +101,13 @@ installation:
99101
enabled: true
100102
kubernetesProvider: ""
101103
104+
# imagePullSecrets are configured on all images deployed by the tigera-operator.
105+
# secrets specified here must exist in the tigera-operator namespace; they won't be created by the operator or helm.
106+
# imagePullSecrets are a slice of LocalObjectReferences, which is the same format they appear as on deployments.
107+
#
108+
# Example: --set installation.imagePullSecrets[0].name=my-existing-secret
109+
imagePullSecrets: []
110+
102111
# Configures general installation parameters for Calico. Schema is based
103112
# on the operator.tigera.io/Installation API documented
104113
# here: https://projectcalico.docs.tigera.io/reference/installation/api#operator.tigera.io/v1.APIServerSpec
@@ -146,4 +155,12 @@ tigeraOperator:
146155
registry: quay.io
147156
calicoctl:
148157
image: docker.io/calico/ctl
158+
159+
# Configuration for the Calico CSI plugin - setting to None will disable the plugin, default: /var/lib/kubelet
160+
kubeletVolumePluginPath: None
161+
162+
# Optionally configure the host and port used to access the Kubernetes API server.
163+
kubernetesServiceEndpoint:
164+
host: ""
165+
port: "6443"
149166
```

helmfile.d/upstream/projectcalico/tigera-operator/crds/calico/crd.projectcalico.org_bgpfilters.yaml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,14 @@ spec:
4545
type: string
4646
cidr:
4747
type: string
48+
interface:
49+
type: string
4850
matchOperator:
4951
type: string
52+
source:
53+
type: string
5054
required:
5155
- action
52-
- cidr
53-
- matchOperator
5456
type: object
5557
type: array
5658
exportV6:
@@ -64,12 +66,14 @@ spec:
6466
type: string
6567
cidr:
6668
type: string
69+
interface:
70+
type: string
6771
matchOperator:
6872
type: string
73+
source:
74+
type: string
6975
required:
7076
- action
71-
- cidr
72-
- matchOperator
7377
type: object
7478
type: array
7579
importV4:
@@ -83,12 +87,14 @@ spec:
8387
type: string
8488
cidr:
8589
type: string
90+
interface:
91+
type: string
8692
matchOperator:
8793
type: string
94+
source:
95+
type: string
8896
required:
8997
- action
90-
- cidr
91-
- matchOperator
9298
type: object
9399
type: array
94100
importV6:
@@ -102,12 +108,14 @@ spec:
102108
type: string
103109
cidr:
104110
type: string
111+
interface:
112+
type: string
105113
matchOperator:
106114
type: string
115+
source:
116+
type: string
107117
required:
108118
- action
109-
- cidr
110-
- matchOperator
111119
type: object
112120
type: array
113121
type: object

helmfile.d/upstream/projectcalico/tigera-operator/crds/calico/crd.projectcalico.org_bgppeers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
numAllowedLocalASNumbers:
6464
description: Maximum number of local AS numbers that are allowed in
6565
the AS path for received routes. This removes BGP loop prevention
66-
and should only be used if absolutely necesssary.
66+
and should only be used if absolutely necessary.
6767
format: int32
6868
type: integer
6969
password:

0 commit comments

Comments
 (0)