This commit is contained in:
2025-05-26 11:55:30 +03:00
commit 6a55d62f7b
5 changed files with 48 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
def call(String chartPath) {
container('helm') {
sh 'helm package ${chartPath}'
echo "Helm chart packaged successfully: ${chartPath}"
}
}