mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-29 14:37:00 +00:00
Merge pull request #34745 from ixdy/verify-generated-verbosity
Automatic merge from submit-queue Increase build verbosity for verify-generated-{protobuf,runtime}.sh Print out more details of the build process to help with debugging #34675.
This commit is contained in:
commit
819f92c9e2
@ -331,7 +331,7 @@ function kube::build::docker_delete_old_images() {
|
|||||||
# docker images "$1" --format "{{.Tag}}"
|
# docker images "$1" --format "{{.Tag}}"
|
||||||
for tag in $("${DOCKER[@]}" images ${1} | tail -n +2 | awk '{print $2}') ; do
|
for tag in $("${DOCKER[@]}" images ${1} | tail -n +2 | awk '{print $2}') ; do
|
||||||
if [[ "${tag}" != "${2}"* ]] ; then
|
if [[ "${tag}" != "${2}"* ]] ; then
|
||||||
V=6 kube::log::status "Keeping image ${1}:${tag}"
|
V=3 kube::log::status "Keeping image ${1}:${tag}"
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -339,7 +339,7 @@ function kube::build::docker_delete_old_images() {
|
|||||||
V=2 kube::log::status "Deleting image ${1}:${tag}"
|
V=2 kube::log::status "Deleting image ${1}:${tag}"
|
||||||
"${DOCKER[@]}" rmi "${1}:${tag}" >/dev/null
|
"${DOCKER[@]}" rmi "${1}:${tag}" >/dev/null
|
||||||
else
|
else
|
||||||
V=6 kube::log::status "Keeping image ${1}:${tag}"
|
V=3 kube::log::status "Keeping image ${1}:${tag}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -353,14 +353,14 @@ function kube::build::docker_delete_old_containers() {
|
|||||||
# docker ps -a --format="{{.Names}}"
|
# docker ps -a --format="{{.Names}}"
|
||||||
for container in $("${DOCKER[@]}" ps -a | tail -n +2 | awk '{print $NF}') ; do
|
for container in $("${DOCKER[@]}" ps -a | tail -n +2 | awk '{print $NF}') ; do
|
||||||
if [[ "${container}" != "${1}"* ]] ; then
|
if [[ "${container}" != "${1}"* ]] ; then
|
||||||
V=6 kube::log::status "Keeping container ${container}"
|
V=3 kube::log::status "Keeping container ${container}"
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
if [[ -z "${2:-}" || "${container}" != "${2}" ]] ; then
|
if [[ -z "${2:-}" || "${container}" != "${2}" ]] ; then
|
||||||
V=2 kube::log::status "Deleting container ${container}"
|
V=2 kube::log::status "Deleting container ${container}"
|
||||||
kube::build::destroy_container "${container}"
|
kube::build::destroy_container "${container}"
|
||||||
else
|
else
|
||||||
V=6 kube::log::status "Keeping container ${container}"
|
V=3 kube::log::status "Keeping container ${container}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -613,7 +613,7 @@ function kube::build::rsync_probe {
|
|||||||
# rsync daemon can be reached out.
|
# rsync daemon can be reached out.
|
||||||
function kube::build::start_rsyncd_container() {
|
function kube::build::start_rsyncd_container() {
|
||||||
kube::build::stop_rsyncd_container
|
kube::build::stop_rsyncd_container
|
||||||
V=6 kube::log::status "Starting rsyncd container"
|
V=3 kube::log::status "Starting rsyncd container"
|
||||||
kube::build::run_build_command_ex \
|
kube::build::run_build_command_ex \
|
||||||
"${KUBE_RSYNC_CONTAINER_NAME}" -p 127.0.0.1:${KUBE_RSYNC_PORT}:${KUBE_CONTAINER_RSYNC_PORT} -d \
|
"${KUBE_RSYNC_CONTAINER_NAME}" -p 127.0.0.1:${KUBE_RSYNC_PORT}:${KUBE_CONTAINER_RSYNC_PORT} -d \
|
||||||
-- /rsyncd.sh >/dev/null
|
-- /rsyncd.sh >/dev/null
|
||||||
@ -645,7 +645,7 @@ function kube::build::start_rsyncd_container() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function kube::build::stop_rsyncd_container() {
|
function kube::build::stop_rsyncd_container() {
|
||||||
V=6 kube::log::status "Stopping any currently running rsyncd container"
|
V=3 kube::log::status "Stopping any currently running rsyncd container"
|
||||||
unset KUBE_RSYNC_ADDR
|
unset KUBE_RSYNC_ADDR
|
||||||
kube::build::destroy_container "${KUBE_RSYNC_CONTAINER_NAME}"
|
kube::build::destroy_container "${KUBE_RSYNC_CONTAINER_NAME}"
|
||||||
}
|
}
|
||||||
@ -666,7 +666,7 @@ function kube::build::sync_to_container() {
|
|||||||
# output only directories and things that are not necessary like the git
|
# output only directories and things that are not necessary like the git
|
||||||
# directory. The '- /' filter prevents rsync from trying to set the
|
# directory. The '- /' filter prevents rsync from trying to set the
|
||||||
# uid/gid/perms on the root of the sync tree.
|
# uid/gid/perms on the root of the sync tree.
|
||||||
V=6 kube::log::status "Running rsync"
|
V=3 kube::log::status "Running rsync"
|
||||||
rsync ${rsync_extra} \
|
rsync ${rsync_extra} \
|
||||||
--archive \
|
--archive \
|
||||||
--delete \
|
--delete \
|
||||||
@ -701,7 +701,7 @@ function kube::build::copy_output() {
|
|||||||
#
|
#
|
||||||
# We are looking to copy out all of the built binaries along with various
|
# We are looking to copy out all of the built binaries along with various
|
||||||
# generated files.
|
# generated files.
|
||||||
V=6 kube::log::status "Running rsync"
|
V=3 kube::log::status "Running rsync"
|
||||||
rsync ${rsync_extra} \
|
rsync ${rsync_extra} \
|
||||||
--archive \
|
--archive \
|
||||||
--prune-empty-dirs \
|
--prune-empty-dirs \
|
||||||
|
@ -38,7 +38,7 @@ for APIROOT in ${APIROOTS}; do
|
|||||||
cp -a -T "${KUBE_ROOT}/${APIROOT}" "${_tmp}/${APIROOT}"
|
cp -a -T "${KUBE_ROOT}/${APIROOT}" "${_tmp}/${APIROOT}"
|
||||||
done
|
done
|
||||||
|
|
||||||
"${KUBE_ROOT}/hack/update-generated-protobuf.sh"
|
KUBE_VERBOSE=3 "${KUBE_ROOT}/hack/update-generated-protobuf.sh"
|
||||||
for APIROOT in ${APIROOTS}; do
|
for APIROOT in ${APIROOTS}; do
|
||||||
TMP_APIROOT="${_tmp}/${APIROOT}"
|
TMP_APIROOT="${_tmp}/${APIROOT}"
|
||||||
echo "diffing ${APIROOT} against freshly generated protobuf"
|
echo "diffing ${APIROOT} against freshly generated protobuf"
|
||||||
|
@ -34,7 +34,7 @@ mkdir -p ${KUBE_REMOTE_RUNTIME_ROOT}/_tmp
|
|||||||
cp ${KUBE_REMOTE_RUNTIME_ROOT}/api.pb.go ${KUBE_REMOTE_RUNTIME_ROOT}/_tmp/
|
cp ${KUBE_REMOTE_RUNTIME_ROOT}/api.pb.go ${KUBE_REMOTE_RUNTIME_ROOT}/_tmp/
|
||||||
|
|
||||||
ret=0
|
ret=0
|
||||||
hack/update-generated-runtime.sh
|
KUBE_VERBOSE=3 "${KUBE_ROOT}/hack/update-generated-runtime.sh"
|
||||||
diff -I "gzipped FileDescriptorProto" -I "0x" -Naupr ${KUBE_REMOTE_RUNTIME_ROOT}/_tmp/api.pb.go ${KUBE_REMOTE_RUNTIME_ROOT}/api.pb.go || ret=$?
|
diff -I "gzipped FileDescriptorProto" -I "0x" -Naupr ${KUBE_REMOTE_RUNTIME_ROOT}/_tmp/api.pb.go ${KUBE_REMOTE_RUNTIME_ROOT}/api.pb.go || ret=$?
|
||||||
if [[ $ret -eq 0 ]]; then
|
if [[ $ret -eq 0 ]]; then
|
||||||
echo "Generated container runtime api is up to date."
|
echo "Generated container runtime api is up to date."
|
||||||
|
Loading…
Reference in New Issue
Block a user