Add Pod & PVC List after helm install (#13293)

Signed-off-by: Jenny Li <jing.li@zilliz.com>
pull/13335/head
Jenny Li 2021-12-14 11:41:10 +08:00 committed by GitHub
parent 78698a8918
commit c32148fa20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -12,7 +12,7 @@
# or implied. See the License for the specific language governing permissions and limitations under the License.
# Exit immediately for non zero status
set -e
# set -e
# Print commands
set -x
@ -84,3 +84,8 @@ else
"${MILVUS_HELM_RELEASE_NAME}" \
${@:-} "${MILVUS_HELM_CHART_PATH}"
fi
exitcode=$?
kubectl get pods -n ${MILVUS_HELM_NAMESPACE} | grep ${MILVUS_HELM_RELEASE_NAME}
kubectl get pvc -n ${MILVUS_HELM_NAMESPACE} | grep ${MILVUS_HELM_RELEASE_NAME} | awk '{$3=null;print $0}'
exit ${exitcode}