Skip to content

Commit 461bae3

Browse files
authored
fix: update addon versions (#1107)
**What problem does this PR solve?**: Updates Cilium and kube-vip versions to pickup any CVE fixes. **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent a0f4836 commit 461bae3

File tree

6 files changed

+11
-7
lines changed

6 files changed

+11
-7
lines changed

charts/cluster-api-runtime-extensions-nutanix/defaultclusterclasses/nutanix-cluster-class.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ spec:
173173
- name: address
174174
value: '{{ .Address }}'
175175
- name: prometheus_server
176-
image: ghcr.io/kube-vip/kube-vip:v0.8.9
176+
image: ghcr.io/kube-vip/kube-vip:v0.8.10
177177
imagePullPolicy: IfNotPresent
178178
name: kube-vip
179179
resources: {}
@@ -182,6 +182,8 @@ spec:
182182
add:
183183
- NET_ADMIN
184184
- NET_RAW
185+
drop:
186+
- ALL
185187
volumeMounts:
186188
- mountPath: /etc/kubernetes/admin.conf
187189
name: kubeconfig

charts/cluster-api-runtime-extensions-nutanix/templates/cni/cilium/manifests/cilium-configmap.yaml

+1-1
Large diffs are not rendered by default.

charts/cluster-api-runtime-extensions-nutanix/templates/helm-config.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ data:
1717
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://kubernetes-sigs.github.io/aws-ebs-csi-driver{{ end }}'
1818
cilium: |
1919
ChartName: cilium
20-
ChartVersion: 1.17.1
20+
ChartVersion: 1.17.3
2121
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://helm.cilium.io/{{ end }}'
2222
cluster-autoscaler: |
2323
ChartName: cluster-autoscaler

hack/addons/helm-chart-bundler/repos.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ repositories:
2020
repoURL: https://helm.cilium.io/
2121
charts:
2222
cilium:
23-
- 1.17.1
23+
- 1.17.3
2424
cluster-autoscaler:
2525
repoURL: https://kubernetes.github.io/autoscaler
2626
charts:

hack/examples/files/kube-vip.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
- name: address
3838
value: '{{ .Address }}'
3939
- name: prometheus_server
40-
image: ghcr.io/kube-vip/kube-vip:v0.8.9
40+
image: ghcr.io/kube-vip/kube-vip:v0.8.10
4141
imagePullPolicy: IfNotPresent
4242
name: kube-vip
4343
resources: {}
@@ -46,6 +46,8 @@
4646
add:
4747
- NET_ADMIN
4848
- NET_RAW
49+
drop:
50+
- ALL
4951
volumeMounts:
5052
- mountPath: /etc/kubernetes/admin.conf
5153
name: kubeconfig

make/addons.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
export CALICO_VERSION := v3.29.3
5-
export CILIUM_VERSION := 1.17.1
5+
export CILIUM_VERSION := 1.17.3
66
export NODE_FEATURE_DISCOVERY_VERSION := 0.17.2
77
export CLUSTER_AUTOSCALER_CHART_VERSION := 9.46.3
88
export AWS_EBS_CSI_CHART_VERSION := 2.40.3
@@ -19,7 +19,7 @@ export AWS_CCM_VERSION_132 := v1.32.1
1919

2020
export NUTANIX_CCM_CHART_VERSION := 0.5.0
2121

22-
export KUBE_VIP_VERSION := v0.8.9
22+
export KUBE_VIP_VERSION := v0.8.10
2323

2424
export METALLB_CHART_VERSION := 0.14.9
2525

0 commit comments

Comments
 (0)