From e46742d54f0951985eca994cdb31b21790446ad9 Mon Sep 17 00:00:00 2001 From: Mukul Sharma Date: Wed, 2 Sep 2026 16:05:13 +0530 Subject: [PATCH] Add pipeline-utility-steps plugin for readYaml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The kubernetes plugin fix worked — agent connected, checkout succeeded, pipeline ran through 3 stages. Next failure: loadConfig.groovy calls readYaml (to parse config.yaml), but that step isn't in the chart's default plugin list at all, so it was never installed: "No such DSL method 'readYaml' found among steps [...]". Adds pipeline-utility-steps, which provides readYaml/writeYaml/ readJSON etc. --- helm-overrides/k8s-admin-prd-ase1/jenkins/custom-values.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/helm-overrides/k8s-admin-prd-ase1/jenkins/custom-values.yaml b/helm-overrides/k8s-admin-prd-ase1/jenkins/custom-values.yaml index 1ed0e25..22d0e41 100644 --- a/helm-overrides/k8s-admin-prd-ase1/jenkins/custom-values.yaml +++ b/helm-overrides/k8s-admin-prd-ase1/jenkins/custom-values.yaml @@ -41,6 +41,11 @@ jenkins: - workflow-aggregator:608.v67378e9d3db_1 - git:5.7.0 - configuration-as-code:2006.v001a_2ca_6b_574 + # readYaml (loadConfig.groovy's config.yaml parsing) and any future + # writeYaml/readJSON-type usage — not part of the chart's default + # list at all, missing entirely rather than version-mismatched like + # kubernetes-client-api above. + - pipeline-utility-steps:3.810.va_7672d206740 resources: requests: cpu: 100m