version |
---|
v3.0.0-beta5 |
Helm allows running chart tests.
You can specify that you would like a chart to be tested whenever it is installed for the first time using the test
key as follows:
...
[apps]
[apps.jenkins]
description = "jenkins"
namespace = "staging"
enabled = true
chart = "jenkins/jenkins"
version = "2.15.1"
valuesFile = ""
test = true # setting this to true, means you want the charts tests to be run on this release when it is installed.
...
# ...
apps:
jenkins:
description: "jenkins"
namespace: "staging"
enabled: true
chart: "jenkins/jenkins"
version: "2.15.1"
valuesFile: ""
test: true # setting this to true, means you want the charts tests to be run on this release when it is installed.
#...