tmc / rules_helm

rules_helm: Bazel rules for managing helm charts
48 stars 28 forks source link

Remove unknown flags #4

Closed jlegrone closed 5 years ago

jlegrone commented 5 years ago

This fixes an issue with status and delete when values are set.

Example:

helm_release(
    name = "release",
    chart = ":mychart",
    namespace = "default",
    release_name = "production",
    values = {
        "image.tag": "v2",
    },
)
Running: helm status --set=image.tag=v2 production

Error: unknown flag: --set
tmc commented 5 years ago

That functionality should be exercised in the example repo (and in CI). Thanks for your contribution.