Skip to content

fix: update addon versions #1107

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ spec:
- name: address
value: '{{ .Address }}'
- name: prometheus_server
image: ghcr.io/kube-vip/kube-vip:v0.8.9
image: ghcr.io/kube-vip/kube-vip:v0.8.10
imagePullPolicy: IfNotPresent
name: kube-vip
resources: {}
Expand All @@ -182,6 +182,8 @@ spec:
add:
- NET_ADMIN
- NET_RAW
drop:
- ALL
volumeMounts:
- mountPath: /etc/kubernetes/admin.conf
name: kubeconfig
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ data:
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://kubernetes-sigs.github.io/aws-ebs-csi-driver{{ end }}'
cilium: |
ChartName: cilium
ChartVersion: 1.17.1
ChartVersion: 1.17.3
RepositoryURL: '{{ if .Values.helmRepository.enabled }}oci://helm-repository.{{ .Release.Namespace }}.svc/charts{{ else }}https://helm.cilium.io/{{ end }}'
cluster-autoscaler: |
ChartName: cluster-autoscaler
Expand Down
2 changes: 1 addition & 1 deletion hack/addons/helm-chart-bundler/repos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ repositories:
repoURL: https://helm.cilium.io/
charts:
cilium:
- 1.17.1
- 1.17.3
cluster-autoscaler:
repoURL: https://kubernetes.github.io/autoscaler
charts:
Expand Down
4 changes: 3 additions & 1 deletion hack/examples/files/kube-vip.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
- name: address
value: '{{ .Address }}'
- name: prometheus_server
image: ghcr.io/kube-vip/kube-vip:v0.8.9
image: ghcr.io/kube-vip/kube-vip:v0.8.10
imagePullPolicy: IfNotPresent
name: kube-vip
resources: {}
Expand All @@ -46,6 +46,8 @@
add:
- NET_ADMIN
- NET_RAW
drop:
- ALL
volumeMounts:
- mountPath: /etc/kubernetes/admin.conf
name: kubeconfig
Expand Down
4 changes: 2 additions & 2 deletions make/addons.mk
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

export CALICO_VERSION := v3.29.3
export CILIUM_VERSION := 1.17.1
export CILIUM_VERSION := 1.17.3
export NODE_FEATURE_DISCOVERY_VERSION := 0.17.2
export CLUSTER_AUTOSCALER_CHART_VERSION := 9.46.3
export AWS_EBS_CSI_CHART_VERSION := 2.40.3
Expand All @@ -19,7 +19,7 @@ export AWS_CCM_VERSION_132 := v1.32.1

export NUTANIX_CCM_CHART_VERSION := 0.5.0

export KUBE_VIP_VERSION := v0.8.9
export KUBE_VIP_VERSION := v0.8.10

export METALLB_CHART_VERSION := 0.14.9

Expand Down
Loading