Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ bazel_dep(name = "platforms", version = "0.0.8")
bazel_dep(name = "rules_oci", version = "1.7.2")
bazel_dep(name = "rules_pkg", version = "0.9.1")
bazel_dep(name = "rules_go", version = "0.44.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "rules_shell", version = "0.4.0")

go_sdk = use_extension("@io_bazel_rules_go//go:extensions.bzl", "go_sdk")
go_sdk.download(version = "1.21.5")
Expand Down
2 changes: 2 additions & 0 deletions skylib/kustomize/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
# OF ANY KIND, either express or implied. See the License for the specific language
# governing permissions and limitations under the License.

load("@rules_shell//shell:sh_binary.bzl", "sh_binary")

exports_files([
"run-all.sh.tpl",
"kubectl.sh.tpl",
Expand Down
2 changes: 2 additions & 0 deletions skylib/kustomize/kustomize.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ def _download_kustomize_impl(ctx):
fail("Platform " + ctx.os.name + " is not supported")

ctx.file("BUILD", """
load("@rules_shell//shell:sh_binary.bzl", "sh_binary")

sh_binary(
name = "kustomize",
srcs = ["bin/kustomize"],
Expand Down