https://github.com/slamdev/rules_kubedog
https://github.com/slamdev/rules_kubedog
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/slamdev/rules_kubedog
- Owner: slamdev
- License: apache-2.0
- Created: 2021-11-09T08:08:58.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-08-02T17:32:47.000Z (over 1 year ago)
- Last Synced: 2025-01-29T14:45:12.539Z (about 1 year ago)
- Language: Starlark
- Size: 35.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Bazel rules for kubedog
## Installation
Include this in your WORKSPACE file:
```starlark
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "slamdev_rules_kubedog",
url = "https://github.com/slamdev/rules_kubedog/releases/download/0.0.0/slamdev_rules_kubedog-v0.0.0.tar.gz",
sha256 = "",
)
load("@slamdev_rules_kubedog//kubedog:repositories.bzl", "kubedog_register_toolchains", "rules_kubedog_dependencies")
rules_kubedog_dependencies()
kubedog_register_toolchains(
name = "kubedog0_6_1",
kubedog_version = "0.6.1",
)
```
> note, in the above, replace the version and sha256 with the one indicated
> in the release notes for rules_kubedog.