Integrate Helm into your build.
This plugin adds the helm extension to scripts:
val deploy by job {
script {
helm.addRepository("mongodb", "https://mongodb.github.io/helm-charts")
helm.updateRepositories()
helm.deploy("community-operator", "mongodb/community-operator")
}
}