Skip to content

Commit 6da49dd

Browse files
committed
Disallow setting both values and installer as it isn't supported.
1 parent 8e01bae commit 6da49dd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

helm/private/template.bzl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ def _helm_template_test_impl(ctx):
1212
ctx.label,
1313
))
1414

15+
if ctx.attr.installer and ctx.files.values:
16+
fail("values is not supported with installer")
17+
1518
template_patterns = None
1619
if ctx.attr.template_patterns:
1720
template_patterns = ctx.actions.declare_file("{}.template_patterns.json".format(ctx.label.name))

0 commit comments

Comments
 (0)