From 8fba5954a1e7b55a213c783b8d5ac26c85995617 Mon Sep 17 00:00:00 2001 From: konsthol Date: Mon, 26 May 2025 09:51:57 +0300 Subject: [PATCH] First change since it was all working --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 791753b..9d70186 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -136,6 +136,14 @@ spec: } } } + stage('check Helm Repo') { + steps { + container('helm') { + sh 'helm repo list' + } + } + } + /* stage('check Helm Repo') { agent { label 'local' } steps { @@ -155,6 +163,7 @@ spec: sh 'helm install example-app my-helm-repo/example-app --version 1.0.0-SNAPSHOT --set app.ports.http=8090 --set imagePullSecrets[0]=nexus-secret' } } + */ } post {