mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-29 18:38:44 +08:00
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:
parent
816967c000
commit
1bb2fdfbe8
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user