Skip to content

Commit

Permalink
Use TMPDIR envvar when using the containerd CRI socket
Browse files Browse the repository at this point in the history
  • Loading branch information
ereslibre committed Jun 2, 2021
1 parent 2c54c15 commit f6c01bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/e2e.sh
Expand Up @@ -59,9 +59,9 @@ done

set -ex

find "/tmp/oneinfra-hypervisor-sets/${INFRA_TEST_CLUSTER_NAME}/" -type s -name "*.sock" | xargs -I{} -- bash -c 'echo {}; crictl --runtime-endpoint unix://{} pods'
find "${TMPDIR}/oneinfra-hypervisor-sets/${INFRA_TEST_CLUSTER_NAME}/" -type s -name "*.sock" | xargs -I{} -- bash -c 'echo {}; crictl --runtime-endpoint unix://{} pods'

find "/tmp/oneinfra-hypervisor-sets/${INFRA_TEST_CLUSTER_NAME}/" -type s -name "*.sock" | xargs -I{} -- bash -c 'echo {}; crictl --runtime-endpoint unix://{} ps -a'
find "${TMPDIR}/oneinfra-hypervisor-sets/${INFRA_TEST_CLUSTER_NAME}/" -type s -name "*.sock" | xargs -I{} -- bash -c 'echo {}; crictl --runtime-endpoint unix://{} ps -a'

kubectl cluster-info

Expand Down

0 comments on commit f6c01bf

Please sign in to comment.