jenkins kubernetes helm chart code example
Example: deploy helm chart using jenkins
pipeline {
agent {
docker { image 'your_image:1.0' }
}
stages {
stage('Deploy') {
steps {
sh 'helm list'
}
}
}
}