├── .coveragerc ├── .dockerignore ├── .github ├── CODEOWNERS └── workflows │ ├── ci.yml │ ├── dependencies.yml │ ├── dev_container.yml │ └── integration.yml ├── .gitignore ├── .gitlab-ci.yml ├── .readthedocs.yml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.rst ├── ansible.cfg ├── beanstalk └── alpine │ └── Dockerfile ├── bootstrap ├── containers └── teuthology-dev │ ├── .teuthology.yaml │ ├── Dockerfile │ ├── containerized_node.yaml │ └── teuthology.sh ├── docs ├── COMPONENTS.rst ├── ChangeLog.rst ├── INSTALL.rst ├── LAB_SETUP.rst ├── Makefile ├── README.rst ├── _static │ ├── create_nodes.py │ ├── nginx_paddles │ ├── nginx_pulpito │ ├── nginx_test_logs │ └── worker_start.sh ├── _themes │ └── ceph │ │ ├── static │ │ ├── font │ │ │ ├── ApexSans-Book.eot │ │ │ ├── ApexSans-Book.svg │ │ │ ├── ApexSans-Book.ttf │ │ │ ├── ApexSans-Book.woff │ │ │ ├── ApexSans-Medium.eot │ │ │ ├── ApexSans-Medium.svg │ │ │ ├── ApexSans-Medium.ttf │ │ │ └── ApexSans-Medium.woff │ │ └── nature.css_t │ │ └── theme.conf ├── cephlab.png ├── cephlab.svg ├── commands │ ├── list.rst │ ├── teuthology-describe.rst │ ├── teuthology-dispatcher.rst │ ├── teuthology-kill.rst │ ├── teuthology-lock.rst │ ├── teuthology-ls.rst │ ├── teuthology-openstack.rst │ ├── teuthology-prune-logs.rst │ ├── teuthology-queue.rst │ ├── teuthology-reimage.rst │ ├── teuthology-report.rst │ ├── teuthology-results.rst │ ├── teuthology-schedule.rst │ ├── teuthology-suite.rst │ ├── teuthology-update-inventory.rst │ ├── teuthology-updatekeys.rst │ ├── teuthology-wait.rst │ ├── teuthology-worker.rst │ └── teuthology.rst ├── conf.py ├── detailed_test_config.rst ├── docker-compose │ ├── README.md │ ├── db │ │ └── 01-init.sh │ ├── docker-compose.yml │ ├── start.sh │ ├── testnode │ │ ├── Dockerfile │ │ ├── testnode_start.sh │ │ ├── testnode_stop.sh │ │ └── testnode_sudoers │ └── teuthology │ │ ├── .teuthology.yaml │ │ ├── Dockerfile │ │ ├── containerized_node.yaml │ │ └── teuthology.sh ├── downburst_vms.rst ├── exporter.rst ├── fragment_merging.rst ├── index.rst ├── intro_testers.rst ├── laptop │ ├── README.md │ ├── default-pool.xml │ ├── front.xml │ ├── hosts │ ├── ssh_config │ ├── targets.sql │ └── teuthology.yaml ├── libcloud_backend.rst ├── openstack_backend.rst ├── requirements.txt └── siteconfig.rst ├── examples ├── 3node_ceph.yaml ├── 3node_rgw.yaml └── parallel_example.yaml ├── hammer.sh ├── openstack-delegate.sh ├── pyproject.toml ├── pytest.ini ├── requirements.txt ├── requirements.yml ├── scripts ├── __init__.py ├── describe.py ├── dispatcher.py ├── exporter.py ├── kill.py ├── lock.py ├── ls.py ├── node_cleanup.py ├── openstack.py ├── prune_logs.py ├── queue.py ├── reimage.py ├── report.py ├── results.py ├── run.py ├── schedule.py ├── suite.py ├── supervisor.py ├── test │ ├── script.py │ ├── test_dispatcher_.py │ ├── test_exporter_.py │ ├── test_lock.py │ ├── test_ls.py │ ├── test_prune_logs.py │ ├── test_report.py │ ├── test_results.py │ ├── test_run.py │ ├── test_schedule.py │ ├── test_suite.py │ ├── test_supervisor_.py │ └── test_updatekeys.py ├── update_inventory.py ├── updatekeys.py └── wait.py ├── setup.cfg ├── systemd ├── teuthology-dispatcher@.service └── teuthology-exporter.service ├── teuthology ├── __init__.py ├── beanstalk.py ├── ceph.conf.template ├── config.py ├── contextutil.py ├── describe_tests.py ├── dispatcher │ ├── __init__.py │ ├── supervisor.py │ └── test │ │ ├── test_dispatcher.py │ │ ├── test_reimage_error_mark_machine_down.py │ │ └── test_supervisor.py ├── exceptions.py ├── exit.py ├── exporter.py ├── job_status.py ├── kill.py ├── lock │ ├── __init__.py │ ├── cli.py │ ├── ops.py │ ├── query.py │ ├── test │ │ ├── __init__.py │ │ └── test_lock.py │ └── util.py ├── ls.py ├── misc.py ├── nuke │ └── __init__.py ├── openstack │ ├── __init__.py │ ├── archive-key │ ├── archive-key.pub │ ├── bootstrap-teuthology.sh │ ├── openstack-basic.yaml │ ├── openstack-buildpackages.yaml │ ├── openstack-centos-6.5-user-data.txt │ ├── openstack-centos-7.0-user-data.txt │ ├── openstack-centos-7.1-user-data.txt │ ├── openstack-centos-7.2-user-data.txt │ ├── openstack-centos-7.3-user-data.txt │ ├── openstack-centos-9.stream-user-data.txt │ ├── openstack-debian-7.0-user-data.txt │ ├── openstack-debian-8.0-user-data.txt │ ├── openstack-opensuse-15.0-user-data.txt │ ├── openstack-opensuse-15.1-user-data.txt │ ├── openstack-opensuse-42.1-user-data.txt │ ├── openstack-opensuse-42.2-user-data.txt │ ├── openstack-opensuse-42.3-user-data.txt │ ├── openstack-sle-12.1-user-data.txt │ ├── openstack-sle-12.2-user-data.txt │ ├── openstack-sle-12.3-user-data.txt │ ├── openstack-sle-15.0-user-data.txt │ ├── openstack-sle-15.1-user-data.txt │ ├── openstack-teuthology.cron │ ├── openstack-teuthology.init │ ├── openstack-ubuntu-12.04-user-data.txt │ ├── openstack-ubuntu-14.04-user-data.txt │ ├── openstack-ubuntu-16.04-user-data.txt │ ├── openstack-user-data.txt │ ├── setup-openstack.sh │ └── test │ │ ├── __init__.py │ │ ├── archive-on-error.yaml │ │ ├── noop.yaml │ │ ├── openstack-integration.py │ │ ├── resources_hint.yaml │ │ ├── resources_hint_no_cinder.yaml │ │ ├── stop_worker.yaml │ │ ├── suites │ │ ├── noop │ │ │ ├── + │ │ │ └── noop.yaml │ │ └── nuke │ │ │ └── + │ │ ├── test_config.py │ │ ├── test_openstack.py │ │ └── user-data-test1.txt ├── orchestra │ ├── __init__.py │ ├── cluster.py │ ├── connection.py │ ├── console.py │ ├── daemon │ │ ├── __init__.py │ │ ├── cephadmunit.py │ │ ├── group.py │ │ ├── state.py │ │ └── systemd.py │ ├── monkey.py │ ├── opsys.py │ ├── remote.py │ ├── run.py │ └── test │ │ ├── __init__.py │ │ ├── files │ │ └── daemon-systemdstate-pid-ps-ef.output │ │ ├── integration │ │ ├── __init__.py │ │ └── test_integration.py │ │ ├── test_cluster.py │ │ ├── test_connection.py │ │ ├── test_console.py │ │ ├── test_opsys.py │ │ ├── test_remote.py │ │ ├── test_run.py │ │ ├── test_systemd.py │ │ └── util.py ├── packaging.py ├── parallel.py ├── provision │ ├── __init__.py │ ├── cloud │ │ ├── __init__.py │ │ ├── base.py │ │ ├── openstack.py │ │ ├── test │ │ │ ├── test_base.py │ │ │ ├── test_cloud_init.py │ │ │ ├── test_cloud_util.py │ │ │ ├── test_openstack.py │ │ │ └── test_openstack_userdata_conf.yaml │ │ └── util.py │ ├── downburst.py │ ├── fog.py │ ├── openstack.py │ ├── pelagos.py │ └── test │ │ ├── test_downburst.py │ │ ├── test_fog.py │ │ ├── test_init_provision.py │ │ └── test_pelagos.py ├── prune.py ├── reimage.py ├── repo_utils.py ├── report.py ├── results.py ├── run.py ├── run_tasks.py ├── safepath.py ├── schedule.py ├── scrape.py ├── suite │ ├── __init__.py │ ├── build_matrix.py │ ├── fragment-merge.lua │ ├── matrix.py │ ├── merge.py │ ├── placeholder.py │ ├── run.py │ ├── test │ │ ├── conftest.py │ │ ├── suites │ │ │ └── noop │ │ │ │ └── noop.yaml │ │ ├── test_build_matrix.py │ │ ├── test_init.py │ │ ├── test_matrix.py │ │ ├── test_merge.py │ │ ├── test_placeholder.py │ │ ├── test_run_.py │ │ └── test_util.py │ └── util.py ├── task │ ├── __init__.py │ ├── ansible.py │ ├── args.py │ ├── background_exec.py │ ├── buildpackages.py │ ├── buildpackages │ │ ├── Makefile │ │ ├── centos-6.5-user-data.txt │ │ ├── centos-7.0-user-data.txt │ │ ├── centos-7.1-user-data.txt │ │ ├── centos-7.2-user-data.txt │ │ ├── centos-7.3-user-data.txt │ │ ├── common.sh │ │ ├── debian-8.0-user-data.txt │ │ ├── make-deb.sh │ │ ├── make-rpm.sh │ │ ├── opensuse-15.0-user-data.txt │ │ ├── opensuse-42.1-user-data.txt │ │ ├── opensuse-42.2-user-data.txt │ │ ├── opensuse-42.3-user-data.txt │ │ ├── sle-12.1-user-data.txt │ │ ├── sle-12.2-user-data.txt │ │ ├── sle-12.3-user-data.txt │ │ ├── sle-15.0-user-data.txt │ │ ├── ubuntu-12.04-user-data.txt │ │ ├── ubuntu-14.04-user-data.txt │ │ ├── ubuntu-16.04-user-data.txt │ │ └── user-data.txt │ ├── ceph_ansible.py │ ├── cephmetrics.py │ ├── clock.py │ ├── common_fs_utils.py │ ├── console_log.py │ ├── dump_ctx.py │ ├── exec.py │ ├── full_sequential.py │ ├── full_sequential_finally.py │ ├── hadoop.py │ ├── install │ │ ├── __init__.py │ │ ├── bin │ │ │ ├── adjust-ulimits │ │ │ ├── daemon-helper │ │ │ └── stdin-killer │ │ ├── deb.py │ │ ├── packages.yaml │ │ ├── redhat.py │ │ ├── rpm.py │ │ └── util.py │ ├── interactive.py │ ├── internal │ │ ├── __init__.py │ │ ├── check_lock.py │ │ ├── edit_sudoers.sh │ │ ├── git_ignore_ssl.py │ │ ├── lock_machines.py │ │ ├── redhat.py │ │ ├── syslog.py │ │ └── vm_setup.py │ ├── iscsi.py │ ├── kernel.py │ ├── knfsd.py │ ├── localdir.py │ ├── lockfile.py │ ├── loop.py │ ├── mpi.py │ ├── nfs.py │ ├── nop.py │ ├── parallel.py │ ├── parallel_example.py │ ├── pcp.j2 │ ├── pcp.py │ ├── pexec.py │ ├── print.py │ ├── proc_thrasher.py │ ├── selinux.py │ ├── sequential.py │ ├── sleep.py │ ├── ssh_keys.py │ ├── tasktest.py │ ├── tests │ │ ├── __init__.py │ │ ├── test_fetch_coredumps.py │ │ ├── test_locking.py │ │ └── test_run.py │ └── timer.py ├── templates │ ├── email-sleep-before-teardown.jinja2 │ └── rocketchat-sleep-before-teardown.jinja2 ├── test │ ├── __init__.py │ ├── fake_archive.py │ ├── fake_fs.py │ ├── integration │ │ ├── __init__.py │ │ └── test_suite.py │ ├── task │ │ ├── __init__.py │ │ ├── test_ansible.py │ │ ├── test_ceph_ansible.py │ │ ├── test_console_log.py │ │ ├── test_install.py │ │ ├── test_internal.py │ │ ├── test_kernel.py │ │ ├── test_pcp.py │ │ └── test_selinux.py │ ├── test_config.py │ ├── test_contextutil.py │ ├── test_describe_tests.py │ ├── test_email_sleep_before_teardown.py │ ├── test_exit.py │ ├── test_get_distro.py │ ├── test_get_distro_version.py │ ├── test_get_multi_machine_types.py │ ├── test_imports.py │ ├── test_job_status.py │ ├── test_kill.py │ ├── test_ls.py │ ├── test_misc.py │ ├── test_packaging.py │ ├── test_parallel.py │ ├── test_repo_utils.py │ ├── test_report.py │ ├── test_results.py │ ├── test_run.py │ ├── test_safepath.py │ ├── test_schedule.py │ ├── test_scrape.py │ ├── test_timer.py │ └── test_vps_os_vers_parameter_checking.py ├── timer.py └── util │ ├── __init__.py │ ├── compat.py │ ├── flock.py │ ├── loggerfile.py │ ├── scanner.py │ ├── sentry.py │ ├── test │ ├── files │ │ ├── test_unit_test.xml │ │ └── test_valgrind.xml │ ├── test_scanner.py │ └── test_time.py │ └── time.py ├── tox.ini ├── update-requirements.sh └── watch-suite.sh /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | omit = */test/* 3 | -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @ceph/teuthology 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/dependencies.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.github/workflows/dependencies.yml -------------------------------------------------------------------------------- /.github/workflows/dev_container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.github/workflows/dev_container.yml -------------------------------------------------------------------------------- /.github/workflows/integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.github/workflows/integration.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/README.rst -------------------------------------------------------------------------------- /ansible.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/ansible.cfg -------------------------------------------------------------------------------- /beanstalk/alpine/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/beanstalk/alpine/Dockerfile -------------------------------------------------------------------------------- /bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/bootstrap -------------------------------------------------------------------------------- /containers/teuthology-dev/.teuthology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/containers/teuthology-dev/.teuthology.yaml -------------------------------------------------------------------------------- /containers/teuthology-dev/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/containers/teuthology-dev/Dockerfile -------------------------------------------------------------------------------- /containers/teuthology-dev/containerized_node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/containers/teuthology-dev/containerized_node.yaml -------------------------------------------------------------------------------- /containers/teuthology-dev/teuthology.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/containers/teuthology-dev/teuthology.sh -------------------------------------------------------------------------------- /docs/COMPONENTS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/COMPONENTS.rst -------------------------------------------------------------------------------- /docs/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/ChangeLog.rst -------------------------------------------------------------------------------- /docs/INSTALL.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/INSTALL.rst -------------------------------------------------------------------------------- /docs/LAB_SETUP.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/LAB_SETUP.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/_static/create_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_static/create_nodes.py -------------------------------------------------------------------------------- /docs/_static/nginx_paddles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_static/nginx_paddles -------------------------------------------------------------------------------- /docs/_static/nginx_pulpito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_static/nginx_pulpito -------------------------------------------------------------------------------- /docs/_static/nginx_test_logs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_static/nginx_test_logs -------------------------------------------------------------------------------- /docs/_static/worker_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_static/worker_start.sh -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Book.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Book.eot -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Book.svg -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Book.ttf -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Book.woff -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Medium.eot -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Medium.svg -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Medium.ttf -------------------------------------------------------------------------------- /docs/_themes/ceph/static/font/ApexSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/font/ApexSans-Medium.woff -------------------------------------------------------------------------------- /docs/_themes/ceph/static/nature.css_t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/static/nature.css_t -------------------------------------------------------------------------------- /docs/_themes/ceph/theme.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/_themes/ceph/theme.conf -------------------------------------------------------------------------------- /docs/cephlab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/cephlab.png -------------------------------------------------------------------------------- /docs/cephlab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/cephlab.svg -------------------------------------------------------------------------------- /docs/commands/list.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/list.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-describe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-describe.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-dispatcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-dispatcher.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-kill.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-kill.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-lock.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-lock.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-ls.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-ls.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-openstack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-openstack.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-prune-logs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-prune-logs.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-queue.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-queue.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-reimage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-reimage.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-report.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-report.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-results.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-results.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-schedule.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-schedule.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-suite.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-suite.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-update-inventory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-update-inventory.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-updatekeys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-updatekeys.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-wait.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-wait.rst -------------------------------------------------------------------------------- /docs/commands/teuthology-worker.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology-worker.rst -------------------------------------------------------------------------------- /docs/commands/teuthology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/commands/teuthology.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/detailed_test_config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/detailed_test_config.rst -------------------------------------------------------------------------------- /docs/docker-compose/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/README.md -------------------------------------------------------------------------------- /docs/docker-compose/db/01-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/db/01-init.sh -------------------------------------------------------------------------------- /docs/docker-compose/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/docker-compose.yml -------------------------------------------------------------------------------- /docs/docker-compose/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/start.sh -------------------------------------------------------------------------------- /docs/docker-compose/testnode/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/testnode/Dockerfile -------------------------------------------------------------------------------- /docs/docker-compose/testnode/testnode_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/testnode/testnode_start.sh -------------------------------------------------------------------------------- /docs/docker-compose/testnode/testnode_stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/testnode/testnode_stop.sh -------------------------------------------------------------------------------- /docs/docker-compose/testnode/testnode_sudoers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/testnode/testnode_sudoers -------------------------------------------------------------------------------- /docs/docker-compose/teuthology/.teuthology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/teuthology/.teuthology.yaml -------------------------------------------------------------------------------- /docs/docker-compose/teuthology/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/teuthology/Dockerfile -------------------------------------------------------------------------------- /docs/docker-compose/teuthology/containerized_node.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/teuthology/containerized_node.yaml -------------------------------------------------------------------------------- /docs/docker-compose/teuthology/teuthology.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/docker-compose/teuthology/teuthology.sh -------------------------------------------------------------------------------- /docs/downburst_vms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/downburst_vms.rst -------------------------------------------------------------------------------- /docs/exporter.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/exporter.rst -------------------------------------------------------------------------------- /docs/fragment_merging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/fragment_merging.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/intro_testers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/intro_testers.rst -------------------------------------------------------------------------------- /docs/laptop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/README.md -------------------------------------------------------------------------------- /docs/laptop/default-pool.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/default-pool.xml -------------------------------------------------------------------------------- /docs/laptop/front.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/front.xml -------------------------------------------------------------------------------- /docs/laptop/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/hosts -------------------------------------------------------------------------------- /docs/laptop/ssh_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/ssh_config -------------------------------------------------------------------------------- /docs/laptop/targets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/targets.sql -------------------------------------------------------------------------------- /docs/laptop/teuthology.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/laptop/teuthology.yaml -------------------------------------------------------------------------------- /docs/libcloud_backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/libcloud_backend.rst -------------------------------------------------------------------------------- /docs/openstack_backend.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/openstack_backend.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/siteconfig.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/docs/siteconfig.rst -------------------------------------------------------------------------------- /examples/3node_ceph.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/examples/3node_ceph.yaml -------------------------------------------------------------------------------- /examples/3node_rgw.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/examples/3node_rgw.yaml -------------------------------------------------------------------------------- /examples/parallel_example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/examples/parallel_example.yaml -------------------------------------------------------------------------------- /hammer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/hammer.sh -------------------------------------------------------------------------------- /openstack-delegate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/openstack-delegate.sh -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/requirements.yml -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/describe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/describe.py -------------------------------------------------------------------------------- /scripts/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/dispatcher.py -------------------------------------------------------------------------------- /scripts/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/exporter.py -------------------------------------------------------------------------------- /scripts/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/kill.py -------------------------------------------------------------------------------- /scripts/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/lock.py -------------------------------------------------------------------------------- /scripts/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/ls.py -------------------------------------------------------------------------------- /scripts/node_cleanup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/node_cleanup.py -------------------------------------------------------------------------------- /scripts/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/openstack.py -------------------------------------------------------------------------------- /scripts/prune_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/prune_logs.py -------------------------------------------------------------------------------- /scripts/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/queue.py -------------------------------------------------------------------------------- /scripts/reimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/reimage.py -------------------------------------------------------------------------------- /scripts/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/report.py -------------------------------------------------------------------------------- /scripts/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/results.py -------------------------------------------------------------------------------- /scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/run.py -------------------------------------------------------------------------------- /scripts/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/schedule.py -------------------------------------------------------------------------------- /scripts/suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/suite.py -------------------------------------------------------------------------------- /scripts/supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/supervisor.py -------------------------------------------------------------------------------- /scripts/test/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/script.py -------------------------------------------------------------------------------- /scripts/test/test_dispatcher_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_dispatcher_.py -------------------------------------------------------------------------------- /scripts/test/test_exporter_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_exporter_.py -------------------------------------------------------------------------------- /scripts/test/test_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_lock.py -------------------------------------------------------------------------------- /scripts/test/test_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_ls.py -------------------------------------------------------------------------------- /scripts/test/test_prune_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_prune_logs.py -------------------------------------------------------------------------------- /scripts/test/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_report.py -------------------------------------------------------------------------------- /scripts/test/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_results.py -------------------------------------------------------------------------------- /scripts/test/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_run.py -------------------------------------------------------------------------------- /scripts/test/test_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_schedule.py -------------------------------------------------------------------------------- /scripts/test/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_suite.py -------------------------------------------------------------------------------- /scripts/test/test_supervisor_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_supervisor_.py -------------------------------------------------------------------------------- /scripts/test/test_updatekeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/test/test_updatekeys.py -------------------------------------------------------------------------------- /scripts/update_inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/update_inventory.py -------------------------------------------------------------------------------- /scripts/updatekeys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/updatekeys.py -------------------------------------------------------------------------------- /scripts/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/scripts/wait.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/setup.cfg -------------------------------------------------------------------------------- /systemd/teuthology-dispatcher@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/systemd/teuthology-dispatcher@.service -------------------------------------------------------------------------------- /systemd/teuthology-exporter.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/systemd/teuthology-exporter.service -------------------------------------------------------------------------------- /teuthology/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/__init__.py -------------------------------------------------------------------------------- /teuthology/beanstalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/beanstalk.py -------------------------------------------------------------------------------- /teuthology/ceph.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/ceph.conf.template -------------------------------------------------------------------------------- /teuthology/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/config.py -------------------------------------------------------------------------------- /teuthology/contextutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/contextutil.py -------------------------------------------------------------------------------- /teuthology/describe_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/describe_tests.py -------------------------------------------------------------------------------- /teuthology/dispatcher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/dispatcher/__init__.py -------------------------------------------------------------------------------- /teuthology/dispatcher/supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/dispatcher/supervisor.py -------------------------------------------------------------------------------- /teuthology/dispatcher/test/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/dispatcher/test/test_dispatcher.py -------------------------------------------------------------------------------- /teuthology/dispatcher/test/test_reimage_error_mark_machine_down.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/dispatcher/test/test_reimage_error_mark_machine_down.py -------------------------------------------------------------------------------- /teuthology/dispatcher/test/test_supervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/dispatcher/test/test_supervisor.py -------------------------------------------------------------------------------- /teuthology/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/exceptions.py -------------------------------------------------------------------------------- /teuthology/exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/exit.py -------------------------------------------------------------------------------- /teuthology/exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/exporter.py -------------------------------------------------------------------------------- /teuthology/job_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/job_status.py -------------------------------------------------------------------------------- /teuthology/kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/kill.py -------------------------------------------------------------------------------- /teuthology/lock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/lock/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/lock/cli.py -------------------------------------------------------------------------------- /teuthology/lock/ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/lock/ops.py -------------------------------------------------------------------------------- /teuthology/lock/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/lock/query.py -------------------------------------------------------------------------------- /teuthology/lock/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/lock/test/test_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/lock/test/test_lock.py -------------------------------------------------------------------------------- /teuthology/lock/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/lock/util.py -------------------------------------------------------------------------------- /teuthology/ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/ls.py -------------------------------------------------------------------------------- /teuthology/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/misc.py -------------------------------------------------------------------------------- /teuthology/nuke/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/nuke/__init__.py -------------------------------------------------------------------------------- /teuthology/openstack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/__init__.py -------------------------------------------------------------------------------- /teuthology/openstack/archive-key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/archive-key -------------------------------------------------------------------------------- /teuthology/openstack/archive-key.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/archive-key.pub -------------------------------------------------------------------------------- /teuthology/openstack/bootstrap-teuthology.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/bootstrap-teuthology.sh -------------------------------------------------------------------------------- /teuthology/openstack/openstack-basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-basic.yaml -------------------------------------------------------------------------------- /teuthology/openstack/openstack-buildpackages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-buildpackages.yaml -------------------------------------------------------------------------------- /teuthology/openstack/openstack-centos-6.5-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-centos-6.5-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-centos-7.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-centos-7.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-centos-7.1-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-centos-7.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-centos-7.2-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-centos-7.2-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-centos-7.3-user-data.txt: -------------------------------------------------------------------------------- 1 | openstack-centos-7.2-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-centos-9.stream-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-centos-9.stream-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-debian-7.0-user-data.txt: -------------------------------------------------------------------------------- 1 | openstack-ubuntu-14.04-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-debian-8.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-debian-8.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-opensuse-15.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-opensuse-15.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-opensuse-15.1-user-data.txt: -------------------------------------------------------------------------------- 1 | openstack-opensuse-15.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-opensuse-42.1-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-opensuse-42.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-opensuse-42.2-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-opensuse-42.2-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-opensuse-42.3-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-opensuse-42.3-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-sle-12.1-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-sle-12.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-sle-12.2-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-sle-12.2-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-sle-12.3-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-sle-12.3-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-sle-15.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-sle-15.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-sle-15.1-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-sle-15.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-teuthology.cron: -------------------------------------------------------------------------------- 1 | SHELL=/bin/bash 2 | -------------------------------------------------------------------------------- /teuthology/openstack/openstack-teuthology.init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-teuthology.init -------------------------------------------------------------------------------- /teuthology/openstack/openstack-ubuntu-12.04-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-ubuntu-12.04-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-ubuntu-14.04-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-ubuntu-14.04-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-ubuntu-16.04-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-ubuntu-16.04-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/openstack-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/openstack-user-data.txt -------------------------------------------------------------------------------- /teuthology/openstack/setup-openstack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/setup-openstack.sh -------------------------------------------------------------------------------- /teuthology/openstack/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/openstack/test/archive-on-error.yaml: -------------------------------------------------------------------------------- 1 | archive-on-error: true 2 | -------------------------------------------------------------------------------- /teuthology/openstack/test/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/noop.yaml -------------------------------------------------------------------------------- /teuthology/openstack/test/openstack-integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/openstack-integration.py -------------------------------------------------------------------------------- /teuthology/openstack/test/resources_hint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/resources_hint.yaml -------------------------------------------------------------------------------- /teuthology/openstack/test/resources_hint_no_cinder.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/resources_hint_no_cinder.yaml -------------------------------------------------------------------------------- /teuthology/openstack/test/stop_worker.yaml: -------------------------------------------------------------------------------- 1 | stop_worker: true 2 | -------------------------------------------------------------------------------- /teuthology/openstack/test/suites/noop/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/openstack/test/suites/noop/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/suites/noop/noop.yaml -------------------------------------------------------------------------------- /teuthology/openstack/test/suites/nuke/+: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/openstack/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/test_config.py -------------------------------------------------------------------------------- /teuthology/openstack/test/test_openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/test_openstack.py -------------------------------------------------------------------------------- /teuthology/openstack/test/user-data-test1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/openstack/test/user-data-test1.txt -------------------------------------------------------------------------------- /teuthology/orchestra/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/orchestra/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/cluster.py -------------------------------------------------------------------------------- /teuthology/orchestra/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/connection.py -------------------------------------------------------------------------------- /teuthology/orchestra/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/console.py -------------------------------------------------------------------------------- /teuthology/orchestra/daemon/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/daemon/__init__.py -------------------------------------------------------------------------------- /teuthology/orchestra/daemon/cephadmunit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/daemon/cephadmunit.py -------------------------------------------------------------------------------- /teuthology/orchestra/daemon/group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/daemon/group.py -------------------------------------------------------------------------------- /teuthology/orchestra/daemon/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/daemon/state.py -------------------------------------------------------------------------------- /teuthology/orchestra/daemon/systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/daemon/systemd.py -------------------------------------------------------------------------------- /teuthology/orchestra/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/monkey.py -------------------------------------------------------------------------------- /teuthology/orchestra/opsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/opsys.py -------------------------------------------------------------------------------- /teuthology/orchestra/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/remote.py -------------------------------------------------------------------------------- /teuthology/orchestra/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/run.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/orchestra/test/files/daemon-systemdstate-pid-ps-ef.output: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/files/daemon-systemdstate-pid-ps-ef.output -------------------------------------------------------------------------------- /teuthology/orchestra/test/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/orchestra/test/integration/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/integration/test_integration.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_cluster.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_connection.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_console.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_opsys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_opsys.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_remote.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_run.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/test_systemd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/test_systemd.py -------------------------------------------------------------------------------- /teuthology/orchestra/test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/orchestra/test/util.py -------------------------------------------------------------------------------- /teuthology/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/packaging.py -------------------------------------------------------------------------------- /teuthology/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/parallel.py -------------------------------------------------------------------------------- /teuthology/provision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/__init__.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/__init__.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/base.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/openstack.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/test/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/test/test_base.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/test/test_cloud_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/test/test_cloud_init.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/test/test_cloud_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/test/test_cloud_util.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/test/test_openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/test/test_openstack.py -------------------------------------------------------------------------------- /teuthology/provision/cloud/test/test_openstack_userdata_conf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/test/test_openstack_userdata_conf.yaml -------------------------------------------------------------------------------- /teuthology/provision/cloud/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/cloud/util.py -------------------------------------------------------------------------------- /teuthology/provision/downburst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/downburst.py -------------------------------------------------------------------------------- /teuthology/provision/fog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/fog.py -------------------------------------------------------------------------------- /teuthology/provision/openstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/openstack.py -------------------------------------------------------------------------------- /teuthology/provision/pelagos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/pelagos.py -------------------------------------------------------------------------------- /teuthology/provision/test/test_downburst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/test/test_downburst.py -------------------------------------------------------------------------------- /teuthology/provision/test/test_fog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/test/test_fog.py -------------------------------------------------------------------------------- /teuthology/provision/test/test_init_provision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/test/test_init_provision.py -------------------------------------------------------------------------------- /teuthology/provision/test/test_pelagos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/provision/test/test_pelagos.py -------------------------------------------------------------------------------- /teuthology/prune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/prune.py -------------------------------------------------------------------------------- /teuthology/reimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/reimage.py -------------------------------------------------------------------------------- /teuthology/repo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/repo_utils.py -------------------------------------------------------------------------------- /teuthology/report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/report.py -------------------------------------------------------------------------------- /teuthology/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/results.py -------------------------------------------------------------------------------- /teuthology/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/run.py -------------------------------------------------------------------------------- /teuthology/run_tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/run_tasks.py -------------------------------------------------------------------------------- /teuthology/safepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/safepath.py -------------------------------------------------------------------------------- /teuthology/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/schedule.py -------------------------------------------------------------------------------- /teuthology/scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/scrape.py -------------------------------------------------------------------------------- /teuthology/suite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/__init__.py -------------------------------------------------------------------------------- /teuthology/suite/build_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/build_matrix.py -------------------------------------------------------------------------------- /teuthology/suite/fragment-merge.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/fragment-merge.lua -------------------------------------------------------------------------------- /teuthology/suite/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/matrix.py -------------------------------------------------------------------------------- /teuthology/suite/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/merge.py -------------------------------------------------------------------------------- /teuthology/suite/placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/placeholder.py -------------------------------------------------------------------------------- /teuthology/suite/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/run.py -------------------------------------------------------------------------------- /teuthology/suite/test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/conftest.py -------------------------------------------------------------------------------- /teuthology/suite/test/suites/noop/noop.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/suites/noop/noop.yaml -------------------------------------------------------------------------------- /teuthology/suite/test/test_build_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_build_matrix.py -------------------------------------------------------------------------------- /teuthology/suite/test/test_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_init.py -------------------------------------------------------------------------------- /teuthology/suite/test/test_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_matrix.py -------------------------------------------------------------------------------- /teuthology/suite/test/test_merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_merge.py -------------------------------------------------------------------------------- /teuthology/suite/test/test_placeholder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_placeholder.py -------------------------------------------------------------------------------- /teuthology/suite/test/test_run_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_run_.py -------------------------------------------------------------------------------- /teuthology/suite/test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/test/test_util.py -------------------------------------------------------------------------------- /teuthology/suite/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/suite/util.py -------------------------------------------------------------------------------- /teuthology/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/__init__.py -------------------------------------------------------------------------------- /teuthology/task/ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/ansible.py -------------------------------------------------------------------------------- /teuthology/task/args.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/args.py -------------------------------------------------------------------------------- /teuthology/task/background_exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/background_exec.py -------------------------------------------------------------------------------- /teuthology/task/buildpackages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages.py -------------------------------------------------------------------------------- /teuthology/task/buildpackages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/Makefile -------------------------------------------------------------------------------- /teuthology/task/buildpackages/centos-6.5-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/centos-6.5-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/centos-7.0-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/centos-7.1-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/centos-7.2-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/centos-7.3-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/common.sh -------------------------------------------------------------------------------- /teuthology/task/buildpackages/debian-8.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/debian-8.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/make-deb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/make-deb.sh -------------------------------------------------------------------------------- /teuthology/task/buildpackages/make-rpm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/make-rpm.sh -------------------------------------------------------------------------------- /teuthology/task/buildpackages/opensuse-15.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/opensuse-15.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/opensuse-42.1-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/opensuse-42.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/opensuse-42.2-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/opensuse-42.2-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/opensuse-42.3-user-data.txt: -------------------------------------------------------------------------------- 1 | opensuse-42.2-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/sle-12.1-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/sle-12.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/sle-12.2-user-data.txt: -------------------------------------------------------------------------------- 1 | sle-12.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/sle-12.3-user-data.txt: -------------------------------------------------------------------------------- 1 | sle-12.1-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/sle-15.0-user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/sle-15.0-user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/ubuntu-12.04-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/ubuntu-14.04-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/ubuntu-16.04-user-data.txt: -------------------------------------------------------------------------------- 1 | user-data.txt -------------------------------------------------------------------------------- /teuthology/task/buildpackages/user-data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/buildpackages/user-data.txt -------------------------------------------------------------------------------- /teuthology/task/ceph_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/ceph_ansible.py -------------------------------------------------------------------------------- /teuthology/task/cephmetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/cephmetrics.py -------------------------------------------------------------------------------- /teuthology/task/clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/clock.py -------------------------------------------------------------------------------- /teuthology/task/common_fs_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/common_fs_utils.py -------------------------------------------------------------------------------- /teuthology/task/console_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/console_log.py -------------------------------------------------------------------------------- /teuthology/task/dump_ctx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/dump_ctx.py -------------------------------------------------------------------------------- /teuthology/task/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/exec.py -------------------------------------------------------------------------------- /teuthology/task/full_sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/full_sequential.py -------------------------------------------------------------------------------- /teuthology/task/full_sequential_finally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/full_sequential_finally.py -------------------------------------------------------------------------------- /teuthology/task/hadoop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/hadoop.py -------------------------------------------------------------------------------- /teuthology/task/install/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/__init__.py -------------------------------------------------------------------------------- /teuthology/task/install/bin/adjust-ulimits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/bin/adjust-ulimits -------------------------------------------------------------------------------- /teuthology/task/install/bin/daemon-helper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/bin/daemon-helper -------------------------------------------------------------------------------- /teuthology/task/install/bin/stdin-killer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/bin/stdin-killer -------------------------------------------------------------------------------- /teuthology/task/install/deb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/deb.py -------------------------------------------------------------------------------- /teuthology/task/install/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/packages.yaml -------------------------------------------------------------------------------- /teuthology/task/install/redhat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/redhat.py -------------------------------------------------------------------------------- /teuthology/task/install/rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/rpm.py -------------------------------------------------------------------------------- /teuthology/task/install/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/install/util.py -------------------------------------------------------------------------------- /teuthology/task/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/interactive.py -------------------------------------------------------------------------------- /teuthology/task/internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/__init__.py -------------------------------------------------------------------------------- /teuthology/task/internal/check_lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/check_lock.py -------------------------------------------------------------------------------- /teuthology/task/internal/edit_sudoers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/edit_sudoers.sh -------------------------------------------------------------------------------- /teuthology/task/internal/git_ignore_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/git_ignore_ssl.py -------------------------------------------------------------------------------- /teuthology/task/internal/lock_machines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/lock_machines.py -------------------------------------------------------------------------------- /teuthology/task/internal/redhat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/redhat.py -------------------------------------------------------------------------------- /teuthology/task/internal/syslog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/syslog.py -------------------------------------------------------------------------------- /teuthology/task/internal/vm_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/internal/vm_setup.py -------------------------------------------------------------------------------- /teuthology/task/iscsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/iscsi.py -------------------------------------------------------------------------------- /teuthology/task/kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/kernel.py -------------------------------------------------------------------------------- /teuthology/task/knfsd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/knfsd.py -------------------------------------------------------------------------------- /teuthology/task/localdir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/localdir.py -------------------------------------------------------------------------------- /teuthology/task/lockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/lockfile.py -------------------------------------------------------------------------------- /teuthology/task/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/loop.py -------------------------------------------------------------------------------- /teuthology/task/mpi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/mpi.py -------------------------------------------------------------------------------- /teuthology/task/nfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/nfs.py -------------------------------------------------------------------------------- /teuthology/task/nop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/nop.py -------------------------------------------------------------------------------- /teuthology/task/parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/parallel.py -------------------------------------------------------------------------------- /teuthology/task/parallel_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/parallel_example.py -------------------------------------------------------------------------------- /teuthology/task/pcp.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/pcp.j2 -------------------------------------------------------------------------------- /teuthology/task/pcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/pcp.py -------------------------------------------------------------------------------- /teuthology/task/pexec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/pexec.py -------------------------------------------------------------------------------- /teuthology/task/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/print.py -------------------------------------------------------------------------------- /teuthology/task/proc_thrasher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/proc_thrasher.py -------------------------------------------------------------------------------- /teuthology/task/selinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/selinux.py -------------------------------------------------------------------------------- /teuthology/task/sequential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/sequential.py -------------------------------------------------------------------------------- /teuthology/task/sleep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/sleep.py -------------------------------------------------------------------------------- /teuthology/task/ssh_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/ssh_keys.py -------------------------------------------------------------------------------- /teuthology/task/tasktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/tasktest.py -------------------------------------------------------------------------------- /teuthology/task/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/tests/__init__.py -------------------------------------------------------------------------------- /teuthology/task/tests/test_fetch_coredumps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/tests/test_fetch_coredumps.py -------------------------------------------------------------------------------- /teuthology/task/tests/test_locking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/tests/test_locking.py -------------------------------------------------------------------------------- /teuthology/task/tests/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/tests/test_run.py -------------------------------------------------------------------------------- /teuthology/task/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/task/timer.py -------------------------------------------------------------------------------- /teuthology/templates/email-sleep-before-teardown.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/templates/email-sleep-before-teardown.jinja2 -------------------------------------------------------------------------------- /teuthology/templates/rocketchat-sleep-before-teardown.jinja2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/templates/rocketchat-sleep-before-teardown.jinja2 -------------------------------------------------------------------------------- /teuthology/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/__init__.py -------------------------------------------------------------------------------- /teuthology/test/fake_archive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/fake_archive.py -------------------------------------------------------------------------------- /teuthology/test/fake_fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/fake_fs.py -------------------------------------------------------------------------------- /teuthology/test/integration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/test/integration/test_suite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/integration/test_suite.py -------------------------------------------------------------------------------- /teuthology/test/task/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/__init__.py -------------------------------------------------------------------------------- /teuthology/test/task/test_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_ansible.py -------------------------------------------------------------------------------- /teuthology/test/task/test_ceph_ansible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_ceph_ansible.py -------------------------------------------------------------------------------- /teuthology/test/task/test_console_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_console_log.py -------------------------------------------------------------------------------- /teuthology/test/task/test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_install.py -------------------------------------------------------------------------------- /teuthology/test/task/test_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_internal.py -------------------------------------------------------------------------------- /teuthology/test/task/test_kernel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_kernel.py -------------------------------------------------------------------------------- /teuthology/test/task/test_pcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_pcp.py -------------------------------------------------------------------------------- /teuthology/test/task/test_selinux.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/task/test_selinux.py -------------------------------------------------------------------------------- /teuthology/test/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_config.py -------------------------------------------------------------------------------- /teuthology/test/test_contextutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_contextutil.py -------------------------------------------------------------------------------- /teuthology/test/test_describe_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_describe_tests.py -------------------------------------------------------------------------------- /teuthology/test/test_email_sleep_before_teardown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_email_sleep_before_teardown.py -------------------------------------------------------------------------------- /teuthology/test/test_exit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_exit.py -------------------------------------------------------------------------------- /teuthology/test/test_get_distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_get_distro.py -------------------------------------------------------------------------------- /teuthology/test/test_get_distro_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_get_distro_version.py -------------------------------------------------------------------------------- /teuthology/test/test_get_multi_machine_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_get_multi_machine_types.py -------------------------------------------------------------------------------- /teuthology/test/test_imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_imports.py -------------------------------------------------------------------------------- /teuthology/test/test_job_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_job_status.py -------------------------------------------------------------------------------- /teuthology/test/test_kill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_kill.py -------------------------------------------------------------------------------- /teuthology/test/test_ls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_ls.py -------------------------------------------------------------------------------- /teuthology/test/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_misc.py -------------------------------------------------------------------------------- /teuthology/test/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_packaging.py -------------------------------------------------------------------------------- /teuthology/test/test_parallel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_parallel.py -------------------------------------------------------------------------------- /teuthology/test/test_repo_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_repo_utils.py -------------------------------------------------------------------------------- /teuthology/test/test_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_report.py -------------------------------------------------------------------------------- /teuthology/test/test_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_results.py -------------------------------------------------------------------------------- /teuthology/test/test_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_run.py -------------------------------------------------------------------------------- /teuthology/test/test_safepath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_safepath.py -------------------------------------------------------------------------------- /teuthology/test/test_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_schedule.py -------------------------------------------------------------------------------- /teuthology/test/test_scrape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_scrape.py -------------------------------------------------------------------------------- /teuthology/test/test_timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_timer.py -------------------------------------------------------------------------------- /teuthology/test/test_vps_os_vers_parameter_checking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/test/test_vps_os_vers_parameter_checking.py -------------------------------------------------------------------------------- /teuthology/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/timer.py -------------------------------------------------------------------------------- /teuthology/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /teuthology/util/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/compat.py -------------------------------------------------------------------------------- /teuthology/util/flock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/flock.py -------------------------------------------------------------------------------- /teuthology/util/loggerfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/loggerfile.py -------------------------------------------------------------------------------- /teuthology/util/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/scanner.py -------------------------------------------------------------------------------- /teuthology/util/sentry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/sentry.py -------------------------------------------------------------------------------- /teuthology/util/test/files/test_unit_test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/test/files/test_unit_test.xml -------------------------------------------------------------------------------- /teuthology/util/test/files/test_valgrind.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/test/files/test_valgrind.xml -------------------------------------------------------------------------------- /teuthology/util/test/test_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/test/test_scanner.py -------------------------------------------------------------------------------- /teuthology/util/test/test_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/test/test_time.py -------------------------------------------------------------------------------- /teuthology/util/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/teuthology/util/time.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/tox.ini -------------------------------------------------------------------------------- /update-requirements.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | pip-compile --extra=test $@ pyproject.toml 4 | -------------------------------------------------------------------------------- /watch-suite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ceph/teuthology/HEAD/watch-suite.sh --------------------------------------------------------------------------------