mirror of
https://github.com/kubevela/kubevela.git
synced 2026-05-18 15:27:45 +00:00
* Feat: revert ci to kind Signed-off-by: Somefive <yd219913@alibaba-inc.com> * feat: use internal runner Signed-off-by: Somefive <yd219913@alibaba-inc.com> * fix test bug Signed-off-by: Somefive <yd219913@alibaba-inc.com> --------- Signed-off-by: Somefive <yd219913@alibaba-inc.com>
24 lines
889 B
Bash
24 lines
889 B
Bash
CORE_NAME="${CORE_NAME:-kubevela}"
|
|
DOCKER_CONTAINER=kind-control-plane
|
|
CONTAINER_ID=$(docker exec $DOCKER_CONTAINER crictl ps | grep $CORE_NAME'\s' | grep --regexp '^.............' -o)
|
|
DOCKER_DIR=$(docker exec $DOCKER_CONTAINER crictl inspect --output go-template --template '{{range .info.runtimeSpec.mounts}}{{if (eq .destination "/workspace/data")}}{{.source}}{{end}}{{end}}' "${CONTAINER_ID}")
|
|
echo "${CONTAINER_ID}"
|
|
echo "${DOCKER_DIR}"
|
|
|
|
docker exec $DOCKER_CONTAINER crictl exec "${CONTAINER_ID}" kill -2 1
|
|
|
|
file=$DOCKER_DIR/e2e-profile.out
|
|
echo "$file"
|
|
n=1
|
|
while [ $n -le 60 ];do
|
|
if_exist=$(docker exec $DOCKER_CONTAINER sh -c "test -f $file && echo 'ok'")
|
|
echo "$if_exist"
|
|
if [ -n "$if_exist" ];then
|
|
docker exec $DOCKER_CONTAINER cat "$file" >> /tmp/e2e-profile.out
|
|
break
|
|
fi
|
|
echo file not generated yet
|
|
n="$(expr $n + 1)"
|
|
sleep 1
|
|
done
|