-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMODULE.bazel
81 lines (71 loc) · 2.3 KB
/
MODULE.bazel
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# Copyright 2024 EngFlow, Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
module(
name = "myengflow_helm_charts",
version = "1.0",
)
bazel_dep(name = "rules_pkg", version = "0.10.1")
helm_release = use_extension("@//infra:helm_release.bzl", "helm_release_extension")
helm_release.declare_binary(
name = "helm_linux_x64",
sha256 = "55a8e6dce87a1e52c61e0ce7a89bf85b38725ba3e8deb51d4a08ade8a2c70b2d",
upstream_arch = "amd64",
upstream_os = "linux",
version = "3.13.2",
)
helm_release.declare_binary(
name = "helm_linux_arm64",
sha256 = "f5654aaed63a0da72852776e1d3f851b2ea9529cb5696337202703c2e1ed2321",
upstream_arch = "arm64",
upstream_os = "linux",
version = "3.13.2",
)
helm_release.declare_binary(
name = "helm_macos_x64",
sha256 = "977c2faa49993aa8baa2c727f8f35a357576d6278d4d8618a5a010a56ad2dbee",
upstream_arch = "amd64",
upstream_os = "darwin",
version = "3.13.2",
)
helm_release.declare_binary(
name = "helm_macos_arm64",
sha256 = "00f00c66165ba0dcd9efdbef66a5508fb4fe4425991c0e599e0710f8ff7aa02e",
upstream_arch = "arm64",
upstream_os = "darwin",
version = "3.13.2",
)
helm_release.declare_binary(
name = "helm_windows_x64",
archive_type = "zip",
exe_extension = ".exe",
sha256 = "1ef931cb40bfa049fa5ee337ec16181345d7d0c8ab863fe9b04abe320fa2ae6e",
upstream_arch = "amd64",
upstream_os = "windows",
version = "3.13.2",
)
use_repo(
helm_release,
"helm_linux_x64",
"helm_linux_arm64",
"helm_macos_x64",
"helm_macos_arm64",
"helm_windows_x64",
)
register_toolchains(
"//infra:helm_toolchain_linux_x64",
"//infra:helm_toolchain_linux_arm64",
"//infra:helm_toolchain_macos_x64",
"//infra:helm_toolchain_macos_arm64",
"//infra:helm_toolchain_windows_x64",
)