rules_helm icon indicating copy to clipboard operation
rules_helm copied to clipboard

rules_k8s

Open uhthomas opened this issue 5 years ago • 0 comments

Hey!

I'm intending on moving a lot of my manifests from a flux/helm-operator setup, to using Bazel and rules_k8s. I have a few helm releases, and would like to keep them but am struggling to understand the best approach to do so. Has rules_helm been used in conjunction with rules_k8s before? If not, are there any suggestions on approaches?

In my mind, I can see a build file looking akin to

helm_release(
    name = "some_release",
    chart = "some chart",
    release_name = "some-release-name",
)

k8s_objects(
    name = "some_objects",
    objects = [":some_release"],
)

Thoughts?

Thanks 😄

uhthomas avatar Sep 08 '20 00:09 uhthomas