From 84faf44879ab81f4e915d451c3fd563725265273 Mon Sep 17 00:00:00 2001 From: Cayne Vejvoda Date: Thu, 25 Sep 2025 12:30:09 +0200 Subject: [PATCH] Add cilium 1.17 and 1.18 versions. Also bump 1.16 to the latest patch --- libs/cilium/config.jsonnet | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/libs/cilium/config.jsonnet b/libs/cilium/config.jsonnet index a236c075..8236edae 100644 --- a/libs/cilium/config.jsonnet +++ b/libs/cilium/config.jsonnet @@ -4,7 +4,9 @@ local versions = [ { version: '1.13', tag: 'v1.13.12' }, { version: '1.14', tag: 'v1.14.7' }, { version: '1.15', tag: 'v1.15.1' }, - { version: '1.16', tag: 'v1.16.1' }, + { version: '1.16', tag: 'v1.16.15' }, + { version: '1.17', tag: 'v1.17.8' }, + { version: '1.18', tag: 'v1.18.2' }, ]; local pathPrefix = 'https://raw.githubusercontent.com/cilium/cilium/%s/pkg/k8s/apis/cilium.io/client/crds/v2/';