Add describe in ci logs (#18983)

Signed-off-by: Jenny Li <jing.li@zilliz.com>

Signed-off-by: Jenny Li <jing.li@zilliz.com>
This commit is contained in:
Jenny Li 2022-09-02 18:01:00 +08:00 committed by GitHub
parent 816967c000
commit 1bb2fdfbe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,6 @@
set -e
# Print commands
# set -x
while (( "$#" )); do
case "$1" in
@ -62,11 +61,17 @@ if [[ -n "${RELEASE_NAME:-}" ]]; then
for restart_pod in ${restart_pods}
do
reason=$(kubectl get pod ${restart_pod} -n milvus-ci -o json | jq .status.containerStatuses[0].lastState.terminated.reason )
restart_count=$(kubectl get pod ${restart_pod} -n milvus-ci -o json | jq .status.containerStatuses[0].restartCount )
reason=$(kubectl get pod ${restart_pod} -n ${MILVUS_HELM_NAMESPACE} -o json | jq .status.containerStatuses[0].lastState.terminated.reason )
restart_count=$(kubectl get pod ${restart_pod} -n${MILVUS_HELM_NAMESPACE} -o json | jq .status.containerStatuses[0].restartCount )
echo "${restart_pod} restarts ${restart_count}, last terminateed reason is ${reason}"
done
echo "----------------Pod Events --------------------------------------------"
for pod in $(kubectl get pods -n ${MILVUS_HELM_NAMESPACE} -o wide | grep "${MILVUS_HELM_RELEASE_NAME}-" | awk '{print $1}')
do
echo "--------------------------------${pod}-----------------------------"
kubectl describe pod ${pod} -n ${MILVUS_HELM_NAMESPACE}
done
fi
# Uninstall Milvus Helm Release