mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-13 01:21:23 +00:00
19 lines
361 B
Python
19 lines
361 B
Python
load("//rules_byc:defs.bzl", "BYCDEPLOY_OUTS_MIGRATE", "container", "peridot_k8s")
|
|
|
|
container(
|
|
base = "//bases/bazel/go",
|
|
files = [
|
|
"//apollo/cmd/apolloworker",
|
|
],
|
|
image_name = "apolloworker",
|
|
)
|
|
|
|
peridot_k8s(
|
|
name = "apolloworker",
|
|
src = "deploy.jsonnet",
|
|
outs = BYCDEPLOY_OUTS_MIGRATE,
|
|
deps = [
|
|
"//ci",
|
|
],
|
|
)
|