-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathBUILD
32 lines (28 loc) · 761 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
subinclude("//build_defs:docker")
subinclude("//build_defs:helm_chart")
subinclude("//build_defs:k8s")
sh_binary(
name = "deploy",
main = "deploy.sh",
)
sh_binary(
name = "ui",
main = "forward-ui.sh",
)
# ==============================================================================
# Deploy via Helm
# ==============================================================================
helm_chart(
name = "prometheus-helm",
src = "//third_party:helm-prometheus-tar",
install_path = "prometheus-operator",
namespace = "observability",
visibility = ["//components/prometheus/..."],
deps = [
":observability-namespace",
]
)
k8s_config(
name = "observability-namespace",
srcs = ["k8s/namespace.yaml"],
)