Helm
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")
}
}
Types
Functions
addRepository
Adds a Helm repository.
script {
helm.addRepository("mongodb", "https://mongodb.github.io/helm-charts")
}
External resources
deploy
Deploys the chart as release.
script {
helm.deploy("community-operator", "mongodb/community-operator")
}
External resources
updateRepositories
Updates all repositories.
script {
helm.updateRepositories()
}
External resources