mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-31 15:25:57 +00:00
Merge pull request #44687 from cblecker/hacklib-tar
Automatic merge from submit-queue Add hack/lib to kubernetes release tarball **What this PR does / why we need it**: Add hack/lib to kubernetes release tarball, to fix an issue with https://get.k8s.io/ script introduced in #42748. **Which issue this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close that issue when PR gets merged)*: Fixes https://github.com/kubernetes/kubernetes/pull/42748#issuecomment-295412268 **Special notes for your reviewer**: I'm new to bazel, so hopefully I'm not off-base here :) **Release note**: ```release-note NONE ``` cc: @ixdy @dcbw @smarterclayton
This commit is contained in:
commit
18cd0f48ba
@ -476,6 +476,10 @@ EOF
|
||||
cp -R "${KUBE_ROOT}/federation/manifests" "${release_stage}/federation/"
|
||||
cp -R "${KUBE_ROOT}/federation/deploy" "${release_stage}/federation/"
|
||||
|
||||
# Include hack/lib as a dependency for the cluster/ scripts
|
||||
mkdir -p "${release_stage}/hack"
|
||||
cp -R "${KUBE_ROOT}/hack/lib" "${release_stage}/hack/"
|
||||
|
||||
cp -R "${KUBE_ROOT}/examples" "${release_stage}/"
|
||||
cp -R "${KUBE_ROOT}/docs" "${release_stage}/"
|
||||
cp "${KUBE_ROOT}/README.md" "${release_stage}/"
|
||||
|
@ -228,6 +228,7 @@ pkg_tar(
|
||||
"//cluster:all-srcs",
|
||||
"//docs:all-srcs",
|
||||
"//examples:all-srcs",
|
||||
"//hack/lib:all-srcs",
|
||||
"//third_party/htpasswd:all-srcs",
|
||||
],
|
||||
package_dir = "kubernetes",
|
||||
|
Loading…
Reference in New Issue
Block a user