Skip to content

Bazel rules for consuming and producing helm charts

Notifications You must be signed in to change notification settings

midnightconman/rules_helm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rules_helm

This repository contains Bazel rules to consume and produce Helm charts with Bazel.

NOTE: This work was inspired by https://github.com/tmc/rules_helm, which focuses on helm command execution (install, test, or delete) helm charts against a Kubernetes cluster. If you are looking for that pattern, please check out their repo.

Documentation

API

  • helm_package - a helm chart in tar.gz format, with a Chart.yaml and any other metadata / config. helm_package targets can be used as dependencies for other helm_package declarations.
  • helm_template - expand a helm chart to a yaml formatted file. coming very soon :D

Getting started

In your Bazel WORKSPACE file add this repository as a dependency:

RULES_HELM_VERSION = "0.1.3"

RULES_HELM_CHECKSUM = "b373df08f9871c6c63b330e768d139e286fd5f024f285921b514971fe8f4862c"

http_archive(
    name = "com_github_midnightconman_rules_helm",
    sha256 = RULES_HELM_CHECKSUM,
    strip_prefix = "rules_helm-" + RULES_HELM_VERSION,
    urls = ["https://github.com/midnightconman/rules_helm/archive/v" + RULES_HELM_VERSION + ".tar.gz"],
)

load("@com_github_midnightconman_rules_helm//:repos.bzl", "helm_repositories")

helm_repositories()

Then in your BUILD files include the helm_package and / or helm_template rules:

charts/a-great-chart/zBUILD:

load("@com_github_midnightconman_rules_helm//:helm.bzl", "helm_package")

package(default_visibility = ["//visibility:public"])

helm_package(
    name = "a_great_chart",
    srcs = glob(["**"]),
)

About

Bazel rules for consuming and producing helm charts

Resources

Stars

Watchers

Forks

Packages

No packages published