about summary refs log tree commit diff
path: root/k8s/rest-api/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'k8s/rest-api/BUILD.bazel')
-rw-r--r--k8s/rest-api/BUILD.bazel11
1 files changed, 11 insertions, 0 deletions
diff --git a/k8s/rest-api/BUILD.bazel b/k8s/rest-api/BUILD.bazel
new file mode 100644
index 0000000..9ebdaf9
--- /dev/null
+++ b/k8s/rest-api/BUILD.bazel
@@ -0,0 +1,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",
+)