Skip to content

Commit 9ef2b7f

Browse files
author
OpenShift Bot
authored
Merge pull request #11455 from ncdc/workaround-broken-attach
Merged by openshift-bot
2 parents 01eee62 + 887248c commit 9ef2b7f

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

test/end-to-end/core.sh

+13-5
Original file line numberDiff line numberDiff line change
@@ -327,15 +327,23 @@ os::cmd::expect_success 'oc whoami'
327327
echo "[INFO] Running a CLI command in a container using the service account"
328328
os::cmd::expect_success 'oc policy add-role-to-user view -z default'
329329
oc run cli-with-token --attach --image="openshift/origin:${TAG}" --restart=Never -- cli status --loglevel=4 > "${LOG_DIR}/cli-with-token.log" 2>&1
330-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'Using in-cluster configuration'
331-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'In project test'
330+
# TODO Switch back to using cat once https://github.com/docker/docker/pull/26718 is in our Godeps
331+
#os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'Using in-cluster configuration'
332+
#os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token.log'" 'In project test'
333+
os::cmd::expect_success_and_text "oc logs cli-with-token" 'Using in-cluster configuration'
334+
os::cmd::expect_success_and_text "oc logs cli-with-token" 'In project test'
332335
os::cmd::expect_success 'oc delete pod cli-with-token'
333336
oc run cli-with-token-2 --attach --image="openshift/origin:${TAG}" --restart=Never -- cli whoami --loglevel=4 > "${LOG_DIR}/cli-with-token2.log" 2>&1
334-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token2.log'" 'system:serviceaccount:test:default'
337+
# TODO Switch back to using cat once https://github.com/docker/docker/pull/26718 is in our Godeps
338+
#os::cmd::expect_success_and_text "cat '${LOG_DIR}/cli-with-token2.log'" 'system:serviceaccount:test:default'
339+
os::cmd::expect_success_and_text "oc logs cli-with-token-2" 'system:serviceaccount:test:default'
335340
os::cmd::expect_success 'oc delete pod cli-with-token-2'
336341
oc run kubectl-with-token --attach --image="openshift/origin:${TAG}" --restart=Never --command -- kubectl get pods --loglevel=4 > "${LOG_DIR}/kubectl-with-token.log" 2>&1
337-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'Using in-cluster configuration'
338-
os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'kubectl-with-token'
342+
# TODO Switch back to using cat once https://github.com/docker/docker/pull/26718 is in our Godeps
343+
#os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'Using in-cluster configuration'
344+
#os::cmd::expect_success_and_text "cat '${LOG_DIR}/kubectl-with-token.log'" 'kubectl-with-token'
345+
os::cmd::expect_success_and_text "oc logs kubectl-with-token" 'Using in-cluster configuration'
346+
os::cmd::expect_success_and_text "oc logs kubectl-with-token" 'kubectl-with-token'
339347

340348
echo "[INFO] Testing deployment logs and failing pre and mid hooks ..."
341349
# test hook selectors

0 commit comments

Comments
 (0)