Fix helm test method about ceph-radosgateway

This patch makes the helm test command more standard by calling script
of common.

Change-Id: I5a19cd9b94a405e0c1e55a7e009aaf9b46878a1c
This commit is contained in:
jinyuanliu 2021-10-17 02:16:17 -04:00
parent 1bcc531443
commit 9abc09bcd2

View File

@ -17,6 +17,7 @@ set -xe
#NOTE: Get the over-rides to use #NOTE: Get the over-rides to use
export HELM_CHART_ROOT_PATH="${HELM_CHART_ROOT_PATH:="${OSH_INFRA_PATH:="../openstack-helm-infra"}"}" export HELM_CHART_ROOT_PATH="${HELM_CHART_ROOT_PATH:="${OSH_INFRA_PATH:="../openstack-helm-infra"}"}"
: ${OSH_EXTRA_HELM_ARGS_CEPH_RGW:="$(./tools/deployment/common/get-values-overrides.sh ceph-rgw)"} : ${OSH_EXTRA_HELM_ARGS_CEPH_RGW:="$(./tools/deployment/common/get-values-overrides.sh ceph-rgw)"}
: ${RUN_HELM_TESTS:="yes"}
#NOTE: Lint and package chart #NOTE: Lint and package chart
make -C ${HELM_CHART_ROOT_PATH} ceph-rgw make -C ${HELM_CHART_ROOT_PATH} ceph-rgw
@ -58,8 +59,7 @@ helm upgrade --install radosgw-openstack ${OSH_INFRA_PATH}/ceph-rgw \
#NOTE: Wait for deploy #NOTE: Wait for deploy
./tools/deployment/common/wait-for-pods.sh openstack ./tools/deployment/common/wait-for-pods.sh openstack
#NOTE: Run Tests # Run helm tests
export OS_CLOUD=openstack_helm if [ "x${RUN_HELM_TESTS}" != "xno" ]; then
# Delete the test pod if it still exists ./tools/deployment/common/run-helm-tests.sh radosgw-openstack
kubectl delete pods -l application=radosgw-openstack,release_group=radosgw-openstack,component=test --namespace=openstack --ignore-not-found fi
helm test radosgw-openstack