https://github.com/slamdev/rules_helmdiff
https://github.com/slamdev/rules_helmdiff
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/slamdev/rules_helmdiff
- Owner: slamdev
- License: apache-2.0
- Created: 2022-05-11T17:10:19.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-13T05:46:29.000Z (over 1 year ago)
- Last Synced: 2025-07-05T15:10:51.658Z (7 months ago)
- Language: Starlark
- Size: 35.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Bazel rules for helmdiff
## Installation
Include this in your WORKSPACE file:
```starlark
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "slamdev_rules_helmdiff",
url = "https://github.com/slamdev/rules_helmdiff/releases/download/0.0.0/slamdev_rules_helmdiff-v0.0.0.tar.gz",
sha256 = "",
)
load("@slamdev_rules_helmdiff//helmdiff:deps.bzl", "helmdiff_register_toolchains", "rules_helmdiff_dependencies")
rules_helmdiff_dependencies()
helm_register_toolchains(
name = "helm3_8_0",
helm_version = "3.8.0",
)
```
> note, in the above, replace the version and sha256 with the one indicated
> in the release notes for rules_helmdiff.