From: Zack Cerza Date: Tue, 2 Aug 2022 17:10:21 +0000 (-0600) Subject: containers/teuthology-dev: Parametrize suite X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=eff288c7fbcfdc2f8bba7a01c113b39e69afeee5;p=teuthology.git containers/teuthology-dev: Parametrize suite Signed-off-by: Zack Cerza --- diff --git a/containers/teuthology-dev/teuthology.sh b/containers/teuthology-dev/teuthology.sh index 7f8eed650..9c241144e 100755 --- a/containers/teuthology-dev/teuthology.sh +++ b/containers/teuthology-dev/teuthology.sh @@ -12,23 +12,19 @@ else CUSTOM_CONF=/teuthology/containerized_node.yaml fi export MACHINE_TYPE=${MACHINE_TYPE:-testnode} -if [ -z "$TEUTHOLOGY_WAIT" ]; then +if [ "$TEUTHOLOGY_SUITE" != "none" ]; then if [ -n "$TEUTH_BRANCH" ]; then TEUTH_BRANCH_FLAG="--teuthology-branch $TEUTH_BRANCH" fi teuthology-suite -v \ $TEUTH_BRANCH_FLAG \ --ceph-repo https://github.com/ceph/ceph.git \ - --suite-repo https://github.com/ceph/ceph.git \ -c main \ -m $MACHINE_TYPE \ --limit 1 \ -n 100 \ - --suite teuthology:no-ceph \ - --filter-out "libcephfs,kclient,stream,centos,rhel" \ - -d ubuntu -D 20.04 \ - --suite-branch main \ - --subset 9000/100000 \ + --suite ${TEUTHOLOGY_SUITE:-teuthology:no-ceph} \ + --filter-out "libcephfs,kclient" \ -p 75 \ --seed 349 \ --force-priority \