File tree Expand file tree Collapse file tree 9 files changed +10
-29
lines changed Expand file tree Collapse file tree 9 files changed +10
-29
lines changed Original file line number Diff line number Diff line change @@ -698,7 +698,10 @@ function kube::util::ensure_dockerized {
698
698
# SED: The name of the gnu-sed binary
699
699
#
700
700
function kube::util::ensure-gnu-sed {
701
- if LANG=C sed --help 2>&1 | grep -q GNU; then
701
+ # NOTE: the echo below is a workaround to ensure sed is executed before the grep.
702
+ # see: https://github.com/kubernetes/kubernetes/issues/87251
703
+ sed_help=" $( LANG=C sed --help 2>&1 ) "
704
+ if echo " ${sed_help} " | grep -q " GNU\|BusyBox" ; then
702
705
SED=" sed"
703
706
elif command -v gsed & > /dev/null; then
704
707
SED=" gsed"
Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ TASK=$1
22
22
WHAT=$2
23
23
24
24
KUBE_ROOT=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) /../.." && pwd -P) "
25
+ source " ${KUBE_ROOT} /hack/lib/logging.sh"
25
26
source " ${KUBE_ROOT} /hack/lib/util.sh"
26
27
27
28
# Mapping of go ARCH to actual architectures shipped part of multiarch/qemu-user-static project
@@ -166,8 +167,7 @@ if [[ "${WHAT}" == "all-conformance" ]]; then
166
167
# Discussed during Conformance Office Hours Meeting (2019.12.17):
167
168
# https://docs.google.com/document/d/1W31nXh9RYAb_VaYkwuPLd1hFxuRX3iU0DmaQ4lkCsX8/edit#heading=h.l87lu17xm9bh
168
169
# echoserver image not included: https://github.com/kubernetes/kubernetes/issues/84158
169
- conformance_images=(" agnhost" " dnsutils" " jessie-dnsutils" " kitten" " mounttest" " mounttest-user" \
170
- " nautilus" " nonewprivs" " resource-consumer" " resource-consumer-controller" " sample-apiserver" " test-webserver" )
170
+ conformance_images=(" agnhost" " jessie-dnsutils" " kitten" " nautilus" " nonewprivs" " resource-consumer" " sample-apiserver" )
171
171
for image in " ${conformance_images[@]} " ; do
172
172
eval " ${TASK} " " ${image} "
173
173
done
Original file line number Diff line number Diff line change 1
- 1.1
1
+ 1.2
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
- 1.0
1
+ 1.1
Original file line number Diff line number Diff line change 1
- 1.5
1
+ 1.6
Original file line number Diff line number Diff line change 1
- 1.17
1
+ 1.17.2
You can’t perform that action at this time.
0 commit comments