buildify all bazel files
diff --git a/core/api/BUILD b/core/api/BUILD
index 8ea877a..ff865ca 100644
--- a/core/api/BUILD
+++ b/core/api/BUILD
@@ -5,34 +5,37 @@
# TODO(lekva): figure out how to build py_binary with pip dependencies and
# migrate off docker_image rule
docker_image(
- name = "push_to_dev",
- registry = "localhost:30500",
- image = "giolekva/pcloud-api-server",
- tag = "latest",
- dockerfile = "Dockerfile",
- srcs = glob(["**"], exclude=["Dockerfile"]),
+ name = "push_to_dev",
+ srcs = glob(
+ ["**"],
+ exclude = ["Dockerfile"],
+ ),
+ dockerfile = "Dockerfile",
+ image = "giolekva/pcloud-api-server",
+ registry = "localhost:30500",
+ tag = "latest",
)
pkg_tar(
- name = "chart",
- srcs = glob(["chart/**"]),
- extension = "tar.gz",
- strip_prefix = "./chart",
+ name = "chart",
+ srcs = glob(["chart/**"]),
+ extension = "tar.gz",
+ strip_prefix = "./chart",
)
helm_install(
- name = "install",
- namespace = "pcloud",
- release_name = "init",
- chart = ":chart",
- args = {
- "image.name": "localhost:30500/giolekva/pcloud-api-server",
- "image.pullPolicy": "Always",
- },
+ name = "install",
+ args = {
+ "image.name": "localhost:30500/giolekva/pcloud-api-server",
+ "image.pullPolicy": "Always",
+ },
+ chart = ":chart",
+ namespace = "pcloud",
+ release_name = "init",
)
helm_uninstall(
- name = "uninstall",
- namespace = "pcloud",
- release_name = "init",
+ name = "uninstall",
+ namespace = "pcloud",
+ release_name = "init",
)