From f93e16ca85d1898b8f87d233d63931f31d00e120 Mon Sep 17 00:00:00 2001 From: westwind-sc <8006417+westwind-sc@users.noreply.github.com> Date: Fri, 25 Apr 2025 14:26:26 +0800 Subject: [PATCH] istio: crd-all.gen.yaml moved from crds to files since 1.24 --- libs/istio/config.jsonnet | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/libs/istio/config.jsonnet b/libs/istio/config.jsonnet index 15f04ee6..6aed3e01 100644 --- a/libs/istio/config.jsonnet +++ b/libs/istio/config.jsonnet @@ -1,13 +1,14 @@ local config = import 'jsonnet/config.jsonnet'; local versions = [ - ['1.24', '1.24.0'], - ['1.23', '1.23.3'], - ['1.22', '1.22.3'], - ['1.21', '1.21.5'], - ['1.20', '1.20.0'], - ['1.19', '1.19.1'], - ['1.18', '1.18.6'], - ['1.17', '1.17.6'], + ['1.25', '1.25.2','files'], + ['1.24', '1.24.5','files'], + ['1.23', '1.23.3','crds'], + ['1.22', '1.22.3','crds'], + ['1.21', '1.21.5','crds'], + ['1.20', '1.20.0','crds'], + ['1.19', '1.19.1','crds'], + ['1.18', '1.18.6','crds'], + ['1.17', '1.17.6','crds'], ]; config.new( @@ -16,7 +17,7 @@ config.new( { output: version[0], prefix: '^io\\.istio\\..*', - crds: ['https://raw.githubusercontent.com/istio/istio/' + version[1] + '/manifests/charts/base/crds/crd-all.gen.yaml'], + crds: ['https://raw.githubusercontent.com/istio/istio/' + version[1] + '/manifests/charts/base/' + version[2] + '/crd-all.gen.yaml'], localName: 'istio', patchDir: 'custom', }