https://github.com/slamdev/rules_kubeconform
https://github.com/slamdev/rules_kubeconform
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/slamdev/rules_kubeconform
- Owner: slamdev
- License: apache-2.0
- Created: 2021-11-08T10:58:22.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T14:52:21.000Z (over 1 year ago)
- Last Synced: 2025-01-29T14:45:09.517Z (about 1 year ago)
- Language: Starlark
- Size: 40 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Bazel rules for kubeconform
## Installation
Include this in your WORKSPACE file:
```starlark
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "slamdev_rules_kubeconform",
url = "https://github.com/slamdev/rules_kubeconform/releases/download/0.0.0/slamdev_rules_kubeconform-v0.0.0.tar.gz",
sha256 = "",
)
load("@slamdev_rules_kubeconform//kubeconform:deps.bzl", "kubeconform_register_toolchains", "rules_kubeconform_dependencies")
rules_kubeconform_dependencies()
kubeconform_register_toolchains(
name = "kubeconform0_4_12",
kubeconform_version = "0.4.12",
)
```
> note, in the above, replace the version and sha256 with the one indicated
> in the release notes for rules_kubeconform.