
Automatic merge from submit-queue. If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. git: Use VolumeHost.GetExec() to execute stuff in volume plugins This prepares volume plugins to run things in containers instead of running them on the host. **Special notes for your reviewer**: * instead of `cmd.SetDir(<dir>); cmd.Exec("git <command>")`, we do `cmd.Exec("git -C <dir> <command>")` - mounter.Exec does not have SetDir() * there are lot of changes in the tests because a different exec interface is used. @kubernetes/sig-storage-pr-reviews ```release-note gitRepo volumes in pods require git 1.8.5 or later ``` /assign @rootfs
54 lines
1.4 KiB
Python
54 lines
1.4 KiB
Python
package(default_visibility = ["//visibility:public"])
|
|
|
|
load(
|
|
"@io_bazel_rules_go//go:def.bzl",
|
|
"go_library",
|
|
"go_test",
|
|
)
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"doc.go",
|
|
"git_repo.go",
|
|
],
|
|
importpath = "k8s.io/kubernetes/pkg/volume/git_repo",
|
|
deps = [
|
|
"//pkg/util/mount:go_default_library",
|
|
"//pkg/util/strings:go_default_library",
|
|
"//pkg/volume:go_default_library",
|
|
"//pkg/volume/util:go_default_library",
|
|
"//vendor/k8s.io/api/core/v1:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/types:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["git_repo_test.go"],
|
|
embed = [":go_default_library"],
|
|
importpath = "k8s.io/kubernetes/pkg/volume/git_repo",
|
|
deps = [
|
|
"//pkg/util/mount:go_default_library",
|
|
"//pkg/volume:go_default_library",
|
|
"//pkg/volume/empty_dir:go_default_library",
|
|
"//pkg/volume/testing:go_default_library",
|
|
"//vendor/k8s.io/api/core/v1:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library",
|
|
"//vendor/k8s.io/apimachinery/pkg/types:go_default_library",
|
|
],
|
|
)
|
|
|
|
filegroup(
|
|
name = "package-srcs",
|
|
srcs = glob(["**"]),
|
|
tags = ["automanaged"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "all-srcs",
|
|
srcs = [":package-srcs"],
|
|
tags = ["automanaged"],
|
|
)
|