@@ -327,15 +327,23 @@ os::cmd::expect_success 'oc whoami'
327
327
echo " [INFO] Running a CLI command in a container using the service account"
328
328
os::cmd::expect_success ' oc policy add-role-to-user view -z default'
329
329
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'
332
335
os::cmd::expect_success ' oc delete pod cli-with-token'
333
336
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'
335
340
os::cmd::expect_success ' oc delete pod cli-with-token-2'
336
341
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'
339
347
340
348
echo " [INFO] Testing deployment logs and failing pre and mid hooks ..."
341
349
# test hook selectors
0 commit comments