about summary refs log tree commit diff
path: root/k8s/rest-api/BUILD.bazel
blob: 9ebdaf9f396ae89971da65acf2c3e442b6341d42 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
load("@rules_helm//helm:defs.bzl", "helm_chart")

helm_chart(
    name = "chart",
    chart = "Chart.yaml",
    images = ["//src/rest-api/cmd:push"],
    install_name = "rest-api",
    stamp = 1,
    substitutions = {"IMAGE_TAG": "rest-api-{STABLE_GIT_SHA}"},
    values = "values.yaml",
)