Skip to content

Commit 3c221d5

Browse files
Merge pull request #13669 from soltysh/issue12558
Increase journald rate limiter when running test-end-to-end-docker.sh
2 parents 74571f6 + b34ba02 commit 3c221d5

File tree

5 files changed

+120
-30
lines changed

5 files changed

+120
-30
lines changed

hack/lib/util/misc.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,11 @@ readonly -f os::util::format_seconds
119119
# Return:
120120
# None
121121
function os::util::sed() {
122+
local sudo="${USE_SUDO:+sudo}"
122123
if LANG=C sed --help 2>&1 | grep -q "GNU sed"; then
123-
sed -i'' "$@"
124+
${sudo} sed -i'' "$@"
124125
else
125-
sed -i '' "$@"
126+
${sudo} sed -i '' "$@"
126127
fi
127128
}
128129
readonly -f os::util::sed
@@ -202,4 +203,4 @@ function os::util::curl_etcd() {
202203
function os::util::host_platform() {
203204
echo "$(go env GOHOSTOS)/$(go env GOHOSTARCH)"
204205
}
205-
readonly -f os::util::host_platform
206+
readonly -f os::util::host_platform

hack/test-end-to-end-docker.sh

+24
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,36 @@ fi
2121
function cleanup() {
2222
return_code=$?
2323
os::cleanup::all "${return_code}"
24+
25+
# restore journald to previous form
26+
if os::util::ensure::system_binary_exists 'systemctl'; then
27+
os::log::info "Restoring journald limits"
28+
${USE_SUDO:+sudo} mv /etc/systemd/{journald.conf.bak,journald.conf}
29+
${USE_SUDO:+sudo} systemctl restart systemd-journald.service
30+
# Docker has "some" problems when journald is restarted, so we need to
31+
# restart docker, as well.
32+
${USE_SUDO:+sudo} systemctl restart docker.service
33+
fi
34+
2435
exit "${return_code}"
2536
}
2637
trap "cleanup" EXIT
2738

2839
os::log::system::start
2940

41+
# This turns-off rate limiting in journald to bypass the problem from
42+
# https://github.com/openshift/origin/issues/12558.
43+
if os::util::ensure::system_binary_exists 'systemctl'; then
44+
os::log::info "Turning off journald limits"
45+
${USE_SUDO:+sudo} cp /etc/systemd/{journald.conf,journald.conf.bak}
46+
os::util::sed "s/^.*RateLimitInterval.*$/RateLimitInterval=0/g" /etc/systemd/journald.conf
47+
os::util::sed "s/^.*RateLimitBurst.*$/RateLimitBurst=0/g" /etc/systemd/journald.conf
48+
${USE_SUDO:+sudo} systemctl restart systemd-journald.service
49+
# Docker has "some" problems when journald is restarted, so we need to
50+
# restart docker, as well.
51+
${USE_SUDO:+sudo} systemctl restart docker.service
52+
fi
53+
3054
# Setup
3155
os::log::info "openshift version: `openshift version`"
3256
os::log::info "oc version: `oc version`"

test/end-to-end/core.sh

+14-25
Original file line numberDiff line numberDiff line change
@@ -378,30 +378,19 @@ os::cmd::expect_success 'oc login -u e2e-user'
378378
os::cmd::expect_success 'oc project test'
379379
os::cmd::expect_success 'oc whoami'
380380

381-
if [[ -n "${SOLTYSH_DEBUG:-}" ]]; then
382-
os::log::info "Running a CLI command in a container using the service account"
383-
os::cmd::expect_success 'oc policy add-role-to-user view -z default'
384-
os::cmd::try_until_success "oc sa get-token default"
385-
oc run cli-with-token --attach --image="${IMAGE_PREFIX}:${TAG}" --restart=Never -- cli status --loglevel=4 > "${LOG_DIR}/cli-with-token.log" 2>&1
386-
# TODO remove set +o errexit, once https://github.com/openshift/origin/issues/12558 gets proper fix
387-
set +o errexit
388-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'Using in-cluster configuration'
389-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'In project test'
390-
set -o errexit
391-
os::cmd::expect_success 'oc delete pod cli-with-token'
392-
oc run cli-with-token-2 --attach --image="${IMAGE_PREFIX}:${TAG}" --restart=Never -- cli whoami --loglevel=4 > "${LOG_DIR}/cli-with-token2.log" 2>&1
393-
# TODO remove set +o errexit, once https://github.com/openshift/origin/issues/12558 gets proper fix
394-
set +o errexit
395-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token2.log'" 'system:serviceaccount:test:default'
396-
set -o errexit
397-
os::cmd::expect_success 'oc delete pod cli-with-token-2'
398-
oc run kubectl-with-token --attach --image="${IMAGE_PREFIX}:${TAG}" --restart=Never --command -- kubectl get pods --loglevel=4 > "${LOG_DIR}/kubectl-with-token.log" 2>&1
399-
# TODO remove set +o errexit, once https://github.com/openshift/origin/issues/12558 gets proper fix
400-
set +o errexit
401-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'Using in-cluster configuration'
402-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'kubectl-with-token'
403-
set -o errexit
404-
fi
381+
os::log::info "Running a CLI command in a container using the service account"
382+
os::cmd::expect_success 'oc policy add-role-to-user view -z default'
383+
os::cmd::try_until_success "oc sa get-token default"
384+
oc run cli-with-token --attach --image="${IMAGE_PREFIX}:${TAG}" --restart=Never -- cli status --loglevel=4 > "${LOG_DIR}/cli-with-token.log" 2>&1
385+
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'Using in-cluster configuration'
386+
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'In project test'
387+
os::cmd::expect_success 'oc delete pod cli-with-token'
388+
oc run cli-with-token-2 --attach --image="${IMAGE_PREFIX}:${TAG}" --restart=Never -- cli whoami --loglevel=4 > "${LOG_DIR}/cli-with-token2.log" 2>&1
389+
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token2.log'" 'system:serviceaccount:test:default'
390+
os::cmd::expect_success 'oc delete pod cli-with-token-2'
391+
oc run kubectl-with-token --attach --image="${IMAGE_PREFIX}:${TAG}" --restart=Never --command -- kubectl get pods --loglevel=4 > "${LOG_DIR}/kubectl-with-token.log" 2>&1
392+
os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'Using in-cluster configuration'
393+
os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'kubectl-with-token'
405394

406395
os::log::info "Testing deployment logs and failing pre and mid hooks ..."
407396
# test hook selectors
@@ -471,7 +460,7 @@ os::log::info "Validating exec"
471460
frontend_pod=$(oc get pod -l deploymentconfig=frontend --template='{{(index .items 0).metadata.name}}')
472461
# when running as a restricted pod the registry will run with a pre-allocated
473462
# user in the neighborhood of 1000000+. Look for a substring of the pre-allocated uid range
474-
os::cmd::expect_success_and_text "oc exec -p ${frontend_pod} id" '1000'
463+
os::cmd::expect_success_and_text "oc exec ${frontend_pod} id" '1000'
475464
os::cmd::expect_success_and_text "oc rsh pod/${frontend_pod} id -u" '1000'
476465
os::cmd::expect_success_and_text "oc rsh -T ${frontend_pod} id -u" '1000'
477466

vendor/k8s.io/kubernetes/staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade.go

+18-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/k8s.io/kubernetes/staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/upgrade_test.go

+60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)