mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
21 lines
431 B
Python
21 lines
431 B
Python
load("//rules_resf:defs.bzl", "RESFDEPLOY_OUTS_MIGRATE", "container", "peridot_k8s")
|
|
|
|
container(
|
|
base = "//bases/bazel/go",
|
|
files = [
|
|
"//apollo/cmd/apollostarter",
|
|
],
|
|
image_name = "apollostarter",
|
|
)
|
|
|
|
peridot_k8s(
|
|
name = "apollostarter",
|
|
src = "deploy.jsonnet",
|
|
outs = RESFDEPLOY_OUTS_MIGRATE,
|
|
chart_yaml = "Chart.yaml",
|
|
values_yaml = "values.yaml",
|
|
deps = [
|
|
"//ci",
|
|
],
|
|
)
|