From c0d06dbc6864187446cfb43beb18434d8c48a8a0 Mon Sep 17 00:00:00 2001 From: Jordi Clariana Date: Wed, 30 Apr 2025 09:42:20 +0200 Subject: [PATCH] feat: Generate for latest CNRM version (1.130.2) Signed-off-by: Jordi Clariana --- libs/cnrm/config.jsonnet | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/libs/cnrm/config.jsonnet b/libs/cnrm/config.jsonnet index bd96f1f5..724357c4 100644 --- a/libs/cnrm/config.jsonnet +++ b/libs/cnrm/config.jsonnet @@ -4,6 +4,7 @@ local versions = [ ['1.82', '1.82.0'], ['1.93', '1.93.0'], ['1.99', '1.99.0'], + ['1.130', '1.130.2'], ]; @@ -13,7 +14,7 @@ config.new( { output: version[0], prefix: '^com\\.google\\.cloud\\.cnrm\\..*', - crds: ['https://raw.githubusercontent.com/GoogleCloudPlatform/k8s-config-connector/v' + version[1] +'/install-bundles/install-bundle-workload-identity/crds.yaml'], + crds: ['https://raw.githubusercontent.com/GoogleCloudPlatform/k8s-config-connector/v' + version[1] + '/install-bundles/install-bundle-workload-identity/crds.yaml'], localName: 'cnrm', } for version in versions