https://github.com/slamdev/rules_helm
Helm rules for Bazel
https://github.com/slamdev/rules_helm
bazel bazel-rules
Last synced: 11 months ago
JSON representation
Helm rules for Bazel
- Host: GitHub
- URL: https://github.com/slamdev/rules_helm
- Owner: slamdev
- License: apache-2.0
- Created: 2021-11-05T09:29:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T14:58:58.000Z (over 1 year ago)
- Last Synced: 2025-01-29T14:45:10.283Z (about 1 year ago)
- Topics: bazel, bazel-rules
- Language: Starlark
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Bazel rules for helm
## Installation
Include this in your WORKSPACE file:
```starlark
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "slamdev_rules_helm",
url = "https://github.com/slamdev/rules_helm/releases/download/0.0.0/slamdev_rules_helm-v0.0.0.tar.gz",
sha256 = "",
)
load("@slamdev_rules_helm//helm:deps.bzl", "helm_register_toolchains", "rules_helm_dependencies")
rules_helm_dependencies()
helm_register_toolchains(
name = "helm3_7_1",
helm_version = "3.7.1",
)
```
> note, in the above, replace the version and sha256 with the one indicated
> in the release notes for rules_helm.