helm_lint rules.
Rules
Aspects
helm_lint_test
load("@rules_helm//helm:helm_lint.bzl", "helm_lint_test")
helm_lint_test(name, chart, opts, substitutions, values)
A rule for performing helm lint on a helm package
ATTRIBUTES
| Name | Description | Type | Mandatory | Default |
|---|---|---|---|---|
| name | A unique name for this target. | Name | required | |
| chart | The helm package to run linting on. | Label | required | |
| opts | Additional arguments to pass to helm lint. | List of strings | optional | [] |
| substitutions | A dictionary of substitutions passed to `helm lint --set flag. | Dictionary: String -> String | optional | {} |
| values | A list of files passed to `helm lint --values flag. | List of labels | optional | [] |
helm_lint_aspect
load("@rules_helm//helm:helm_lint.bzl", "helm_lint_aspect")
helm_lint_aspect()
An aspect for running helm lint on helm package targets
ASPECT ATTRIBUTES
ATTRIBUTES