2024-08-22T22:59:16.109 INFO:root:teuthology version: 1.2.0 2024-08-22T22:59:16.127 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-08-22T22:59:16.211 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243 branch: reef description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} email: ceph-qa@ceph.com first_in_suite: false job_id: '7862243' kernel: kdb: 1 sha1: distro last_in_suite: false machine_type: smithi name: teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: reef ceph: conf: global: mon election default strategy: 3 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: true mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) - MON_DOWN - mons down - mon down - out of quorum - CEPHADM_STRAY_HOST - CEPHADM_STRAY_DAEMON - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 56fd5b351507f92fd1531bbfb42df967f9fbe713 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 56fd5b351507f92fd1531bbfb42df967f9fbe713 selinux: whitelist: - scontext=system_u:system_r:logrotate_t:s0 workunit: branch: reef sha1: e8fe7fc94b78e59becfc678546edf1d806193a2a owner: scheduled_teuthology@teuthology priority: 930 repo: https://git.ceph.com/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 3258 sha1: 56fd5b351507f92fd1531bbfb42df967f9fbe713 sleep_before_teardown: 0 subset: 12/64 suite: orch suite_branch: reef suite_path: /home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph.git suite_sha1: e8fe7fc94b78e59becfc678546edf1d806193a2a targets: smithi131.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMKo03psDL8j8YZLn5CVLoONKSyww5X9DKEL1HF7Kw8XF8tz3SzF6d3jXvuDAR6TLh8Bofgw7fBTAzZRJizv8Cg= smithi144.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKbIvwFQghbKP4W5oA+t5oqrEHZAevZRV4NUegkIHRajSsDvQN03vKCgMhK5yE1clPJKpLnXOsx2+3qCUYHUBjM= smithi160.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPQTDS5R4z/6gIlOtAjammsw42v3Ifu9w/eG8twuy17KOWhspXp071l1nxpq1NgfrgiUM2HELRUrzgidSbGoZHU= tasks: - pexec: all: - sudo dnf install runc nvmetcli nvme-cli -y - sudo sed -i 's/^#runtime = "crun"/runtime = "runc"/g' /usr/share/containers/containers.conf - sudo sed -i 's/runtime = "crun"/#runtime = "crun"/g' /usr/share/containers/containers.conf - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: 67db276914d29505c9707d04f3a3b8fb9d8aee4b timestamp: 2024-08-19_22:08:05 tube: smithi user: teuthology verbose: false worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.3401856 2024-08-22T22:59:16.211 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa; will attempt to use it 2024-08-22T22:59:16.212 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks 2024-08-22T22:59:16.212 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-08-22T22:59:16.214 INFO:teuthology.task.internal:Checking packages... 2024-08-22T22:59:16.236 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '56fd5b351507f92fd1531bbfb42df967f9fbe713' 2024-08-22T22:59:16.237 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-08-22T22:59:16.237 INFO:teuthology.packaging:ref: None 2024-08-22T22:59:16.237 INFO:teuthology.packaging:tag: None 2024-08-22T22:59:16.237 INFO:teuthology.packaging:branch: reef 2024-08-22T22:59:16.237 INFO:teuthology.packaging:sha1: 56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T22:59:16.237 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=reef 2024-08-22T22:59:16.547 INFO:teuthology.task.internal:Found packages for ceph version 18.2.4-756.g279f5cea 2024-08-22T22:59:16.549 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-08-22T22:59:16.555 INFO:teuthology.task.internal:no buildpackages task found 2024-08-22T22:59:16.555 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-08-22T22:59:16.599 INFO:teuthology.task.internal:Saving configuration 2024-08-22T22:59:16.612 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-08-22T22:59:16.624 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-08-22T22:59:16.651 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi131.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-08-22 22:54:15.869037', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBMKo03psDL8j8YZLn5CVLoONKSyww5X9DKEL1HF7Kw8XF8tz3SzF6d3jXvuDAR6TLh8Bofgw7fBTAzZRJizv8Cg='} 2024-08-22T22:59:16.671 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi144.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-08-22 22:54:15.866838', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBKbIvwFQghbKP4W5oA+t5oqrEHZAevZRV4NUegkIHRajSsDvQN03vKCgMhK5yE1clPJKpLnXOsx2+3qCUYHUBjM='} 2024-08-22T22:59:16.694 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi160.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-08-22 22:54:15.864901', 'locked_by': 'scheduled_teuthology@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBPQTDS5R4z/6gIlOtAjammsw42v3Ifu9w/eG8twuy17KOWhspXp071l1nxpq1NgfrgiUM2HELRUrzgidSbGoZHU='} 2024-08-22T22:59:16.694 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-08-22T22:59:16.700 INFO:teuthology.task.internal:roles: ubuntu@smithi131.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2024-08-22T22:59:16.700 INFO:teuthology.task.internal:roles: ubuntu@smithi144.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2024-08-22T22:59:16.701 INFO:teuthology.task.internal:roles: ubuntu@smithi160.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2024-08-22T22:59:16.701 INFO:teuthology.run_tasks:Running task console_log... 2024-08-22T22:59:16.826 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fd80b17fac0>, signals=[15]) 2024-08-22T22:59:16.826 INFO:teuthology.run_tasks:Running task internal.connect... 2024-08-22T22:59:16.833 INFO:teuthology.task.internal:Opening connections... 2024-08-22T22:59:16.833 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi131.front.sepia.ceph.com 2024-08-22T22:59:16.834 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi131.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-22T22:59:16.917 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi144.front.sepia.ceph.com 2024-08-22T22:59:16.917 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-22T22:59:16.990 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi160.front.sepia.ceph.com 2024-08-22T22:59:16.991 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-22T22:59:17.066 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-08-22T22:59:17.073 DEBUG:teuthology.orchestra.run.smithi131:> uname -m 2024-08-22T22:59:17.091 INFO:teuthology.orchestra.run.smithi131.stdout:x86_64 2024-08-22T22:59:17.092 DEBUG:teuthology.orchestra.run.smithi131:> cat /etc/os-release 2024-08-22T22:59:17.149 INFO:teuthology.orchestra.run.smithi131.stdout:NAME="CentOS Stream" 2024-08-22T22:59:17.149 INFO:teuthology.orchestra.run.smithi131.stdout:VERSION="9" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:ID="centos" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:ID_LIKE="rhel fedora" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:VERSION_ID="9" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:PLATFORM_ID="platform:el9" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:PRETTY_NAME="CentOS Stream 9" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:ANSI_COLOR="0;31" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:LOGO="fedora-logo-icon" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:HOME_URL="https://centos.org/" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-08-22T22:59:17.150 INFO:teuthology.orchestra.run.smithi131.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-08-22T22:59:17.151 INFO:teuthology.lock.ops:Updating smithi131.front.sepia.ceph.com on lock server 2024-08-22T22:59:17.171 DEBUG:teuthology.orchestra.run.smithi144:> uname -m 2024-08-22T22:59:17.190 INFO:teuthology.orchestra.run.smithi144.stdout:x86_64 2024-08-22T22:59:17.190 DEBUG:teuthology.orchestra.run.smithi144:> cat /etc/os-release 2024-08-22T22:59:17.249 INFO:teuthology.orchestra.run.smithi144.stdout:NAME="CentOS Stream" 2024-08-22T22:59:17.249 INFO:teuthology.orchestra.run.smithi144.stdout:VERSION="9" 2024-08-22T22:59:17.249 INFO:teuthology.orchestra.run.smithi144.stdout:ID="centos" 2024-08-22T22:59:17.250 INFO:teuthology.orchestra.run.smithi144.stdout:ID_LIKE="rhel fedora" 2024-08-22T22:59:17.250 INFO:teuthology.orchestra.run.smithi144.stdout:VERSION_ID="9" 2024-08-22T22:59:17.250 INFO:teuthology.orchestra.run.smithi144.stdout:PLATFORM_ID="platform:el9" 2024-08-22T22:59:17.250 INFO:teuthology.orchestra.run.smithi144.stdout:PRETTY_NAME="CentOS Stream 9" 2024-08-22T22:59:17.250 INFO:teuthology.orchestra.run.smithi144.stdout:ANSI_COLOR="0;31" 2024-08-22T22:59:17.251 INFO:teuthology.orchestra.run.smithi144.stdout:LOGO="fedora-logo-icon" 2024-08-22T22:59:17.251 INFO:teuthology.orchestra.run.smithi144.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-08-22T22:59:17.251 INFO:teuthology.orchestra.run.smithi144.stdout:HOME_URL="https://centos.org/" 2024-08-22T22:59:17.251 INFO:teuthology.orchestra.run.smithi144.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-08-22T22:59:17.251 INFO:teuthology.orchestra.run.smithi144.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-08-22T22:59:17.252 INFO:teuthology.orchestra.run.smithi144.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-08-22T22:59:17.252 INFO:teuthology.lock.ops:Updating smithi144.front.sepia.ceph.com on lock server 2024-08-22T22:59:17.270 DEBUG:teuthology.orchestra.run.smithi160:> uname -m 2024-08-22T22:59:17.289 INFO:teuthology.orchestra.run.smithi160.stdout:x86_64 2024-08-22T22:59:17.290 DEBUG:teuthology.orchestra.run.smithi160:> cat /etc/os-release 2024-08-22T22:59:17.347 INFO:teuthology.orchestra.run.smithi160.stdout:NAME="CentOS Stream" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION="9" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:ID="centos" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:ID_LIKE="rhel fedora" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:VERSION_ID="9" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:PLATFORM_ID="platform:el9" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:PRETTY_NAME="CentOS Stream 9" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:ANSI_COLOR="0;31" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:LOGO="fedora-logo-icon" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:HOME_URL="https://centos.org/" 2024-08-22T22:59:17.348 INFO:teuthology.orchestra.run.smithi160.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2024-08-22T22:59:17.349 INFO:teuthology.orchestra.run.smithi160.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2024-08-22T22:59:17.349 INFO:teuthology.orchestra.run.smithi160.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2024-08-22T22:59:17.349 INFO:teuthology.lock.ops:Updating smithi160.front.sepia.ceph.com on lock server 2024-08-22T22:59:17.371 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-08-22T22:59:17.379 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-08-22T22:59:17.399 INFO:teuthology.task.internal:Checking for old test directory... 2024-08-22T22:59:17.399 DEBUG:teuthology.orchestra.run.smithi131:> test '!' -e /home/ubuntu/cephtest 2024-08-22T22:59:17.402 DEBUG:teuthology.orchestra.run.smithi144:> test '!' -e /home/ubuntu/cephtest 2024-08-22T22:59:17.404 DEBUG:teuthology.orchestra.run.smithi160:> test '!' -e /home/ubuntu/cephtest 2024-08-22T22:59:17.421 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-08-22T22:59:17.427 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-08-22T22:59:17.428 DEBUG:teuthology.orchestra.run.smithi131:> test -z $(ls -A /var/lib/ceph) 2024-08-22T22:59:17.460 DEBUG:teuthology.orchestra.run.smithi144:> test -z $(ls -A /var/lib/ceph) 2024-08-22T22:59:17.462 DEBUG:teuthology.orchestra.run.smithi160:> test -z $(ls -A /var/lib/ceph) 2024-08-22T22:59:17.486 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-08-22T22:59:17.560 INFO:teuthology.run_tasks:Running task kernel... 2024-08-22T22:59:17.576 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-08-22T22:59:17.576 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}, 'host.c': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-08-22T22:59:17.576 DEBUG:teuthology.orchestra.run.smithi131:> test -f /run/.containerenv -o -f /.dockerenv 2024-08-22T22:59:17.578 DEBUG:teuthology.orchestra.run.smithi144:> test -f /run/.containerenv -o -f /.dockerenv 2024-08-22T22:59:17.578 DEBUG:teuthology.orchestra.run.smithi160:> test -f /run/.containerenv -o -f /.dockerenv 2024-08-22T22:59:17.596 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T22:59:17.596 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T22:59:17.596 DEBUG:teuthology.orchestra.run.smithi160:> uname -r 2024-08-22T22:59:17.597 DEBUG:teuthology.orchestra.run.smithi144:> uname -r 2024-08-22T22:59:17.598 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T22:59:17.598 DEBUG:teuthology.orchestra.run.smithi131:> uname -r 2024-08-22T22:59:17.653 INFO:teuthology.orchestra.run.smithi160.stdout:5.14.0-496.el9.x86_64 2024-08-22T22:59:17.654 INFO:teuthology.task.kernel:Running kernel on smithi160: 5.14.0-496.el9.x86_64 2024-08-22T22:59:17.654 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum install -y kernel 2024-08-22T22:59:17.655 INFO:teuthology.orchestra.run.smithi144.stdout:5.14.0-496.el9.x86_64 2024-08-22T22:59:17.655 INFO:teuthology.task.kernel:Running kernel on smithi144: 5.14.0-496.el9.x86_64 2024-08-22T22:59:17.655 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum install -y kernel 2024-08-22T22:59:17.656 INFO:teuthology.orchestra.run.smithi131.stdout:5.14.0-496.el9.x86_64 2024-08-22T22:59:17.656 INFO:teuthology.task.kernel:Running kernel on smithi131: 5.14.0-496.el9.x86_64 2024-08-22T22:59:17.657 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum install -y kernel 2024-08-22T22:59:21.152 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - BaseOS 5.0 MB/s | 8.2 MB 00:01 2024-08-22T22:59:21.327 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.2 MB 00:01 2024-08-22T22:59:21.362 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - BaseOS 4.3 MB/s | 8.2 MB 00:01 2024-08-22T22:59:23.103 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - AppStream 29 MB/s | 20 MB 00:00 2024-08-22T22:59:24.278 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - AppStream 9.8 MB/s | 20 MB 00:02 2024-08-22T22:59:24.363 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - AppStream 11 MB/s | 20 MB 00:01 2024-08-22T22:59:28.572 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - CRB 17 MB/s | 6.6 MB 00:00 2024-08-22T22:59:30.212 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - CRB 2.0 MB/s | 6.6 MB 00:03 2024-08-22T22:59:30.347 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - Extras packages 42 kB/s | 18 kB 00:00 2024-08-22T22:59:31.435 INFO:teuthology.orchestra.run.smithi131.stdout:Extra Packages for Enterprise Linux 23 MB/s | 22 MB 00:00 2024-08-22T22:59:31.778 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - CRB 1.7 MB/s | 6.6 MB 00:03 2024-08-22T22:59:32.487 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - Extras packages 18 kB/s | 18 kB 00:01 2024-08-22T22:59:33.312 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - Extras packages 68 kB/s | 18 kB 00:00 2024-08-22T22:59:33.558 INFO:teuthology.orchestra.run.smithi160.stdout:Extra Packages for Enterprise Linux 24 MB/s | 22 MB 00:00 2024-08-22T22:59:34.425 INFO:teuthology.orchestra.run.smithi144.stdout:Extra Packages for Enterprise Linux 23 MB/s | 22 MB 00:00 2024-08-22T22:59:36.949 INFO:teuthology.orchestra.run.smithi131.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-08-22T22:59:38.872 INFO:teuthology.orchestra.run.smithi131.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-08-22T22:59:38.872 INFO:teuthology.orchestra.run.smithi131.stdout:Package kernel-5.14.0-496.el9.x86_64 is already installed. 2024-08-22T22:59:38.961 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T22:59:38.962 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T22:59:38.962 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T22:59:38.972 INFO:teuthology.orchestra.run.smithi160.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-08-22T22:59:39.059 DEBUG:teuthology.orchestra.run.smithi131:> echo no | sudo yum reinstall kernel || true 2024-08-22T22:59:39.612 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:03 ago on Thu 22 Aug 2024 10:59:36 PM UTC. 2024-08-22T22:59:39.750 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout: Package Architecture Version Repository Size 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout:Reinstalling: 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout: kernel x86_64 5.14.0-496.el9 baseos 1.8 M 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T22:59:39.754 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T22:59:39.755 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T22:59:39.755 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T22:59:39.755 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 1.8 M 2024-08-22T22:59:39.755 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 0 2024-08-22T22:59:39.756 INFO:teuthology.orchestra.run.smithi131.stderr:Operation aborted. 2024-08-22T22:59:39.817 INFO:teuthology.orchestra.run.smithi131.stdout:Is this ok [y/N]: 2024-08-22T22:59:39.817 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum reinstall -y kernel || true 2024-08-22T22:59:39.839 INFO:teuthology.orchestra.run.smithi144.stdout:lab-extras 33 kB/s | 1.7 kB 00:00 2024-08-22T22:59:40.368 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:04 ago on Thu 22 Aug 2024 10:59:36 PM UTC. 2024-08-22T22:59:40.490 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T22:59:40.490 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout: Package Architecture Version Repository Size 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout:Reinstalling: 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout: kernel x86_64 5.14.0-496.el9 baseos 1.8 M 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T22:59:40.491 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T22:59:40.492 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 1.8 M 2024-08-22T22:59:40.492 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 0 2024-08-22T22:59:40.492 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T22:59:40.895 INFO:teuthology.orchestra.run.smithi160.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-08-22T22:59:40.896 INFO:teuthology.orchestra.run.smithi160.stdout:Package kernel-5.14.0-496.el9.x86_64 is already installed. 2024-08-22T22:59:40.976 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T22:59:40.977 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T22:59:40.977 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T22:59:41.092 DEBUG:teuthology.orchestra.run.smithi160:> echo no | sudo yum reinstall kernel || true 2024-08-22T22:59:41.584 INFO:teuthology.orchestra.run.smithi131.stdout:kernel-5.14.0-496.el9.x86_64.rpm 1.7 MB/s | 1.8 MB 00:01 2024-08-22T22:59:41.585 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T22:59:41.585 INFO:teuthology.orchestra.run.smithi131.stdout:Total 1.6 MB/s | 1.8 MB 00:01 2024-08-22T22:59:41.614 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T22:59:41.645 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:03 ago on Thu 22 Aug 2024 10:59:38 PM UTC. 2024-08-22T22:59:41.678 INFO:teuthology.orchestra.run.smithi144.stdout:Package kernel-5.14.0-239.el9.x86_64 is already installed. 2024-08-22T22:59:41.678 INFO:teuthology.orchestra.run.smithi144.stdout:Package kernel-5.14.0-496.el9.x86_64 is already installed. 2024-08-22T22:59:41.760 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T22:59:41.761 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T22:59:41.761 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T22:59:41.792 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T22:59:41.797 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T22:59:41.797 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-08-22T22:59:41.797 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T22:59:41.797 INFO:teuthology.orchestra.run.smithi160.stdout:Reinstalling: 2024-08-22T22:59:41.798 INFO:teuthology.orchestra.run.smithi160.stdout: kernel x86_64 5.14.0-496.el9 baseos 1.8 M 2024-08-22T22:59:41.798 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T22:59:41.798 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T22:59:41.798 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T22:59:41.798 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T22:59:41.798 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 1.8 M 2024-08-22T22:59:41.799 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 0 2024-08-22T22:59:41.799 INFO:teuthology.orchestra.run.smithi160.stderr:Operation aborted. 2024-08-22T22:59:41.854 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T22:59:41.854 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T22:59:41.855 INFO:teuthology.orchestra.run.smithi160.stdout:Is this ok [y/N]: 2024-08-22T22:59:41.856 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum reinstall -y kernel || true 2024-08-22T22:59:41.857 DEBUG:teuthology.orchestra.run.smithi144:> echo no | sudo yum reinstall kernel || true 2024-08-22T22:59:41.883 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T22:59:41.883 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T22:59:42.059 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T22:59:42.128 INFO:teuthology.orchestra.run.smithi131.stdout: Reinstalling : kernel-5.14.0-496.el9.x86_64 1/2 2024-08-22T22:59:42.128 INFO:teuthology.orchestra.run.smithi131.stdout: Cleanup : kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:42.404 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:03 ago on Thu 22 Aug 2024 10:59:39 PM UTC. 2024-08-22T22:59:42.404 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:04 ago on Thu 22 Aug 2024 10:59:38 PM UTC. 2024-08-22T22:59:42.527 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T22:59:42.527 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:Reinstalling: 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout: kernel x86_64 5.14.0-496.el9 baseos 1.8 M 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 1.8 M 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 0 2024-08-22T22:59:42.528 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T22:59:42.548 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T22:59:42.557 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T22:59:42.557 INFO:teuthology.orchestra.run.smithi144.stdout: Package Architecture Version Repository Size 2024-08-22T22:59:42.557 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout:Reinstalling: 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout: kernel x86_64 5.14.0-496.el9 baseos 1.8 M 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T22:59:42.558 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 1.8 M 2024-08-22T22:59:42.559 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 0 2024-08-22T22:59:42.559 INFO:teuthology.orchestra.run.smithi144.stderr:Operation aborted. 2024-08-22T22:59:42.619 INFO:teuthology.orchestra.run.smithi144.stdout:Is this ok [y/N]: 2024-08-22T22:59:42.619 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum reinstall -y kernel || true 2024-08-22T22:59:42.891 INFO:teuthology.orchestra.run.smithi160.stdout:kernel-5.14.0-496.el9.x86_64.rpm 6.8 MB/s | 1.8 MB 00:00 2024-08-22T22:59:42.891 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T22:59:42.892 INFO:teuthology.orchestra.run.smithi160.stdout:Total 4.9 MB/s | 1.8 MB 00:00 2024-08-22T22:59:42.892 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:42.892 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : kernel-5.14.0-496.el9.x86_64 1/2 2024-08-22T22:59:42.920 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T22:59:43.151 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T22:59:43.151 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T22:59:43.179 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:04 ago on Thu 22 Aug 2024 10:59:39 PM UTC. 2024-08-22T22:59:43.180 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T22:59:43.180 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T22:59:43.303 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T22:59:43.304 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T22:59:43.304 INFO:teuthology.orchestra.run.smithi144.stdout: Package Architecture Version Repository Size 2024-08-22T22:59:43.304 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T22:59:43.304 INFO:teuthology.orchestra.run.smithi144.stdout:Reinstalling: 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout: kernel x86_64 5.14.0-496.el9 baseos 1.8 M 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 1.8 M 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 0 2024-08-22T22:59:43.305 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T22:59:43.352 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T22:59:43.435 INFO:teuthology.orchestra.run.smithi160.stdout: Reinstalling : kernel-5.14.0-496.el9.x86_64 1/2 2024-08-22T22:59:43.435 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:43.561 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:43.561 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T22:59:43.561 INFO:teuthology.orchestra.run.smithi131.stdout:Reinstalled: 2024-08-22T22:59:43.561 INFO:teuthology.orchestra.run.smithi131.stdout: kernel-5.14.0-496.el9.x86_64 2024-08-22T22:59:43.561 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T22:59:43.561 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T22:59:43.758 DEBUG:teuthology.orchestra.run.smithi131:> rpm -q kernel | sort -rV | head -n 1 2024-08-22T22:59:43.816 INFO:teuthology.orchestra.run.smithi131.stdout:kernel-5.14.0-496.el9.x86_64 2024-08-22T22:59:43.816 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-496.el9.x86_64 2024-08-22T22:59:43.816 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-08-22T22:59:43.816 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-08-22T22:59:43.816 DEBUG:teuthology.orchestra.run.smithi131:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-08-22T22:59:43.861 INFO:teuthology.orchestra.run.smithi131.stdout:ttyS1 2024-08-22T22:59:43.883 DEBUG:teuthology.parallel:result is None 2024-08-22T22:59:44.186 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:44.186 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-5.14.0-496.el9.x86_64 1/2 2024-08-22T22:59:44.473 INFO:teuthology.orchestra.run.smithi144.stdout:kernel-5.14.0-496.el9.x86_64.rpm 2.0 MB/s | 1.8 MB 00:00 2024-08-22T22:59:44.473 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T22:59:44.473 INFO:teuthology.orchestra.run.smithi144.stdout:Total 1.5 MB/s | 1.8 MB 00:01 2024-08-22T22:59:44.503 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T22:59:44.777 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T22:59:44.777 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T22:59:44.806 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T22:59:44.806 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T22:59:44.903 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:44.903 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T22:59:44.903 INFO:teuthology.orchestra.run.smithi160.stdout:Reinstalled: 2024-08-22T22:59:44.903 INFO:teuthology.orchestra.run.smithi160.stdout: kernel-5.14.0-496.el9.x86_64 2024-08-22T22:59:44.903 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T22:59:44.904 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T22:59:44.969 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T22:59:45.059 INFO:teuthology.orchestra.run.smithi144.stdout: Reinstalling : kernel-5.14.0-496.el9.x86_64 1/2 2024-08-22T22:59:45.060 INFO:teuthology.orchestra.run.smithi144.stdout: Cleanup : kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:45.086 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q kernel | sort -rV | head -n 1 2024-08-22T22:59:45.144 INFO:teuthology.orchestra.run.smithi160.stdout:kernel-5.14.0-496.el9.x86_64 2024-08-22T22:59:45.144 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-496.el9.x86_64 2024-08-22T22:59:45.144 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-08-22T22:59:45.145 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2024-08-22T22:59:45.145 DEBUG:teuthology.orchestra.run.smithi160:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-08-22T22:59:45.174 INFO:teuthology.orchestra.run.smithi160.stdout:ttyS1 2024-08-22T22:59:45.197 DEBUG:teuthology.parallel:result is None 2024-08-22T22:59:45.810 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:45.810 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-5.14.0-496.el9.x86_64 1/2 2024-08-22T22:59:46.551 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : kernel-5.14.0-496.el9.x86_64 2/2 2024-08-22T22:59:46.551 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T22:59:46.551 INFO:teuthology.orchestra.run.smithi144.stdout:Reinstalled: 2024-08-22T22:59:46.551 INFO:teuthology.orchestra.run.smithi144.stdout: kernel-5.14.0-496.el9.x86_64 2024-08-22T22:59:46.551 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T22:59:46.551 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T22:59:46.752 DEBUG:teuthology.orchestra.run.smithi144:> rpm -q kernel | sort -rV | head -n 1 2024-08-22T22:59:46.811 INFO:teuthology.orchestra.run.smithi144.stdout:kernel-5.14.0-496.el9.x86_64 2024-08-22T22:59:46.811 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-496.el9.x86_64 2024-08-22T22:59:46.811 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2024-08-22T22:59:46.811 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-08-22T22:59:46.812 DEBUG:teuthology.orchestra.run.smithi144:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-08-22T22:59:46.840 INFO:teuthology.orchestra.run.smithi144.stdout:ttyS1 2024-08-22T22:59:46.864 DEBUG:teuthology.parallel:result is None 2024-08-22T22:59:46.865 INFO:teuthology.run_tasks:Running task internal.base... 2024-08-22T22:59:46.871 INFO:teuthology.task.internal:Creating test directory... 2024-08-22T22:59:46.872 DEBUG:teuthology.orchestra.run.smithi131:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-08-22T22:59:46.874 DEBUG:teuthology.orchestra.run.smithi144:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-08-22T22:59:46.907 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-08-22T22:59:46.926 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-08-22T22:59:46.932 INFO:teuthology.run_tasks:Running task internal.archive... 2024-08-22T22:59:46.952 INFO:teuthology.task.internal:Creating archive directory... 2024-08-22T22:59:46.952 DEBUG:teuthology.orchestra.run.smithi131:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-08-22T22:59:46.955 DEBUG:teuthology.orchestra.run.smithi144:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-08-22T22:59:46.962 DEBUG:teuthology.orchestra.run.smithi160:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-08-22T22:59:46.998 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-08-22T22:59:47.004 INFO:teuthology.task.internal:Enabling coredump saving... 2024-08-22T22:59:47.004 DEBUG:teuthology.orchestra.run.smithi131:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-08-22T22:59:47.033 DEBUG:teuthology.orchestra.run.smithi144:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-08-22T22:59:47.035 DEBUG:teuthology.orchestra.run.smithi160:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-08-22T22:59:47.064 INFO:teuthology.orchestra.run.smithi131.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-22T22:59:47.075 INFO:teuthology.orchestra.run.smithi131.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-22T22:59:47.078 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-22T22:59:47.087 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-22T22:59:47.089 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-22T22:59:47.098 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-08-22T22:59:47.100 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-08-22T22:59:47.107 INFO:teuthology.task.internal:Configuring sudo... 2024-08-22T22:59:47.107 DEBUG:teuthology.orchestra.run.smithi131:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-08-22T22:59:47.119 DEBUG:teuthology.orchestra.run.smithi144:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-08-22T22:59:47.122 DEBUG:teuthology.orchestra.run.smithi160:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-08-22T22:59:47.150 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-08-22T22:59:47.159 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-08-22T22:59:47.159 DEBUG:teuthology.orchestra.run.smithi131:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-08-22T22:59:47.187 DEBUG:teuthology.orchestra.run.smithi144:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-08-22T22:59:47.190 DEBUG:teuthology.orchestra.run.smithi160:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-08-22T22:59:47.208 DEBUG:teuthology.orchestra.run.smithi131:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-22T22:59:47.285 DEBUG:teuthology.orchestra.run.smithi131:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-22T22:59:47.328 DEBUG:teuthology.orchestra.run.smithi131:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-22T22:59:47.408 DEBUG:teuthology.orchestra.run.smithi131:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-22T22:59:47.452 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-22T22:59:47.453 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-08-22T22:59:47.518 DEBUG:teuthology.orchestra.run.smithi144:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-22T22:59:47.555 DEBUG:teuthology.orchestra.run.smithi144:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-22T22:59:47.608 DEBUG:teuthology.orchestra.run.smithi144:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-22T22:59:47.685 DEBUG:teuthology.orchestra.run.smithi144:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-22T22:59:47.730 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-08-22T22:59:47.730 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-08-22T22:59:47.795 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-22T22:59:47.838 DEBUG:teuthology.orchestra.run.smithi160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2024-08-22T22:59:47.902 DEBUG:teuthology.orchestra.run.smithi160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-22T22:59:47.942 DEBUG:teuthology.orchestra.run.smithi160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2024-08-22T22:59:48.067 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-08-22T22:59:48.067 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-08-22T22:59:48.137 DEBUG:teuthology.orchestra.run.smithi131:> sudo service rsyslog restart 2024-08-22T22:59:48.140 DEBUG:teuthology.orchestra.run.smithi144:> sudo service rsyslog restart 2024-08-22T22:59:48.143 DEBUG:teuthology.orchestra.run.smithi160:> sudo service rsyslog restart 2024-08-22T22:59:48.172 INFO:teuthology.orchestra.run.smithi131.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-22T22:59:48.180 INFO:teuthology.orchestra.run.smithi144.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-22T22:59:48.220 INFO:teuthology.orchestra.run.smithi160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-22T22:59:48.603 INFO:teuthology.run_tasks:Running task internal.timer... 2024-08-22T22:59:49.179 INFO:teuthology.task.internal:Starting timer... 2024-08-22T22:59:49.179 INFO:teuthology.run_tasks:Running task pcp... 2024-08-22T22:59:49.448 INFO:teuthology.run_tasks:Running task selinux... 2024-08-22T22:59:49.606 DEBUG:teuthology.task:Applying overrides for task selinux: {'whitelist': ['scontext=system_u:system_r:logrotate_t:s0']} 2024-08-22T22:59:49.606 DEBUG:teuthology.orchestra.run.smithi131:> sudo service auditd rotate 2024-08-22T22:59:49.646 INFO:teuthology.orchestra.run.smithi131.stdout:Rotating logs: 2024-08-22T22:59:49.647 DEBUG:teuthology.orchestra.run.smithi144:> sudo service auditd rotate 2024-08-22T22:59:49.689 INFO:teuthology.orchestra.run.smithi144.stdout:Rotating logs: 2024-08-22T22:59:49.691 DEBUG:teuthology.orchestra.run.smithi160:> sudo service auditd rotate 2024-08-22T22:59:49.741 INFO:teuthology.orchestra.run.smithi160.stdout:Rotating logs: 2024-08-22T22:59:49.743 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-08-22T22:59:49.743 DEBUG:teuthology.orchestra.run.smithi131:> /usr/sbin/getenforce 2024-08-22T22:59:49.764 INFO:teuthology.orchestra.run.smithi131.stdout:Permissive 2024-08-22T22:59:49.764 DEBUG:teuthology.orchestra.run.smithi144:> /usr/sbin/getenforce 2024-08-22T22:59:49.787 INFO:teuthology.orchestra.run.smithi144.stdout:Permissive 2024-08-22T22:59:49.788 DEBUG:teuthology.orchestra.run.smithi160:> /usr/sbin/getenforce 2024-08-22T22:59:49.820 INFO:teuthology.orchestra.run.smithi160.stdout:Permissive 2024-08-22T22:59:49.820 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@smithi131.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi144.front.sepia.ceph.com': 'permissive', 'ubuntu@smithi160.front.sepia.ceph.com': 'permissive'} 2024-08-22T22:59:49.820 DEBUG:teuthology.orchestra.run.smithi131:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-08-22T22:59:49.845 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T22:59:49.845 DEBUG:teuthology.orchestra.run.smithi144:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-08-22T22:59:49.871 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T22:59:49.871 DEBUG:teuthology.orchestra.run.smithi160:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-08-22T22:59:49.896 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T22:59:49.897 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-08-22T22:59:49.897 DEBUG:teuthology.orchestra.run.smithi131:> sudo /usr/sbin/setenforce permissive 2024-08-22T22:59:49.922 DEBUG:teuthology.orchestra.run.smithi144:> sudo /usr/sbin/setenforce permissive 2024-08-22T22:59:49.946 DEBUG:teuthology.orchestra.run.smithi160:> sudo /usr/sbin/setenforce permissive 2024-08-22T22:59:49.970 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-08-22T22:59:49.979 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-08-22T22:59:49.993 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-08-22T22:59:49.994 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi131.front.sepia.ceph.com,smithi144.front.sepia.ceph.com,smithi160.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-08-22T23:01:35.928 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi131.front.sepia.ceph.com'), Remote(name='ubuntu@smithi144.front.sepia.ceph.com'), Remote(name='ubuntu@smithi160.front.sepia.ceph.com')] 2024-08-22T23:01:35.929 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-22T23:01:35.930 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi131.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-22T23:01:36.009 DEBUG:teuthology.orchestra.run.smithi131:> true 2024-08-22T23:01:36.086 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi131.front.sepia.ceph.com' 2024-08-22T23:01:36.087 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-08-22T23:01:36.087 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi144.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-22T23:01:36.160 DEBUG:teuthology.orchestra.run.smithi144:> true 2024-08-22T23:01:36.238 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi144.front.sepia.ceph.com' 2024-08-22T23:01:36.239 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-08-22T23:01:36.239 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-08-22T23:01:36.340 DEBUG:teuthology.orchestra.run.smithi160:> true 2024-08-22T23:01:36.418 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi160.front.sepia.ceph.com' 2024-08-22T23:01:36.418 INFO:teuthology.run_tasks:Running task clock... 2024-08-22T23:01:36.429 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-08-22T23:01:36.429 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-08-22T23:01:36.430 DEBUG:teuthology.orchestra.run.smithi131:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-22T23:01:36.432 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-08-22T23:01:36.432 DEBUG:teuthology.orchestra.run.smithi144:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-22T23:01:36.434 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-08-22T23:01:36.435 DEBUG:teuthology.orchestra.run.smithi160:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-22T23:01:36.460 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-08-22T23:01:36.461 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-08-22T23:01:36.475 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-08-22T23:01:36.475 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-08-22T23:01:36.487 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2024-08-22T23:01:36.499 INFO:teuthology.orchestra.run.smithi131.stderr:sudo: ntpd: command not found 2024-08-22T23:01:36.499 INFO:teuthology.orchestra.run.smithi144.stderr:sudo: ntpd: command not found 2024-08-22T23:01:36.502 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2024-08-22T23:01:36.510 INFO:teuthology.orchestra.run.smithi131.stdout:506 Cannot talk to daemon 2024-08-22T23:01:36.510 INFO:teuthology.orchestra.run.smithi144.stdout:506 Cannot talk to daemon 2024-08-22T23:01:36.524 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-08-22T23:01:36.525 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-08-22T23:01:36.525 INFO:teuthology.orchestra.run.smithi160.stderr:sudo: ntpd: command not found 2024-08-22T23:01:36.537 INFO:teuthology.orchestra.run.smithi160.stdout:506 Cannot talk to daemon 2024-08-22T23:01:36.538 INFO:teuthology.orchestra.run.smithi131.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-08-22T23:01:36.539 INFO:teuthology.orchestra.run.smithi144.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-08-22T23:01:36.551 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to start ntp.service: Unit ntp.service not found. 2024-08-22T23:01:36.565 INFO:teuthology.orchestra.run.smithi160.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2024-08-22T23:01:36.600 INFO:teuthology.orchestra.run.smithi144.stderr:bash: line 1: ntpq: command not found 2024-08-22T23:01:36.600 INFO:teuthology.orchestra.run.smithi131.stderr:bash: line 1: ntpq: command not found 2024-08-22T23:01:36.604 INFO:teuthology.orchestra.run.smithi144.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-22T23:01:36.604 INFO:teuthology.orchestra.run.smithi144.stdout:=============================================================================== 2024-08-22T23:01:36.604 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.604 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.604 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.604 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.605 INFO:teuthology.orchestra.run.smithi131.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-22T23:01:36.605 INFO:teuthology.orchestra.run.smithi131.stdout:=============================================================================== 2024-08-22T23:01:36.605 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.605 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.605 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.605 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.621 INFO:teuthology.orchestra.run.smithi160.stderr:bash: line 1: ntpq: command not found 2024-08-22T23:01:36.624 INFO:teuthology.orchestra.run.smithi160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-22T23:01:36.624 INFO:teuthology.orchestra.run.smithi160.stdout:=============================================================================== 2024-08-22T23:01:36.624 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv01.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.624 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv02.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.624 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv03.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.624 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv04.front.sepia.ceph.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:01:36.625 INFO:teuthology.run_tasks:Running task pexec... 2024-08-22T23:01:36.635 INFO:teuthology.task.pexec:Executing custom commands... 2024-08-22T23:01:36.635 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi131.front.sepia.ceph.com 2024-08-22T23:01:36.636 DEBUG:teuthology.orchestra.run.smithi131:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-08-22T23:01:36.636 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi144.front.sepia.ceph.com 2024-08-22T23:01:36.636 DEBUG:teuthology.orchestra.run.smithi144:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-08-22T23:01:36.636 INFO:teuthology.task.pexec:Running commands on host ubuntu@smithi160.front.sepia.ceph.com 2024-08-22T23:01:36.636 DEBUG:teuthology.orchestra.run.smithi160:> TESTDIR=/home/ubuntu/cephtest bash -s 2024-08-22T23:01:37.236 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:44 ago on Thu 22 Aug 2024 11:00:53 PM UTC. 2024-08-22T23:01:37.236 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:43 ago on Thu 22 Aug 2024 11:00:53 PM UTC. 2024-08-22T23:01:37.257 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:43 ago on Thu 22 Aug 2024 11:00:53 PM UTC. 2024-08-22T23:01:37.321 INFO:teuthology.orchestra.run.smithi144.stdout:Package nvme-cli-2.9.1-5.el9.x86_64 is already installed. 2024-08-22T23:01:37.322 INFO:teuthology.orchestra.run.smithi131.stdout:Package nvme-cli-2.9.1-5.el9.x86_64 is already installed. 2024-08-22T23:01:37.345 INFO:teuthology.orchestra.run.smithi160.stdout:Package nvme-cli-2.9.1-5.el9.x86_64 is already installed. 2024-08-22T23:01:37.361 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:01:37.362 INFO:teuthology.orchestra.run.smithi144.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout:Install 5 Packages 2024-08-22T23:01:37.363 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:01:37.364 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 4.2 M 2024-08-22T23:01:37.364 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 14 M 2024-08-22T23:01:37.364 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-08-22T23:01:37.365 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout:Install 5 Packages 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 4.2 M 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 14 M 2024-08-22T23:01:37.366 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:01:37.386 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:01:37.386 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:01:37.386 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:01:37.386 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: nvmetcli noarch 0.7-3.el9 baseos 44 k 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: runc x86_64 4:1.1.13-4.el9 appstream 3.2 M 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout:Install 5 Packages 2024-08-22T23:01:37.387 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:01:37.388 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 4.2 M 2024-08-22T23:01:37.388 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 14 M 2024-08-22T23:01:37.388 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:01:37.726 INFO:teuthology.orchestra.run.smithi144.stdout:(1/5): nvmetcli-0.7-3.el9.noarch.rpm 286 kB/s | 44 kB 00:00 2024-08-22T23:01:37.743 INFO:teuthology.orchestra.run.smithi144.stdout:(2/5): python3-configshell-1.1.30-1.el9.noarch. 417 kB/s | 72 kB 00:00 2024-08-22T23:01:37.768 INFO:teuthology.orchestra.run.smithi144.stdout:(3/5): python3-kmod-0.9-32.el9.x86_64.rpm 427 kB/s | 84 kB 00:00 2024-08-22T23:01:37.889 INFO:teuthology.orchestra.run.smithi160.stdout:(1/5): nvmetcli-0.7-3.el9.noarch.rpm 125 kB/s | 44 kB 00:00 2024-08-22T23:01:37.943 INFO:teuthology.orchestra.run.smithi144.stdout:(4/5): python3-urwid-2.1.2-4.el9.x86_64.rpm 3.8 MB/s | 837 kB 00:00 2024-08-22T23:01:37.955 INFO:teuthology.orchestra.run.smithi160.stdout:(2/5): python3-kmod-0.9-32.el9.x86_64.rpm 200 kB/s | 84 kB 00:00 2024-08-22T23:01:37.981 INFO:teuthology.orchestra.run.smithi160.stdout:(3/5): python3-configshell-1.1.30-1.el9.noarch. 160 kB/s | 72 kB 00:00 2024-08-22T23:01:38.108 INFO:teuthology.orchestra.run.smithi131.stdout:(1/5): nvmetcli-0.7-3.el9.noarch.rpm 76 kB/s | 44 kB 00:00 2024-08-22T23:01:38.118 INFO:teuthology.orchestra.run.smithi144.stdout:(5/5): runc-1.1.13-4.el9.x86_64.rpm 8.4 MB/s | 3.2 MB 00:00 2024-08-22T23:01:38.119 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:01:38.119 INFO:teuthology.orchestra.run.smithi144.stdout:Total 5.5 MB/s | 4.2 MB 00:00 2024-08-22T23:01:38.149 INFO:teuthology.orchestra.run.smithi131.stdout:(2/5): python3-configshell-1.1.30-1.el9.noarch. 114 kB/s | 72 kB 00:00 2024-08-22T23:01:38.175 INFO:teuthology.orchestra.run.smithi131.stdout:(3/5): python3-kmod-0.9-32.el9.x86_64.rpm 129 kB/s | 84 kB 00:00 2024-08-22T23:01:38.201 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:01:38.212 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:01:38.212 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:01:38.323 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:01:38.324 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:01:38.761 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:01:38.781 INFO:teuthology.orchestra.run.smithi160.stdout:(4/5): runc-1.1.13-4.el9.x86_64.rpm 3.8 MB/s | 3.2 MB 00:00 2024-08-22T23:01:38.854 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/5 2024-08-22T23:01:38.856 INFO:teuthology.orchestra.run.smithi160.stdout:(5/5): python3-urwid-2.1.2-4.el9.x86_64.rpm 866 kB/s | 837 kB 00:00 2024-08-22T23:01:38.856 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:01:38.856 INFO:teuthology.orchestra.run.smithi160.stdout:Total 2.8 MB/s | 4.2 MB 00:01 2024-08-22T23:01:38.888 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/5 2024-08-22T23:01:38.923 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/5 2024-08-22T23:01:38.942 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:01:38.947 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : nvmetcli-0.7-3.el9.noarch 4/5 2024-08-22T23:01:38.953 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:01:38.953 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:01:39.000 INFO:teuthology.orchestra.run.smithi131.stdout:(4/5): python3-urwid-2.1.2-4.el9.x86_64.rpm 939 kB/s | 837 kB 00:00 2024-08-22T23:01:39.021 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 4/5 2024-08-22T23:01:39.064 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:01:39.065 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:01:39.083 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:39.409 INFO:teuthology.orchestra.run.smithi131.stdout:(5/5): runc-1.1.13-4.el9.x86_64.rpm 2.5 MB/s | 3.2 MB 00:01 2024-08-22T23:01:39.409 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:01:39.409 INFO:teuthology.orchestra.run.smithi131.stdout:Total 2.0 MB/s | 4.2 MB 00:02 2024-08-22T23:01:39.500 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:01:39.508 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:01:39.511 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:01:39.512 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:01:39.592 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/5 2024-08-22T23:01:39.622 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:01:39.622 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:01:39.625 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/5 2024-08-22T23:01:39.660 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/5 2024-08-22T23:01:39.684 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : nvmetcli-0.7-3.el9.noarch 4/5 2024-08-22T23:01:39.759 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 4/5 2024-08-22T23:01:39.836 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:39.953 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:39.953 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 1/5 2024-08-22T23:01:39.953 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 2/5 2024-08-22T23:01:39.953 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 3/5 2024-08-22T23:01:39.953 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 4/5 2024-08-22T23:01:40.049 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:01:40.135 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/5 2024-08-22T23:01:40.169 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 2/5 2024-08-22T23:01:40.214 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 3/5 2024-08-22T23:01:40.237 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : nvmetcli-0.7-3.el9.noarch 4/5 2024-08-22T23:01:40.268 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:40.268 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:01:40.268 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:01:40.268 INFO:teuthology.orchestra.run.smithi144.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-08-22T23:01:40.268 INFO:teuthology.orchestra.run.smithi144.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-08-22T23:01:40.268 INFO:teuthology.orchestra.run.smithi144.stdout: runc-4:1.1.13-4.el9.x86_64 2024-08-22T23:01:40.269 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:01:40.269 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:01:40.311 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: nvmetcli-0.7-3.el9.noarch 4/5 2024-08-22T23:01:40.372 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:40.534 DEBUG:teuthology.parallel:result is None 2024-08-22T23:01:40.680 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:40.681 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 1/5 2024-08-22T23:01:40.681 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 2/5 2024-08-22T23:01:40.681 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 3/5 2024-08-22T23:01:40.681 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 4/5 2024-08-22T23:01:40.989 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:40.989 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:01:40.990 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:01:40.990 INFO:teuthology.orchestra.run.smithi160.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-08-22T23:01:40.990 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-08-22T23:01:40.990 INFO:teuthology.orchestra.run.smithi160.stdout: runc-4:1.1.13-4.el9.x86_64 2024-08-22T23:01:40.990 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:01:40.990 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:01:41.203 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:41.204 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : nvmetcli-0.7-3.el9.noarch 1/5 2024-08-22T23:01:41.204 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 2/5 2024-08-22T23:01:41.204 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 3/5 2024-08-22T23:01:41.204 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 4/5 2024-08-22T23:01:41.239 DEBUG:teuthology.parallel:result is None 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : runc-4:1.1.13-4.el9.x86_64 5/5 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout: nvmetcli-0.7-3.el9.noarch python3-configshell-1:1.1.30-1.el9.noarch 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout: python3-kmod-0.9-32.el9.x86_64 python3-urwid-2.1.2-4.el9.x86_64 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout: runc-4:1.1.13-4.el9.x86_64 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:01:41.472 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:01:41.763 DEBUG:teuthology.parallel:result is None 2024-08-22T23:01:41.763 INFO:teuthology.run_tasks:Running task install... 2024-08-22T23:01:42.672 DEBUG:teuthology.task.install:project ceph 2024-08-22T23:01:42.672 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713'}} 2024-08-22T23:01:42.672 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713'} 2024-08-22T23:01:42.672 INFO:teuthology.task.install:Using flavor: default 2024-08-22T23:01:42.678 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2024-08-22T23:01:42.678 INFO:teuthology.task.install:extra packages: [] 2024-08-22T23:01:42.678 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713', 'tag': None, 'wait_for_package': False} 2024-08-22T23:01:42.679 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:01:42.681 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713', 'tag': None, 'wait_for_package': False} 2024-08-22T23:01:42.681 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:01:42.682 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713', 'tag': None, 'wait_for_package': False} 2024-08-22T23:01:42.682 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:01:42.832 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/ 2024-08-22T23:01:42.832 INFO:teuthology.task.install.rpm:Package version is 18.2.4-723.g56fd5b35 2024-08-22T23:01:42.836 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/ 2024-08-22T23:01:42.836 INFO:teuthology.task.install.rpm:Package version is 18.2.4-723.g56fd5b35 2024-08-22T23:01:42.838 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/ 2024-08-22T23:01:42.839 INFO:teuthology.task.install.rpm:Package version is 18.2.4-723.g56fd5b35 2024-08-22T23:01:42.946 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-08-22T23:01:42.946 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-22T23:01:42.946 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-08-22T23:01:42.951 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-08-22T23:01:42.951 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-08-22T23:01:42.951 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-08-22T23:01:42.957 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2024-08-22T23:01:42.957 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-08-22T23:01:42.957 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/etc/yum.repos.d/ceph.repo 2024-08-22T23:01:42.972 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-08-22T23:01:42.972 DEBUG:teuthology.orchestra.run.smithi131:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/56fd5b351507f92fd1531bbfb42df967f9fbe713/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-08-22T23:01:42.982 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-08-22T23:01:42.982 DEBUG:teuthology.orchestra.run.smithi144:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/56fd5b351507f92fd1531bbfb42df967f9fbe713/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-08-22T23:01:42.985 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2024-08-22T23:01:42.985 DEBUG:teuthology.orchestra.run.smithi160:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/56fd5b351507f92fd1531bbfb42df967f9fbe713/;g' /etc/yum.repos.d/ceph.repo ; fi 2024-08-22T23:01:43.038 DEBUG:teuthology.orchestra.run.smithi131:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-08-22T23:01:43.051 DEBUG:teuthology.orchestra.run.smithi144:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-08-22T23:01:43.053 DEBUG:teuthology.orchestra.run.smithi160:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2024-08-22T23:01:43.114 DEBUG:teuthology.orchestra.run.smithi131:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-08-22T23:01:43.130 DEBUG:teuthology.orchestra.run.smithi144:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-08-22T23:01:43.131 DEBUG:teuthology.orchestra.run.smithi160:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2024-08-22T23:01:43.179 INFO:teuthology.orchestra.run.smithi131.stdout:check_obsoletes = 1 2024-08-22T23:01:43.181 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum clean all 2024-08-22T23:01:43.195 INFO:teuthology.orchestra.run.smithi160.stdout:check_obsoletes = 1 2024-08-22T23:01:43.196 INFO:teuthology.orchestra.run.smithi144.stdout:check_obsoletes = 1 2024-08-22T23:01:43.197 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum clean all 2024-08-22T23:01:43.198 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum clean all 2024-08-22T23:01:43.408 INFO:teuthology.orchestra.run.smithi131.stdout:45 files removed 2024-08-22T23:01:43.426 INFO:teuthology.orchestra.run.smithi160.stdout:45 files removed 2024-08-22T23:01:43.426 INFO:teuthology.orchestra.run.smithi144.stdout:45 files removed 2024-08-22T23:01:43.437 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-radosgw 2024-08-22T23:01:43.453 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-radosgw 2024-08-22T23:01:43.454 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-radosgw 2024-08-22T23:01:43.985 INFO:teuthology.orchestra.run.smithi144.stdout:ceph packages for x86_64 296 kB/s | 77 kB 00:00 2024-08-22T23:01:43.998 INFO:teuthology.orchestra.run.smithi131.stdout:ceph packages for x86_64 273 kB/s | 77 kB 00:00 2024-08-22T23:01:44.015 INFO:teuthology.orchestra.run.smithi160.stdout:ceph packages for x86_64 279 kB/s | 77 kB 00:00 2024-08-22T23:01:44.261 INFO:teuthology.orchestra.run.smithi144.stdout:ceph noarch packages 49 kB/s | 11 kB 00:00 2024-08-22T23:01:44.284 INFO:teuthology.orchestra.run.smithi131.stdout:ceph noarch packages 47 kB/s | 11 kB 00:00 2024-08-22T23:01:44.324 INFO:teuthology.orchestra.run.smithi160.stdout:ceph noarch packages 43 kB/s | 11 kB 00:00 2024-08-22T23:01:44.536 INFO:teuthology.orchestra.run.smithi144.stdout:ceph source packages 7.8 kB/s | 1.9 kB 00:00 2024-08-22T23:01:44.560 INFO:teuthology.orchestra.run.smithi131.stdout:ceph source packages 7.8 kB/s | 1.9 kB 00:00 2024-08-22T23:01:44.599 INFO:teuthology.orchestra.run.smithi160.stdout:ceph source packages 7.9 kB/s | 1.9 kB 00:00 2024-08-22T23:01:45.136 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.2 MB 00:00 2024-08-22T23:01:45.968 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - BaseOS 6.0 MB/s | 8.2 MB 00:01 2024-08-22T23:01:46.307 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - BaseOS 4.9 MB/s | 8.2 MB 00:01 2024-08-22T23:01:47.596 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - AppStream 15 MB/s | 20 MB 00:01 2024-08-22T23:01:50.858 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - AppStream 5.8 MB/s | 20 MB 00:03 2024-08-22T23:01:50.944 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - AppStream 5.2 MB/s | 20 MB 00:03 2024-08-22T23:01:53.088 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.6 MB 00:01 2024-08-22T23:01:54.606 INFO:teuthology.orchestra.run.smithi144.stdout:CentOS Stream 9 - Extras packages 73 kB/s | 18 kB 00:00 2024-08-22T23:01:55.893 INFO:teuthology.orchestra.run.smithi144.stdout:Extra Packages for Enterprise Linux 19 MB/s | 22 MB 00:01 2024-08-22T23:01:56.342 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.6 MB 00:01 2024-08-22T23:01:56.369 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - CRB 3.9 MB/s | 6.6 MB 00:01 2024-08-22T23:01:57.885 INFO:teuthology.orchestra.run.smithi160.stdout:CentOS Stream 9 - Extras packages 63 kB/s | 18 kB 00:00 2024-08-22T23:01:57.920 INFO:teuthology.orchestra.run.smithi131.stdout:CentOS Stream 9 - Extras packages 61 kB/s | 18 kB 00:00 2024-08-22T23:01:59.030 INFO:teuthology.orchestra.run.smithi160.stdout:Extra Packages for Enterprise Linux 22 MB/s | 22 MB 00:01 2024-08-22T23:01:59.074 INFO:teuthology.orchestra.run.smithi131.stdout:Extra Packages for Enterprise Linux 22 MB/s | 22 MB 00:01 2024-08-22T23:02:01.265 INFO:teuthology.orchestra.run.smithi144.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-08-22T23:02:03.502 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:03.504 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:03.504 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:02:03.504 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-radosgw x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 7.7 M 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout:Upgrading: 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: librados2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.3 M 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: librbd1 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.0 M 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-base x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 5.1 M 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-common x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 18 M 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-selinux x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 25 k 2024-08-22T23:02:03.505 INFO:teuthology.orchestra.run.smithi144.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: libcephfs2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 711 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: libradosstriper1 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 478 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: librgw2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 4.5 M 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-08-22T23:02:03.506 INFO:teuthology.orchestra.run.smithi144.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-ceph-argparse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 45 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-ceph-common x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 129 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cephfs x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 188 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rados x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 371 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rbd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 347 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rgw x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 117 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:02:03.507 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:03.508 INFO:teuthology.orchestra.run.smithi144.stdout:Install 28 Packages 2024-08-22T23:02:03.508 INFO:teuthology.orchestra.run.smithi144.stdout:Upgrade 2 Packages 2024-08-22T23:02:03.508 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:03.508 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 53 M 2024-08-22T23:02:03.509 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:02:04.000 INFO:teuthology.orchestra.run.smithi144.stdout:(1/30): ceph-base-18.2.4-723.g56fd5b35.el9.x86_ 12 MB/s | 5.1 MB 00:00 2024-08-22T23:02:04.042 INFO:teuthology.orchestra.run.smithi144.stdout:(2/30): ceph-selinux-18.2.4-723.g56fd5b35.el9.x 607 kB/s | 25 kB 00:00 2024-08-22T23:02:04.134 INFO:teuthology.orchestra.run.smithi144.stdout:(3/30): libcephfs2-18.2.4-723.g56fd5b35.el9.x86 7.6 MB/s | 711 kB 00:00 2024-08-22T23:02:04.225 INFO:teuthology.orchestra.run.smithi144.stdout:(4/30): libradosstriper1-18.2.4-723.g56fd5b35.e 5.1 MB/s | 478 kB 00:00 2024-08-22T23:02:04.326 INFO:teuthology.orchestra.run.smithi144.stdout:(5/30): ceph-radosgw-18.2.4-723.g56fd5b35.el9.x 10 MB/s | 7.7 MB 00:00 2024-08-22T23:02:04.368 INFO:teuthology.orchestra.run.smithi144.stdout:(6/30): python3-ceph-argparse-18.2.4-723.g56fd5 1.1 MB/s | 45 kB 00:00 2024-08-22T23:02:04.396 INFO:teuthology.orchestra.run.smithi160.stdout:lab-extras 30 kB/s | 1.7 kB 00:00 2024-08-22T23:02:04.435 INFO:teuthology.orchestra.run.smithi144.stdout:(7/30): librgw2-18.2.4-723.g56fd5b35.el9.x86_64 21 MB/s | 4.5 MB 00:00 2024-08-22T23:02:04.477 INFO:teuthology.orchestra.run.smithi144.stdout:(8/30): python3-ceph-common-18.2.4-723.g56fd5b3 1.2 MB/s | 129 kB 00:00 2024-08-22T23:02:04.502 INFO:teuthology.orchestra.run.smithi144.stdout:(9/30): python3-cephfs-18.2.4-723.g56fd5b35.el9 2.7 MB/s | 188 kB 00:00 2024-08-22T23:02:04.527 INFO:teuthology.orchestra.run.smithi144.stdout:(10/30): python3-rados-18.2.4-723.g56fd5b35.el9 7.2 MB/s | 371 kB 00:00 2024-08-22T23:02:04.546 INFO:teuthology.orchestra.run.smithi131.stdout:lab-extras 26 kB/s | 1.7 kB 00:00 2024-08-22T23:02:04.552 INFO:teuthology.orchestra.run.smithi144.stdout:(11/30): python3-rbd-18.2.4-723.g56fd5b35.el9.x 6.8 MB/s | 347 kB 00:00 2024-08-22T23:02:04.578 INFO:teuthology.orchestra.run.smithi144.stdout:(12/30): python3-rgw-18.2.4-723.g56fd5b35.el9.x 2.3 MB/s | 117 kB 00:00 2024-08-22T23:02:04.753 INFO:teuthology.orchestra.run.smithi144.stdout:(13/30): ceph-common-18.2.4-723.g56fd5b35.el9.x 16 MB/s | 18 MB 00:01 2024-08-22T23:02:05.328 INFO:teuthology.orchestra.run.smithi144.stdout:(14/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 79 kB/s | 45 kB 00:00 2024-08-22T23:02:05.345 INFO:teuthology.orchestra.run.smithi144.stdout:(15/30): boost-program-options-1.75.0-8.el9.x86 135 kB/s | 107 kB 00:00 2024-08-22T23:02:05.379 INFO:teuthology.orchestra.run.smithi144.stdout:(16/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 200 kB/s | 160 kB 00:00 2024-08-22T23:02:05.954 INFO:teuthology.orchestra.run.smithi144.stdout:(17/30): python3-prettytable-0.7.2-27.el9.noarc 73 kB/s | 42 kB 00:00 2024-08-22T23:02:06.004 INFO:teuthology.orchestra.run.smithi144.stdout:(18/30): fmt-8.1.1-5.el9.x86_64.rpm 2.2 MB/s | 111 kB 00:00 2024-08-22T23:02:06.038 INFO:teuthology.orchestra.run.smithi144.stdout:(19/30): gperftools-libs-2.9.1-2.el9.x86_64.rpm 9.1 MB/s | 309 kB 00:00 2024-08-22T23:02:06.121 INFO:teuthology.orchestra.run.smithi144.stdout:(20/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 377 kB/s | 292 kB 00:00 2024-08-22T23:02:06.188 INFO:teuthology.orchestra.run.smithi144.stdout:(21/30): libarrow-9.0.0-11.el9.x86_64.rpm 29 MB/s | 4.4 MB 00:00 2024-08-22T23:02:06.214 INFO:teuthology.orchestra.run.smithi144.stdout:(22/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 283 kB/s | 26 kB 00:00 2024-08-22T23:02:06.239 INFO:teuthology.orchestra.run.smithi144.stdout:(23/30): liboath-2.6.7-2.el9.x86_64.rpm 1.0 MB/s | 49 kB 00:00 2024-08-22T23:02:06.264 INFO:teuthology.orchestra.run.smithi144.stdout:(24/30): librdkafka-1.6.1-102.el9.x86_64.rpm 708 kB/s | 662 kB 00:00 2024-08-22T23:02:06.281 INFO:teuthology.orchestra.run.smithi144.stdout:(25/30): libunwind-1.6.2-1.el9.x86_64.rpm 1.0 MB/s | 67 kB 00:00 2024-08-22T23:02:06.340 INFO:teuthology.orchestra.run.smithi144.stdout:(26/30): re2-20211101-3.el9.x86_64.rpm 2.5 MB/s | 192 kB 00:00 2024-08-22T23:02:06.365 INFO:teuthology.orchestra.run.smithi144.stdout:(27/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 6.5 MB/s | 839 kB 00:00 2024-08-22T23:02:06.415 INFO:teuthology.orchestra.run.smithi144.stdout:(28/30): thrift-0.15.0-2.el9.x86_64.rpm 13 MB/s | 1.6 MB 00:00 2024-08-22T23:02:06.580 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:06.582 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:06.582 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:02:06.582 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:06.582 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:02:06.582 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-radosgw x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 7.7 M 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout:Upgrading: 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: librados2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.3 M 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: librbd1 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.0 M 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-base x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 5.1 M 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-common x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 18 M 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-selinux x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 25 k 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-08-22T23:02:06.583 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 711 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: libradosstriper1 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 478 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: librgw2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 4.5 M 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-argparse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 45 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-common x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 129 k 2024-08-22T23:02:06.584 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cephfs x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 188 k 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rados x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 371 k 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rbd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 347 k 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rgw x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 117 k 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout:Install 28 Packages 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout:Upgrade 2 Packages 2024-08-22T23:02:06.585 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:06.586 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 53 M 2024-08-22T23:02:06.586 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:02:06.607 INFO:teuthology.orchestra.run.smithi144.stdout:(29/30): librbd1-18.2.4-723.g56fd5b35.el9.x86_6 12 MB/s | 3.0 MB 00:00 2024-08-22T23:02:06.657 INFO:teuthology.orchestra.run.smithi144.stdout:(30/30): librados2-18.2.4-723.g56fd5b35.el9.x86 10 MB/s | 3.3 MB 00:00 2024-08-22T23:02:06.664 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:06.664 INFO:teuthology.orchestra.run.smithi144.stdout:Total 17 MB/s | 53 MB 00:03 2024-08-22T23:02:06.721 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:06.723 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:06.723 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-radosgw x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 7.7 M 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout:Upgrading: 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: librados2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.3 M 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: librbd1 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.0 M 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: boost-program-options x86_64 1.75.0-8.el9 appstream 107 k 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-base x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 5.1 M 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-common x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 18 M 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-selinux x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 25 k 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: fmt x86_64 8.1.1-5.el9 epel 111 k 2024-08-22T23:02:06.724 INFO:teuthology.orchestra.run.smithi131.stdout: gperftools-libs x86_64 2.9.1-2.el9 epel 309 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: libarrow x86_64 9.0.0-11.el9 epel 4.4 M 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: libarrow-doc noarch 9.0.0-11.el9 epel 26 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: libcephfs2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 711 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: liboath x86_64 2.6.7-2.el9 epel 49 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: libradosstriper1 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 478 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: librgw2 x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 4.5 M 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: parquet-libs x86_64 9.0.0-11.el9 epel 839 k 2024-08-22T23:02:06.725 INFO:teuthology.orchestra.run.smithi131.stdout: python3-ceph-argparse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 45 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: python3-ceph-common x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 129 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cephfs x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 188 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: python3-prettytable noarch 0.7.2-27.el9 appstream 42 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rados x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 371 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rbd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 347 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rgw x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 117 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: re2 x86_64 1:20211101-3.el9 epel 192 k 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: thrift x86_64 0.15.0-2.el9 epel 1.6 M 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout:Install 28 Packages 2024-08-22T23:02:06.726 INFO:teuthology.orchestra.run.smithi131.stdout:Upgrade 2 Packages 2024-08-22T23:02:06.727 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:06.727 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 53 M 2024-08-22T23:02:06.727 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:02:06.739 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:02:06.773 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:02:06.774 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:02:07.202 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:02:07.203 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:02:07.431 INFO:teuthology.orchestra.run.smithi131.stdout:(1/30): ceph-base-18.2.4-723.g56fd5b35.el9.x86_ 8.5 MB/s | 5.1 MB 00:00 2024-08-22T23:02:07.492 INFO:teuthology.orchestra.run.smithi131.stdout:(2/30): ceph-selinux-18.2.4-723.g56fd5b35.el9.x 432 kB/s | 25 kB 00:00 2024-08-22T23:02:07.657 INFO:teuthology.orchestra.run.smithi131.stdout:(3/30): ceph-radosgw-18.2.4-723.g56fd5b35.el9.x 9.4 MB/s | 7.7 MB 00:00 2024-08-22T23:02:07.690 INFO:teuthology.orchestra.run.smithi131.stdout:(4/30): libcephfs2-18.2.4-723.g56fd5b35.el9.x86 3.5 MB/s | 711 kB 00:00 2024-08-22T23:02:07.716 INFO:teuthology.orchestra.run.smithi131.stdout:(5/30): libradosstriper1-18.2.4-723.g56fd5b35.e 8.0 MB/s | 478 kB 00:00 2024-08-22T23:02:07.924 INFO:teuthology.orchestra.run.smithi131.stdout:(6/30): ceph-common-18.2.4-723.g56fd5b35.el9.x8 17 MB/s | 18 MB 00:01 2024-08-22T23:02:07.941 INFO:teuthology.orchestra.run.smithi131.stdout:(7/30): python3-ceph-argparse-18.2.4-723.g56fd5 200 kB/s | 45 kB 00:00 2024-08-22T23:02:07.975 INFO:teuthology.orchestra.run.smithi131.stdout:(8/30): python3-ceph-common-18.2.4-723.g56fd5b3 2.5 MB/s | 129 kB 00:00 2024-08-22T23:02:08.000 INFO:teuthology.orchestra.run.smithi131.stdout:(9/30): python3-cephfs-18.2.4-723.g56fd5b35.el9 3.1 MB/s | 188 kB 00:00 2024-08-22T23:02:08.025 INFO:teuthology.orchestra.run.smithi131.stdout:(10/30): python3-rados-18.2.4-723.g56fd5b35.el9 7.2 MB/s | 371 kB 00:00 2024-08-22T23:02:08.050 INFO:teuthology.orchestra.run.smithi131.stdout:(11/30): python3-rbd-18.2.4-723.g56fd5b35.el9.x 6.8 MB/s | 347 kB 00:00 2024-08-22T23:02:08.055 INFO:teuthology.orchestra.run.smithi160.stdout:(1/30): ceph-radosgw-18.2.4-723.g56fd5b35.el9.x 6.8 MB/s | 7.7 MB 00:01 2024-08-22T23:02:08.076 INFO:teuthology.orchestra.run.smithi131.stdout:(12/30): python3-rgw-18.2.4-723.g56fd5b35.el9.x 2.3 MB/s | 117 kB 00:00 2024-08-22T23:02:08.122 INFO:teuthology.orchestra.run.smithi160.stdout:(2/30): ceph-base-18.2.4-723.g56fd5b35.el9.x86_ 4.2 MB/s | 5.1 MB 00:01 2024-08-22T23:02:08.139 INFO:teuthology.orchestra.run.smithi160.stdout:(3/30): ceph-selinux-18.2.4-723.g56fd5b35.el9.x 302 kB/s | 25 kB 00:00 2024-08-22T23:02:08.142 INFO:teuthology.orchestra.run.smithi131.stdout:(13/30): librgw2-18.2.4-723.g56fd5b35.el9.x86_6 9.9 MB/s | 4.5 MB 00:00 2024-08-22T23:02:08.190 INFO:teuthology.orchestra.run.smithi160.stdout:(4/30): libradosstriper1-18.2.4-723.g56fd5b35.e 9.3 MB/s | 478 kB 00:00 2024-08-22T23:02:08.215 INFO:teuthology.orchestra.run.smithi160.stdout:(5/30): libcephfs2-18.2.4-723.g56fd5b35.el9.x86 7.6 MB/s | 711 kB 00:00 2024-08-22T23:02:08.257 INFO:teuthology.orchestra.run.smithi160.stdout:(6/30): python3-ceph-argparse-18.2.4-723.g56fd5 1.1 MB/s | 45 kB 00:00 2024-08-22T23:02:08.284 INFO:teuthology.orchestra.run.smithi131.stdout:(14/30): boost-program-options-1.75.0-8.el9.x86 457 kB/s | 107 kB 00:00 2024-08-22T23:02:08.298 INFO:teuthology.orchestra.run.smithi160.stdout:(7/30): python3-ceph-common-18.2.4-723.g56fd5b3 3.0 MB/s | 129 kB 00:00 2024-08-22T23:02:08.301 INFO:teuthology.orchestra.run.smithi131.stdout:(15/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 285 kB/s | 45 kB 00:00 2024-08-22T23:02:08.327 INFO:teuthology.orchestra.run.smithi131.stdout:(16/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 639 kB/s | 160 kB 00:00 2024-08-22T23:02:08.340 INFO:teuthology.orchestra.run.smithi160.stdout:(8/30): python3-cephfs-18.2.4-723.g56fd5b35.el9 4.4 MB/s | 188 kB 00:00 2024-08-22T23:02:08.369 INFO:teuthology.orchestra.run.smithi131.stdout:(17/30): python3-prettytable-0.7.2-27.el9.noarc 1.0 MB/s | 42 kB 00:00 2024-08-22T23:02:08.427 INFO:teuthology.orchestra.run.smithi131.stdout:(18/30): fmt-8.1.1-5.el9.x86_64.rpm 1.9 MB/s | 111 kB 00:00 2024-08-22T23:02:08.432 INFO:teuthology.orchestra.run.smithi160.stdout:(9/30): librgw2-18.2.4-723.g56fd5b35.el9.x86_64 18 MB/s | 4.5 MB 00:00 2024-08-22T23:02:08.452 INFO:teuthology.orchestra.run.smithi131.stdout:(19/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.9 MB/s | 292 kB 00:00 2024-08-22T23:02:08.458 INFO:teuthology.orchestra.run.smithi160.stdout:(10/30): python3-rados-18.2.4-723.g56fd5b35.el9 3.1 MB/s | 371 kB 00:00 2024-08-22T23:02:08.486 INFO:teuthology.orchestra.run.smithi160.stdout:(11/30): python3-rbd-18.2.4-723.g56fd5b35.el9.x 6.8 MB/s | 347 kB 00:00 2024-08-22T23:02:08.486 INFO:teuthology.orchestra.run.smithi131.stdout:(20/30): librdkafka-1.6.1-102.el9.x86_64.rpm 3.2 MB/s | 662 kB 00:00 2024-08-22T23:02:08.509 INFO:teuthology.orchestra.run.smithi160.stdout:(12/30): python3-rgw-18.2.4-723.g56fd5b35.el9.x 2.3 MB/s | 117 kB 00:00 2024-08-22T23:02:08.511 INFO:teuthology.orchestra.run.smithi131.stdout:(21/30): gperftools-libs-2.9.1-2.el9.x86_64.rpm 3.6 MB/s | 309 kB 00:00 2024-08-22T23:02:08.541 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:02:08.545 INFO:teuthology.orchestra.run.smithi131.stdout:(22/30): liboath-2.6.7-2.el9.x86_64.rpm 1.8 MB/s | 49 kB 00:00 2024-08-22T23:02:08.578 INFO:teuthology.orchestra.run.smithi131.stdout:(23/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 287 kB/s | 26 kB 00:00 2024-08-22T23:02:08.604 INFO:teuthology.orchestra.run.smithi131.stdout:(24/30): libunwind-1.6.2-1.el9.x86_64.rpm 1.2 MB/s | 67 kB 00:00 2024-08-22T23:02:08.624 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-08-22T23:02:08.646 INFO:teuthology.orchestra.run.smithi131.stdout:(25/30): re2-20211101-3.el9.x86_64.rpm 4.5 MB/s | 192 kB 00:00 2024-08-22T23:02:08.654 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-08-22T23:02:08.679 INFO:teuthology.orchestra.run.smithi131.stdout:(26/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 8.2 MB/s | 839 kB 00:00 2024-08-22T23:02:08.711 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-08-22T23:02:08.779 INFO:teuthology.orchestra.run.smithi131.stdout:(27/30): libarrow-9.0.0-11.el9.x86_64.rpm 14 MB/s | 4.4 MB 00:00 2024-08-22T23:02:08.800 INFO:teuthology.orchestra.run.smithi160.stdout:(13/30): ceph-common-18.2.4-723.g56fd5b35.el9.x 9.7 MB/s | 18 MB 00:01 2024-08-22T23:02:08.830 INFO:teuthology.orchestra.run.smithi131.stdout:(28/30): thrift-0.15.0-2.el9.x86_64.rpm 8.6 MB/s | 1.6 MB 00:00 2024-08-22T23:02:08.939 INFO:teuthology.orchestra.run.smithi131.stdout:(29/30): librados2-18.2.4-723.g56fd5b35.el9.x86 13 MB/s | 3.3 MB 00:00 2024-08-22T23:02:08.984 INFO:teuthology.orchestra.run.smithi160.stdout:(14/30): boost-program-options-1.75.0-8.el9.x86 214 kB/s | 107 kB 00:00 2024-08-22T23:02:09.014 INFO:teuthology.orchestra.run.smithi131.stdout:(30/30): librbd1-18.2.4-723.g56fd5b35.el9.x86_6 13 MB/s | 3.0 MB 00:00 2024-08-22T23:02:09.018 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:09.018 INFO:teuthology.orchestra.run.smithi131.stdout:Total 23 MB/s | 53 MB 00:02 2024-08-22T23:02:09.025 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-08-22T23:02:09.084 INFO:teuthology.orchestra.run.smithi160.stdout:(15/30): libpmemobj-1.12.1-1.el9.x86_64.rpm 278 kB/s | 160 kB 00:00 2024-08-22T23:02:09.087 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:02:09.123 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:02:09.123 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:02:09.128 INFO:teuthology.orchestra.run.smithi144.stdout: Upgrading : librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:09.151 INFO:teuthology.orchestra.run.smithi160.stdout:(16/30): librabbitmq-0.11.0-7.el9.x86_64.rpm 129 kB/s | 45 kB 00:00 2024-08-22T23:02:09.224 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:09.304 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 6/32 2024-08-22T23:02:09.330 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:09.334 INFO:teuthology.orchestra.run.smithi160.stdout:(17/30): python3-prettytable-0.7.2-27.el9.noarc 230 kB/s | 42 kB 00:00 2024-08-22T23:02:09.368 INFO:teuthology.orchestra.run.smithi160.stdout:(18/30): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.0 MB/s | 292 kB 00:00 2024-08-22T23:02:09.392 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:09.402 INFO:teuthology.orchestra.run.smithi160.stdout:(19/30): fmt-8.1.1-5.el9.x86_64.rpm 1.6 MB/s | 111 kB 00:00 2024-08-22T23:02:09.412 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-08-22T23:02:09.449 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x 9/32 2024-08-22T23:02:09.468 INFO:teuthology.orchestra.run.smithi160.stdout:(20/30): gperftools-libs-2.9.1-2.el9.x86_64.rpm 3.0 MB/s | 309 kB 00:00 2024-08-22T23:02:09.506 INFO:teuthology.orchestra.run.smithi160.stdout:(21/30): librdkafka-1.6.1-102.el9.x86_64.rpm 1.2 MB/s | 662 kB 00:00 2024-08-22T23:02:09.514 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 10/32 2024-08-22T23:02:09.527 INFO:teuthology.orchestra.run.smithi160.stdout:(22/30): libarrow-doc-9.0.0-11.el9.noarch.rpm 442 kB/s | 26 kB 00:00 2024-08-22T23:02:09.540 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:09.552 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:02:09.553 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:02:09.561 INFO:teuthology.orchestra.run.smithi160.stdout:(23/30): libunwind-1.6.2-1.el9.x86_64.rpm 2.5 MB/s | 67 kB 00:00 2024-08-22T23:02:09.589 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:09.594 INFO:teuthology.orchestra.run.smithi160.stdout:(24/30): liboath-2.6.7-2.el9.x86_64.rpm 536 kB/s | 49 kB 00:00 2024-08-22T23:02:09.645 INFO:teuthology.orchestra.run.smithi160.stdout:(25/30): re2-20211101-3.el9.x86_64.rpm 3.7 MB/s | 192 kB 00:00 2024-08-22T23:02:09.695 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : re2-1:20211101-3.el9.x86_64 12/32 2024-08-22T23:02:09.720 INFO:teuthology.orchestra.run.smithi160.stdout:(26/30): libarrow-9.0.0-11.el9.x86_64.rpm 14 MB/s | 4.4 MB 00:00 2024-08-22T23:02:09.730 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-08-22T23:02:09.754 INFO:teuthology.orchestra.run.smithi160.stdout:(27/30): parquet-libs-9.0.0-11.el9.x86_64.rpm 4.3 MB/s | 839 kB 00:00 2024-08-22T23:02:09.770 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-08-22T23:02:09.804 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 15/32 2024-08-22T23:02:09.821 INFO:teuthology.orchestra.run.smithi160.stdout:(28/30): thrift-0.15.0-2.el9.x86_64.rpm 9.0 MB/s | 1.6 MB 00:00 2024-08-22T23:02:09.831 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-08-22T23:02:09.867 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-08-22T23:02:09.900 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-08-22T23:02:09.980 INFO:teuthology.orchestra.run.smithi160.stdout:(29/30): librbd1-18.2.4-723.g56fd5b35.el9.x86_6 13 MB/s | 3.0 MB 00:00 2024-08-22T23:02:10.146 INFO:teuthology.orchestra.run.smithi160.stdout:(30/30): librados2-18.2.4-723.g56fd5b35.el9.x86 8.4 MB/s | 3.3 MB 00:00 2024-08-22T23:02:10.151 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:10.151 INFO:teuthology.orchestra.run.smithi160.stdout:Total 15 MB/s | 53 MB 00:03 2024-08-22T23:02:10.199 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-08-22T23:02:10.221 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:02:10.238 INFO:teuthology.orchestra.run.smithi144.stdout: Upgrading : librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 20/32 2024-08-22T23:02:10.256 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:02:10.256 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:02:10.326 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 20/32 2024-08-22T23:02:10.351 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 21/32 2024-08-22T23:02:10.387 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-08-22T23:02:10.686 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:02:10.686 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:02:10.785 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-08-22T23:02:10.833 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 24/32 2024-08-22T23:02:10.871 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:02:10.905 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 24/32 2024-08-22T23:02:10.983 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-08-22T23:02:10.984 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 25/32 2024-08-22T23:02:11.010 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86 26/32 2024-08-22T23:02:11.010 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-08-22T23:02:11.059 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-08-22T23:02:11.423 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-08-22T23:02:11.476 INFO:teuthology.orchestra.run.smithi131.stdout: Upgrading : librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:11.571 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:11.652 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 6/32 2024-08-22T23:02:11.677 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:11.740 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:11.768 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-08-22T23:02:11.814 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x 9/32 2024-08-22T23:02:11.878 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 10/32 2024-08-22T23:02:11.905 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:11.953 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:12.004 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:02:12.060 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : re2-1:20211101-3.el9.x86_64 12/32 2024-08-22T23:02:12.089 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/32 2024-08-22T23:02:12.094 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-08-22T23:02:12.117 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 2/32 2024-08-22T23:02:12.134 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-08-22T23:02:12.152 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 15/32 2024-08-22T23:02:12.158 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 3/32 2024-08-22T23:02:12.170 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-08-22T23:02:12.207 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-08-22T23:02:12.239 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-08-22T23:02:12.532 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : thrift-0.15.0-2.el9.x86_64 4/32 2024-08-22T23:02:12.539 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-08-22T23:02:12.577 INFO:teuthology.orchestra.run.smithi131.stdout: Upgrading : librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 20/32 2024-08-22T23:02:12.591 INFO:teuthology.orchestra.run.smithi160.stdout: Upgrading : librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:12.671 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 20/32 2024-08-22T23:02:12.688 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:12.698 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 21/32 2024-08-22T23:02:12.734 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-08-22T23:02:12.767 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 6/32 2024-08-22T23:02:12.793 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:12.847 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:12.876 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : liboath-2.6.7-2.el9.x86_64 8/32 2024-08-22T23:02:12.913 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x 9/32 2024-08-22T23:02:12.969 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 10/32 2024-08-22T23:02:12.995 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:13.086 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:13.134 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-08-22T23:02:13.163 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 24/32 2024-08-22T23:02:13.173 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:13.192 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : re2-1:20211101-3.el9.x86_64 12/32 2024-08-22T23:02:13.206 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:13.219 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 24/32 2024-08-22T23:02:13.227 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libarrow-9.0.0-11.el9.x86_64 13/32 2024-08-22T23:02:13.267 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 14/32 2024-08-22T23:02:13.292 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : gperftools-libs-2.9.1-2.el9.x86_64 15/32 2024-08-22T23:02:13.294 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 25/32 2024-08-22T23:02:13.319 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libarrow-doc-9.0.0-11.el9.noarch 16/32 2024-08-22T23:02:13.323 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86 26/32 2024-08-22T23:02:13.355 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : fmt-8.1.1-5.el9.x86_64 17/32 2024-08-22T23:02:13.387 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-prettytable-0.7.2-27.el9.noarch 18/32 2024-08-22T23:02:13.689 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 19/32 2024-08-22T23:02:13.726 INFO:teuthology.orchestra.run.smithi160.stdout: Upgrading : librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 20/32 2024-08-22T23:02:13.727 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:13.768 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 28/32 2024-08-22T23:02:13.820 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 20/32 2024-08-22T23:02:13.838 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 21/32 2024-08-22T23:02:13.853 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 28/32 2024-08-22T23:02:13.854 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-08-22T23:02:13.854 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-08-22T23:02:13.854 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:13.874 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : boost-program-options-1.75.0-8.el9.x86_64 22/32 2024-08-22T23:02:13.886 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:14.271 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : parquet-libs-9.0.0-11.el9.x86_64 23/32 2024-08-22T23:02:14.303 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 24/32 2024-08-22T23:02:14.376 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 24/32 2024-08-22T23:02:14.451 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 25/32 2024-08-22T23:02:14.480 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86 26/32 2024-08-22T23:02:15.476 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:15.512 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:16.031 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:16.074 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 28/32 2024-08-22T23:02:16.158 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 28/32 2024-08-22T23:02:16.158 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-08-22T23:02:16.158 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-08-22T23:02:16.158 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:16.183 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:16.670 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:16.702 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:17.222 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 27/32 2024-08-22T23:02:17.263 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 28/32 2024-08-22T23:02:17.379 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 28/32 2024-08-22T23:02:17.379 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2024-08-22T23:02:17.379 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2024-08-22T23:02:17.379 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:17.414 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /sys 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /proc 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /mnt 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /var/tmp 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /home 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /root 2024-08-22T23:02:23.566 INFO:teuthology.orchestra.run.smithi144.stdout:skipping the directory /tmp 2024-08-22T23:02:23.567 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:24.327 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 30/32 2024-08-22T23:02:24.352 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 30/32 2024-08-22T23:02:24.352 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:24.352 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-08-22T23:02:24.352 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-08-22T23:02:24.353 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-08-22T23:02:24.353 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:24.354 INFO:teuthology.orchestra.run.smithi144.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-08-22T23:02:24.438 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-08-22T23:02:24.438 INFO:teuthology.orchestra.run.smithi144.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:25.466 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:25.466 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 1/32 2024-08-22T23:02:25.466 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2/32 2024-08-22T23:02:25.466 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 3/32 2024-08-22T23:02:25.466 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 4/32 2024-08-22T23:02:25.466 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 6/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x 8/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86 9/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 10/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 12/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 13/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-08-22T23:02:25.467 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 21/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-08-22T23:02:25.468 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : re2-1:20211101-3.el9.x86_64 27/32 2024-08-22T23:02:25.469 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-08-22T23:02:25.469 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:25.469 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-08-22T23:02:25.469 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 31/32 2024-08-22T23:02:26.031 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /sys 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /proc 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /mnt 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /var/tmp 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /home 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /root 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout:skipping the directory /tmp 2024-08-22T23:02:26.032 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:26.393 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout:Upgraded: 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: fmt-8.1.1-5.el9.x86_64 2024-08-22T23:02:26.394 INFO:teuthology.orchestra.run.smithi144.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: libarrow-9.0.0-11.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: liboath-2.6.7-2.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: libunwind-1.6.2-1.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-08-22T23:02:26.395 INFO:teuthology.orchestra.run.smithi144.stdout: python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: re2-1:20211101-3.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: thrift-0.15.0-2.el9.x86_64 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:26.396 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:26.707 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-test 2024-08-22T23:02:26.782 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 30/32 2024-08-22T23:02:26.808 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 30/32 2024-08-22T23:02:26.808 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:26.808 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-08-22T23:02:26.808 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-08-22T23:02:26.808 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-08-22T23:02:26.808 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:26.810 INFO:teuthology.orchestra.run.smithi131.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-08-22T23:02:26.863 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:26.863 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /sys 2024-08-22T23:02:26.863 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /proc 2024-08-22T23:02:26.863 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /mnt 2024-08-22T23:02:26.863 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /var/tmp 2024-08-22T23:02:26.864 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /home 2024-08-22T23:02:26.864 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /root 2024-08-22T23:02:26.864 INFO:teuthology.orchestra.run.smithi160.stdout:skipping the directory /tmp 2024-08-22T23:02:26.864 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:26.885 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-08-22T23:02:26.885 INFO:teuthology.orchestra.run.smithi131.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:27.281 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:26 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:27.411 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-test x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 40 M 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout: libcephsqlite x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 166 k 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:27.412 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:02:27.413 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:27.413 INFO:teuthology.orchestra.run.smithi144.stdout:Install 4 Packages 2024-08-22T23:02:27.413 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:27.413 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 40 M 2024-08-22T23:02:27.413 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 163 M 2024-08-22T23:02:27.413 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:02:27.631 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 30/32 2024-08-22T23:02:27.657 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 30/32 2024-08-22T23:02:27.657 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:27.657 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2024-08-22T23:02:27.657 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-08-22T23:02:27.657 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2024-08-22T23:02:27.657 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:27.658 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-08-22T23:02:27.733 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 31/32 2024-08-22T23:02:27.733 INFO:teuthology.orchestra.run.smithi160.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:27.743 INFO:teuthology.orchestra.run.smithi144.stdout:(1/4): libcephsqlite-18.2.4-723.g56fd5b35.el9.x 631 kB/s | 166 kB 00:00 2024-08-22T23:02:27.951 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:27.951 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 1/32 2024-08-22T23:02:27.951 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 3/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 4/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 6/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x 8/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86 9/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 10/32 2024-08-22T23:02:27.952 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 12/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 13/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 21/32 2024-08-22T23:02:27.953 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-08-22T23:02:27.954 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-08-22T23:02:27.954 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-08-22T23:02:27.954 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-08-22T23:02:27.954 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-08-22T23:02:27.954 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : re2-1:20211101-3.el9.x86_64 27/32 2024-08-22T23:02:27.955 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-08-22T23:02:27.955 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:27.955 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-08-22T23:02:27.955 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 31/32 2024-08-22T23:02:28.118 INFO:teuthology.orchestra.run.smithi144.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 170 kB/s | 64 kB 00:00 2024-08-22T23:02:28.193 INFO:teuthology.orchestra.run.smithi144.stdout:(3/4): socat-1.7.4.1-6.el9.x86_64.rpm 426 kB/s | 304 kB 00:00 2024-08-22T23:02:28.764 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:28.764 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 1/32 2024-08-22T23:02:28.764 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2/32 2024-08-22T23:02:28.764 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 3/32 2024-08-22T23:02:28.764 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 4/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 5/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 6/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 7/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x 8/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86 9/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 10/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 11/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 12/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 13/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : boost-program-options-1.75.0-8.el9.x86_64 14/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 15/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 16/32 2024-08-22T23:02:28.765 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 17/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 18/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 19/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : fmt-8.1.1-5.el9.x86_64 20/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : gperftools-libs-2.9.1-2.el9.x86_64 21/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libarrow-9.0.0-11.el9.x86_64 22/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libarrow-doc-9.0.0-11.el9.noarch 23/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : liboath-2.6.7-2.el9.x86_64 24/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 25/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : parquet-libs-9.0.0-11.el9.x86_64 26/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : re2-1:20211101-3.el9.x86_64 27/32 2024-08-22T23:02:28.766 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : thrift-0.15.0-2.el9.x86_64 28/32 2024-08-22T23:02:28.767 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 29/32 2024-08-22T23:02:28.767 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 30/32 2024-08-22T23:02:28.767 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 31/32 2024-08-22T23:02:28.852 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:28.852 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:28.852 INFO:teuthology.orchestra.run.smithi131.stdout:Upgraded: 2024-08-22T23:02:28.852 INFO:teuthology.orchestra.run.smithi131.stdout: librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: fmt-8.1.1-5.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: libarrow-9.0.0-11.el9.x86_64 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-08-22T23:02:28.853 INFO:teuthology.orchestra.run.smithi131.stdout: libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: liboath-2.6.7-2.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: libunwind-1.6.2-1.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.854 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: re2-1:20211101-3.el9.x86_64 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: thrift-0.15.0-2.el9.x86_64 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:28.855 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:29.193 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-test 2024-08-22T23:02:29.602 INFO:teuthology.orchestra.run.smithi144.stdout:(4/4): ceph-test-18.2.4-723.g56fd5b35.el9.x86_6 19 MB/s | 40 MB 00:02 2024-08-22T23:02:29.604 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:29.604 INFO:teuthology.orchestra.run.smithi144.stdout:Total 18 MB/s | 40 MB 00:02 2024-08-22T23:02:29.632 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 32/32 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout:Upgraded: 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: boost-program-options-1.75.0-8.el9.x86_64 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.633 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-radosgw-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-selinux-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: fmt-8.1.1-5.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: gperftools-libs-2.9.1-2.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow-9.0.0-11.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: libarrow-doc-9.0.0-11.el9.noarch 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: liboath-2.6.7-2.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: libpmemobj-1.12.1-1.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: librabbitmq-0.11.0-7.el9.x86_64 2024-08-22T23:02:29.634 INFO:teuthology.orchestra.run.smithi160.stdout: libradosstriper1-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: librdkafka-1.6.1-102.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: librgw2-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: libunwind-1.6.2-1.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: lttng-ust-2.12.0-6.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: parquet-libs-9.0.0-11.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-argparse-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ceph-common-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-prettytable-0.7.2-27.el9.noarch 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.635 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:29.636 INFO:teuthology.orchestra.run.smithi160.stdout: re2-1:20211101-3.el9.x86_64 2024-08-22T23:02:29.636 INFO:teuthology.orchestra.run.smithi160.stdout: thrift-0.15.0-2.el9.x86_64 2024-08-22T23:02:29.636 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:29.636 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:29.652 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:02:29.653 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:02:29.762 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:25 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:29.890 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-test x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 40 M 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:02:29.891 INFO:teuthology.orchestra.run.smithi131.stdout: libcephsqlite x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 166 k 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout:Install 4 Packages 2024-08-22T23:02:29.892 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:29.893 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 40 M 2024-08-22T23:02:29.893 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 163 M 2024-08-22T23:02:29.893 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:02:29.940 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-test 2024-08-22T23:02:29.974 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:02:29.974 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:02:30.156 INFO:teuthology.orchestra.run.smithi131.stdout:(1/4): socat-1.7.4.1-6.el9.x86_64.rpm 1.5 MB/s | 304 kB 00:00 2024-08-22T23:02:30.198 INFO:teuthology.orchestra.run.smithi131.stdout:(2/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.5 MB/s | 64 kB 00:00 2024-08-22T23:02:30.223 INFO:teuthology.orchestra.run.smithi131.stdout:(3/4): libcephsqlite-18.2.4-723.g56fd5b35.el9.x 625 kB/s | 166 kB 00:00 2024-08-22T23:02:30.475 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:02:30.514 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:26 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:30.561 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-08-22T23:02:30.609 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-08-22T23:02:30.637 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 3/4 2024-08-22T23:02:30.643 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:30.643 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:30.643 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:02:30.643 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-test x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 40 M 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout: libcephsqlite x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 166 k 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout: socat x86_64 1.7.4.1-6.el9 appstream 304 k 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout:Install 4 Packages 2024-08-22T23:02:30.644 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:30.645 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 40 M 2024-08-22T23:02:30.645 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 163 M 2024-08-22T23:02:30.645 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:02:31.219 INFO:teuthology.orchestra.run.smithi160.stdout:(1/4): libcephsqlite-18.2.4-723.g56fd5b35.el9.x 559 kB/s | 166 kB 00:00 2024-08-22T23:02:31.340 INFO:teuthology.orchestra.run.smithi131.stdout:(4/4): ceph-test-18.2.4-723.g56fd5b35.el9.x86_6 29 MB/s | 40 MB 00:01 2024-08-22T23:02:31.342 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:31.342 INFO:teuthology.orchestra.run.smithi131.stdout:Total 28 MB/s | 40 MB 00:01 2024-08-22T23:02:31.370 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:02:31.389 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:02:31.390 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:02:31.502 INFO:teuthology.orchestra.run.smithi160.stdout:(2/4): socat-1.7.4.1-6.el9.x86_64.rpm 524 kB/s | 304 kB 00:00 2024-08-22T23:02:31.619 INFO:teuthology.orchestra.run.smithi160.stdout:(3/4): xmlstarlet-1.6.1-20.el9.x86_64.rpm 159 kB/s | 64 kB 00:00 2024-08-22T23:02:31.707 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:02:31.708 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:02:32.172 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:02:32.248 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-08-22T23:02:32.289 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-08-22T23:02:32.294 INFO:teuthology.orchestra.run.smithi160.stdout:(4/4): ceph-test-18.2.4-723.g56fd5b35.el9.x86_6 29 MB/s | 40 MB 00:01 2024-08-22T23:02:32.297 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:32.297 INFO:teuthology.orchestra.run.smithi160.stdout:Total 24 MB/s | 40 MB 00:01 2024-08-22T23:02:32.316 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 3/4 2024-08-22T23:02:32.324 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:02:32.344 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:02:32.344 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:02:32.663 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:02:32.663 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:02:33.147 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:02:33.220 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 1/4 2024-08-22T23:02:33.260 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : socat-1.7.4.1-6.el9.x86_64 2/4 2024-08-22T23:02:33.279 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 3/4 2024-08-22T23:02:34.265 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 3/4 2024-08-22T23:02:34.349 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 4/4 2024-08-22T23:02:35.968 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 3/4 2024-08-22T23:02:36.037 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 4/4 2024-08-22T23:02:36.282 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 4/4 2024-08-22T23:02:36.283 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 1/4 2024-08-22T23:02:36.283 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 2/4 2024-08-22T23:02:36.283 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: socat-1.7.4.1-6.el9.x86_64 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:36.580 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:36.847 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph 2024-08-22T23:02:36.928 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 3/4 2024-08-22T23:02:37.001 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 4/4 2024-08-22T23:02:37.424 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:36 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:37.555 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:37.556 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: ceph x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 6.5 k 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mds x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 2.1 M 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 1.5 M 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-modules-core noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 246 k 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mon x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 4.7 M 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-osd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 17 M 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-08-22T23:02:37.557 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-08-22T23:02:37.558 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-08-22T23:02:37.559 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:37.560 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:02:37.560 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:37.560 INFO:teuthology.orchestra.run.smithi144.stdout:Install 33 Packages 2024-08-22T23:02:37.560 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:37.560 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 29 M 2024-08-22T23:02:37.560 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 104 M 2024-08-22T23:02:37.561 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:02:38.031 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 4/4 2024-08-22T23:02:38.032 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 1/4 2024-08-22T23:02:38.032 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 2/4 2024-08-22T23:02:38.032 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-08-22T23:02:38.099 INFO:teuthology.orchestra.run.smithi144.stdout:(1/33): ceph-18.2.4-723.g56fd5b35.el9.x86_64.rp 42 kB/s | 6.5 kB 00:00 2024-08-22T23:02:38.299 INFO:teuthology.orchestra.run.smithi144.stdout:(2/33): ceph-mgr-18.2.4-723.g56fd5b35.el9.x86_6 4.1 MB/s | 1.5 MB 00:00 2024-08-22T23:02:38.344 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-08-22T23:02:38.344 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:38.344 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:02:38.344 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:38.344 INFO:teuthology.orchestra.run.smithi131.stdout: libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:38.345 INFO:teuthology.orchestra.run.smithi131.stdout: socat-1.7.4.1-6.el9.x86_64 2024-08-22T23:02:38.345 INFO:teuthology.orchestra.run.smithi131.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-08-22T23:02:38.345 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:38.345 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:38.415 INFO:teuthology.orchestra.run.smithi144.stdout:(3/33): ceph-mds-18.2.4-723.g56fd5b35.el9.x86_6 4.4 MB/s | 2.1 MB 00:00 2024-08-22T23:02:38.541 INFO:teuthology.orchestra.run.smithi144.stdout:(4/33): ceph-mon-18.2.4-723.g56fd5b35.el9.x86_6 11 MB/s | 4.7 MB 00:00 2024-08-22T23:02:38.566 INFO:teuthology.orchestra.run.smithi144.stdout:(5/33): ceph-mgr-modules-core-18.2.4-723.g56fd5 1.6 MB/s | 246 kB 00:00 2024-08-22T23:02:38.576 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph 2024-08-22T23:02:38.967 INFO:teuthology.orchestra.run.smithi144.stdout:(6/33): ceph-osd-18.2.4-723.g56fd5b35.el9.x86_6 25 MB/s | 17 MB 00:00 2024-08-22T23:02:38.992 INFO:teuthology.orchestra.run.smithi144.stdout:(7/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 562 kB/s | 253 kB 00:00 2024-08-22T23:02:39.008 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 4/4 2024-08-22T23:02:39.008 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 1/4 2024-08-22T23:02:39.008 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 2/4 2024-08-22T23:02:39.008 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : socat-1.7.4.1-6.el9.x86_64 3/4 2024-08-22T23:02:39.034 INFO:teuthology.orchestra.run.smithi144.stdout:(8/33): python3-ply-3.11-14.el9.noarch.rpm 1.6 MB/s | 106 kB 00:00 2024-08-22T23:02:39.109 INFO:teuthology.orchestra.run.smithi144.stdout:(9/33): python3-cryptography-36.0.1-4.el9.x86_6 2.3 MB/s | 1.2 MB 00:00 2024-08-22T23:02:39.134 INFO:teuthology.orchestra.run.smithi144.stdout:(10/33): python3-requests-2.25.1-8.el9.noarch.r 1.2 MB/s | 125 kB 00:00 2024-08-22T23:02:39.152 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:35 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:39.176 INFO:teuthology.orchestra.run.smithi144.stdout:(11/33): python3-urllib3-1.26.5-6.el9.noarch.rp 3.1 MB/s | 215 kB 00:00 2024-08-22T23:02:39.210 INFO:teuthology.orchestra.run.smithi144.stdout:(12/33): python3-pycparser-2.20-6.el9.noarch.rp 621 kB/s | 135 kB 00:00 2024-08-22T23:02:39.281 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout: ceph x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 6.5 k 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mds x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 2.1 M 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 1.5 M 2024-08-22T23:02:39.284 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-modules-core noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 246 k 2024-08-22T23:02:39.285 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mon x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 4.7 M 2024-08-22T23:02:39.285 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-osd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 17 M 2024-08-22T23:02:39.285 INFO:teuthology.orchestra.run.smithi131.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-08-22T23:02:39.285 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-08-22T23:02:39.285 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-08-22T23:02:39.285 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-08-22T23:02:39.286 INFO:teuthology.orchestra.run.smithi131.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-08-22T23:02:39.287 INFO:teuthology.orchestra.run.smithi131.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:39.288 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:02:39.289 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:39.289 INFO:teuthology.orchestra.run.smithi131.stdout:Install 33 Packages 2024-08-22T23:02:39.289 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:39.290 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 29 M 2024-08-22T23:02:39.290 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 104 M 2024-08-22T23:02:39.290 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:02:39.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2024-08-22T23:02:39.322 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:39.322 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:02:39.322 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-test-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:39.322 INFO:teuthology.orchestra.run.smithi160.stdout: libcephsqlite-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:39.322 INFO:teuthology.orchestra.run.smithi160.stdout: socat-1.7.4.1-6.el9.x86_64 2024-08-22T23:02:39.322 INFO:teuthology.orchestra.run.smithi160.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2024-08-22T23:02:39.323 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:39.323 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:39.485 INFO:teuthology.orchestra.run.smithi144.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 113 kB/s | 35 kB 00:00 2024-08-22T23:02:39.519 INFO:teuthology.orchestra.run.smithi144.stdout:(14/33): python3-pytz-2021.1-5.el9.noarch.rpm 165 kB/s | 51 kB 00:00 2024-08-22T23:02:39.544 INFO:teuthology.orchestra.run.smithi144.stdout:(15/33): python3-mako-1.1.4-6.el9.noarch.rpm 421 kB/s | 172 kB 00:00 2024-08-22T23:02:39.596 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph 2024-08-22T23:02:39.611 INFO:teuthology.orchestra.run.smithi144.stdout:(16/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 472 kB/s | 43 kB 00:00 2024-08-22T23:02:39.636 INFO:teuthology.orchestra.run.smithi144.stdout:(17/33): python3-toml-0.10.2-6.el9.noarch.rpm 276 kB/s | 42 kB 00:00 2024-08-22T23:02:39.678 INFO:teuthology.orchestra.run.smithi144.stdout:(18/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.3 MB/s | 172 kB 00:00 2024-08-22T23:02:39.703 INFO:teuthology.orchestra.run.smithi144.stdout:(19/33): python3-cherrypy-18.6.1-2.el9.noarch.r 3.8 MB/s | 358 kB 00:00 2024-08-22T23:02:39.729 INFO:teuthology.orchestra.run.smithi144.stdout:(20/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 116 kB/s | 11 kB 00:00 2024-08-22T23:02:39.754 INFO:teuthology.orchestra.run.smithi144.stdout:(21/33): python3-jaraco-classes-3.2.1-5.el9.noa 239 kB/s | 18 kB 00:00 2024-08-22T23:02:39.779 INFO:teuthology.orchestra.run.smithi144.stdout:(22/33): python3-jaraco-collections-3.0.0-8.el9 306 kB/s | 23 kB 00:00 2024-08-22T23:02:39.804 INFO:teuthology.orchestra.run.smithi144.stdout:(23/33): python3-jaraco-functools-3.5.0-2.el9.n 258 kB/s | 19 kB 00:00 2024-08-22T23:02:39.830 INFO:teuthology.orchestra.run.smithi144.stdout:(24/33): python3-jaraco-text-3.2.0-6.el9.noarch 261 kB/s | 20 kB 00:00 2024-08-22T23:02:39.855 INFO:teuthology.orchestra.run.smithi144.stdout:(25/33): python3-logutils-0.3.5-21.el9.noarch.r 923 kB/s | 46 kB 00:00 2024-08-22T23:02:39.880 INFO:teuthology.orchestra.run.smithi144.stdout:(26/33): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-08-22T23:02:39.906 INFO:teuthology.orchestra.run.smithi144.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 325 kB/s | 16 kB 00:00 2024-08-22T23:02:39.931 INFO:teuthology.orchestra.run.smithi144.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-08-22T23:02:39.956 INFO:teuthology.orchestra.run.smithi144.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 711 kB/s | 36 kB 00:00 2024-08-22T23:02:39.981 INFO:teuthology.orchestra.run.smithi144.stdout:(30/33): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-08-22T23:02:40.015 INFO:teuthology.orchestra.run.smithi144.stdout:(31/33): python3-webob-1.8.7-6.el9.noarch.rpm 2.7 MB/s | 230 kB 00:00 2024-08-22T23:02:40.032 INFO:teuthology.orchestra.run.smithi144.stdout:(32/33): python3-zc-lockfile-2.0-10.el9.noarch. 399 kB/s | 20 kB 00:00 2024-08-22T23:02:40.057 INFO:teuthology.orchestra.run.smithi144.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-08-22T23:02:40.062 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:40.062 INFO:teuthology.orchestra.run.smithi144.stdout:Total 12 MB/s | 29 MB 00:02 2024-08-22T23:02:40.145 INFO:teuthology.orchestra.run.smithi131.stdout:(1/33): ceph-18.2.4-723.g56fd5b35.el9.x86_64.rp 42 kB/s | 6.5 kB 00:00 2024-08-22T23:02:40.177 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:36 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:40.186 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:02:40.224 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:02:40.224 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:02:40.316 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:40.318 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:40.318 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:02:40.318 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:40.318 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:02:40.318 INFO:teuthology.orchestra.run.smithi160.stdout: ceph x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 6.5 k 2024-08-22T23:02:40.318 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mds x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 2.1 M 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 1.5 M 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-modules-core noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 246 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mon x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 4.7 M 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-osd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 17 M 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cheroot noarch 8.6.0-4.el9 epel 172 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cryptography x86_64 36.0.1-4.el9 baseos 1.2 M 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2024-08-22T23:02:40.319 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-text noarch 3.2.0-6.el9 epel 20 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2024-08-22T23:02:40.320 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pytz noarch 2021.1-5.el9 appstream 51 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests noarch 2.25.1-8.el9 baseos 125 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urllib3 noarch 1.26.5-6.el9 baseos 215 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-webob noarch 1.8.7-6.el9 epel 230 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout:Install 33 Packages 2024-08-22T23:02:40.321 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:40.322 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 29 M 2024-08-22T23:02:40.322 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 104 M 2024-08-22T23:02:40.322 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:02:40.387 INFO:teuthology.orchestra.run.smithi131.stdout:(2/33): ceph-mds-18.2.4-723.g56fd5b35.el9.x86_6 5.3 MB/s | 2.1 MB 00:00 2024-08-22T23:02:40.437 INFO:teuthology.orchestra.run.smithi131.stdout:(3/33): ceph-mgr-18.2.4-723.g56fd5b35.el9.x86_6 3.3 MB/s | 1.5 MB 00:00 2024-08-22T23:02:40.511 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:02:40.511 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:02:40.537 INFO:teuthology.orchestra.run.smithi131.stdout:(4/33): ceph-mgr-modules-core-18.2.4-723.g56fd5 2.4 MB/s | 246 kB 00:00 2024-08-22T23:02:40.754 INFO:teuthology.orchestra.run.smithi160.stdout:(1/33): ceph-18.2.4-723.g56fd5b35.el9.x86_64.rp 26 kB/s | 6.5 kB 00:00 2024-08-22T23:02:40.754 INFO:teuthology.orchestra.run.smithi131.stdout:(5/33): ceph-mon-18.2.4-723.g56fd5b35.el9.x86_6 7.7 MB/s | 4.7 MB 00:00 2024-08-22T23:02:40.796 INFO:teuthology.orchestra.run.smithi131.stdout:(6/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 979 kB/s | 253 kB 00:00 2024-08-22T23:02:40.963 INFO:teuthology.orchestra.run.smithi131.stdout:(7/33): ceph-osd-18.2.4-723.g56fd5b35.el9.x86_6 29 MB/s | 17 MB 00:00 2024-08-22T23:02:40.988 INFO:teuthology.orchestra.run.smithi131.stdout:(8/33): python3-ply-3.11-14.el9.noarch.rpm 556 kB/s | 106 kB 00:00 2024-08-22T23:02:40.995 INFO:teuthology.orchestra.run.smithi160.stdout:(2/33): ceph-mgr-18.2.4-723.g56fd5b35.el9.x86_6 3.0 MB/s | 1.5 MB 00:00 2024-08-22T23:02:41.046 INFO:teuthology.orchestra.run.smithi160.stdout:(3/33): ceph-mds-18.2.4-723.g56fd5b35.el9.x86_6 3.9 MB/s | 2.1 MB 00:00 2024-08-22T23:02:41.047 INFO:teuthology.orchestra.run.smithi131.stdout:(9/33): python3-requests-2.25.1-8.el9.noarch.rp 2.1 MB/s | 125 kB 00:00 2024-08-22T23:02:41.104 INFO:teuthology.orchestra.run.smithi160.stdout:(4/33): ceph-mgr-modules-core-18.2.4-723.g56fd5 4.1 MB/s | 246 kB 00:00 2024-08-22T23:02:41.114 INFO:teuthology.orchestra.run.smithi131.stdout:(10/33): python3-urllib3-1.26.5-6.el9.noarch.rp 3.2 MB/s | 215 kB 00:00 2024-08-22T23:02:41.214 INFO:teuthology.orchestra.run.smithi131.stdout:(11/33): python3-pycparser-2.20-6.el9.noarch.rp 539 kB/s | 135 kB 00:00 2024-08-22T23:02:41.248 INFO:teuthology.orchestra.run.smithi131.stdout:(12/33): python3-cryptography-36.0.1-4.el9.x86_ 2.5 MB/s | 1.2 MB 00:00 2024-08-22T23:02:41.279 INFO:teuthology.orchestra.run.smithi160.stdout:(5/33): ceph-mon-18.2.4-723.g56fd5b35.el9.x86_6 8.9 MB/s | 4.7 MB 00:00 2024-08-22T23:02:41.298 INFO:teuthology.orchestra.run.smithi131.stdout:(13/33): python3-mako-1.1.4-6.el9.noarch.rpm 936 kB/s | 172 kB 00:00 2024-08-22T23:02:41.332 INFO:teuthology.orchestra.run.smithi131.stdout:(14/33): python3-markupsafe-1.1.1-12.el9.x86_64 296 kB/s | 35 kB 00:00 2024-08-22T23:02:41.357 INFO:teuthology.orchestra.run.smithi131.stdout:(15/33): python3-toml-0.10.2-6.el9.noarch.rpm 712 kB/s | 42 kB 00:00 2024-08-22T23:02:41.371 INFO:teuthology.orchestra.run.smithi160.stdout:(6/33): python3-cffi-1.14.5-5.el9.x86_64.rpm 949 kB/s | 253 kB 00:00 2024-08-22T23:02:41.408 INFO:teuthology.orchestra.run.smithi131.stdout:(16/33): python3-pytz-2021.1-5.el9.noarch.rpm 320 kB/s | 51 kB 00:00 2024-08-22T23:02:41.430 INFO:teuthology.orchestra.run.smithi160.stdout:(7/33): python3-ply-3.11-14.el9.noarch.rpm 1.8 MB/s | 106 kB 00:00 2024-08-22T23:02:41.458 INFO:teuthology.orchestra.run.smithi131.stdout:(17/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 346 kB/s | 43 kB 00:00 2024-08-22T23:02:41.488 INFO:teuthology.orchestra.run.smithi160.stdout:(8/33): python3-pycparser-2.20-6.el9.noarch.rpm 2.3 MB/s | 135 kB 00:00 2024-08-22T23:02:41.491 INFO:teuthology.orchestra.run.smithi131.stdout:(18/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 340 kB/s | 11 kB 00:00 2024-08-22T23:02:41.517 INFO:teuthology.orchestra.run.smithi131.stdout:(19/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 1.1 MB/s | 172 kB 00:00 2024-08-22T23:02:41.534 INFO:teuthology.orchestra.run.smithi131.stdout:(20/33): python3-jaraco-classes-3.2.1-5.el9.noa 420 kB/s | 18 kB 00:00 2024-08-22T23:02:41.539 INFO:teuthology.orchestra.run.smithi160.stdout:(9/33): python3-cryptography-36.0.1-4.el9.x86_6 4.7 MB/s | 1.2 MB 00:00 2024-08-22T23:02:41.551 INFO:teuthology.orchestra.run.smithi131.stdout:(21/33): python3-jaraco-collections-3.0.0-8.el9 687 kB/s | 23 kB 00:00 2024-08-22T23:02:41.564 INFO:teuthology.orchestra.run.smithi160.stdout:(10/33): python3-requests-2.25.1-8.el9.noarch.r 1.6 MB/s | 125 kB 00:00 2024-08-22T23:02:41.567 INFO:teuthology.orchestra.run.smithi131.stdout:(22/33): python3-jaraco-functools-3.5.0-2.el9.n 582 kB/s | 19 kB 00:00 2024-08-22T23:02:41.585 INFO:teuthology.orchestra.run.smithi131.stdout:(23/33): python3-jaraco-text-3.2.0-6.el9.noarch 582 kB/s | 20 kB 00:00 2024-08-22T23:02:41.589 INFO:teuthology.orchestra.run.smithi160.stdout:(11/33): python3-urllib3-1.26.5-6.el9.noarch.rp 4.2 MB/s | 215 kB 00:00 2024-08-22T23:02:41.602 INFO:teuthology.orchestra.run.smithi131.stdout:(24/33): python3-logutils-0.3.5-21.el9.noarch.r 1.3 MB/s | 46 kB 00:00 2024-08-22T23:02:41.627 INFO:teuthology.orchestra.run.smithi131.stdout:(25/33): python3-more-itertools-8.12.0-2.el9.no 1.8 MB/s | 79 kB 00:00 2024-08-22T23:02:41.652 INFO:teuthology.orchestra.run.smithi131.stdout:(26/33): python3-cherrypy-18.6.1-2.el9.noarch.r 1.5 MB/s | 358 kB 00:00 2024-08-22T23:02:41.669 INFO:teuthology.orchestra.run.smithi131.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 392 kB/s | 16 kB 00:00 2024-08-22T23:02:41.695 INFO:teuthology.orchestra.run.smithi131.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.1 MB/s | 90 kB 00:00 2024-08-22T23:02:41.720 INFO:teuthology.orchestra.run.smithi131.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 712 kB/s | 36 kB 00:00 2024-08-22T23:02:41.734 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:02:41.745 INFO:teuthology.orchestra.run.smithi131.stdout:(30/33): python3-pecan-1.4.2-3.el9.noarch.rpm 1.9 MB/s | 272 kB 00:00 2024-08-22T23:02:41.771 INFO:teuthology.orchestra.run.smithi131.stdout:(31/33): python3-webob-1.8.7-6.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-08-22T23:02:41.793 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-08-22T23:02:41.796 INFO:teuthology.orchestra.run.smithi131.stdout:(32/33): python3-zc-lockfile-2.0-10.el9.noarch. 400 kB/s | 20 kB 00:00 2024-08-22T23:02:41.821 INFO:teuthology.orchestra.run.smithi131.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.2 MB/s | 427 kB 00:00 2024-08-22T23:02:41.825 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:41.826 INFO:teuthology.orchestra.run.smithi131.stdout:Total 11 MB/s | 29 MB 00:02 2024-08-22T23:02:41.826 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-08-22T23:02:41.858 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-08-22T23:02:41.927 INFO:teuthology.orchestra.run.smithi160.stdout:(12/33): ceph-osd-18.2.4-723.g56fd5b35.el9.x86_ 18 MB/s | 17 MB 00:00 2024-08-22T23:02:41.948 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:02:41.950 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-08-22T23:02:41.956 INFO:teuthology.orchestra.run.smithi160.stdout:(13/33): python3-markupsafe-1.1.1-12.el9.x86_64 95 kB/s | 35 kB 00:00 2024-08-22T23:02:41.985 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:02:41.985 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:02:42.028 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-08-22T23:02:42.069 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 6/33 2024-08-22T23:02:42.113 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-08-22T23:02:42.142 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-08-22T23:02:42.165 INFO:teuthology.orchestra.run.smithi160.stdout:(14/33): python3-toml-0.10.2-6.el9.noarch.rpm 200 kB/s | 42 kB 00:00 2024-08-22T23:02:42.177 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-08-22T23:02:42.210 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-08-22T23:02:42.215 INFO:teuthology.orchestra.run.smithi160.stdout:(15/33): python3-mako-1.1.4-6.el9.noarch.rpm 264 kB/s | 172 kB 00:00 2024-08-22T23:02:42.249 INFO:teuthology.orchestra.run.smithi160.stdout:(16/33): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 519 kB/s | 43 kB 00:00 2024-08-22T23:02:42.259 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-08-22T23:02:42.274 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:02:42.276 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:02:42.294 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-08-22T23:02:42.302 INFO:teuthology.orchestra.run.smithi160.stdout:(17/33): python3-pytz-2021.1-5.el9.noarch.rpm 137 kB/s | 51 kB 00:00 2024-08-22T23:02:42.325 INFO:teuthology.orchestra.run.smithi160.stdout:(18/33): python3-cherrypy-18.6.1-2.el9.noarch.r 5.1 MB/s | 358 kB 00:00 2024-08-22T23:02:42.329 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-08-22T23:02:42.366 INFO:teuthology.orchestra.run.smithi160.stdout:(19/33): python3-jaraco-classes-3.2.1-5.el9.noa 514 kB/s | 18 kB 00:00 2024-08-22T23:02:42.367 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-08-22T23:02:42.400 INFO:teuthology.orchestra.run.smithi160.stdout:(20/33): python3-cheroot-8.6.0-4.el9.noarch.rpm 930 kB/s | 172 kB 00:00 2024-08-22T23:02:42.425 INFO:teuthology.orchestra.run.smithi160.stdout:(21/33): python3-jaraco-8.2.1-3.el9.noarch.rpm 86 kB/s | 11 kB 00:00 2024-08-22T23:02:42.431 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-08-22T23:02:42.451 INFO:teuthology.orchestra.run.smithi160.stdout:(22/33): python3-jaraco-collections-3.0.0-8.el9 282 kB/s | 23 kB 00:00 2024-08-22T23:02:42.476 INFO:teuthology.orchestra.run.smithi160.stdout:(23/33): python3-jaraco-functools-3.5.0-2.el9.n 257 kB/s | 19 kB 00:00 2024-08-22T23:02:42.501 INFO:teuthology.orchestra.run.smithi160.stdout:(24/33): python3-jaraco-text-3.2.0-6.el9.noarch 260 kB/s | 20 kB 00:00 2024-08-22T23:02:42.527 INFO:teuthology.orchestra.run.smithi160.stdout:(25/33): python3-logutils-0.3.5-21.el9.noarch.r 612 kB/s | 46 kB 00:00 2024-08-22T23:02:42.552 INFO:teuthology.orchestra.run.smithi160.stdout:(26/33): python3-more-itertools-8.12.0-2.el9.no 1.0 MB/s | 79 kB 00:00 2024-08-22T23:02:42.570 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-08-22T23:02:42.577 INFO:teuthology.orchestra.run.smithi160.stdout:(27/33): python3-portend-3.1.0-2.el9.noarch.rpm 328 kB/s | 16 kB 00:00 2024-08-22T23:02:42.602 INFO:teuthology.orchestra.run.smithi160.stdout:(28/33): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.7 MB/s | 90 kB 00:00 2024-08-22T23:02:42.628 INFO:teuthology.orchestra.run.smithi160.stdout:(29/33): python3-tempora-5.0.0-2.el9.noarch.rpm 710 kB/s | 36 kB 00:00 2024-08-22T23:02:42.651 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-08-22T23:02:42.653 INFO:teuthology.orchestra.run.smithi160.stdout:(30/33): python3-pecan-1.4.2-3.el9.noarch.rpm 1.8 MB/s | 272 kB 00:00 2024-08-22T23:02:42.678 INFO:teuthology.orchestra.run.smithi160.stdout:(31/33): python3-webob-1.8.7-6.el9.noarch.rpm 3.0 MB/s | 230 kB 00:00 2024-08-22T23:02:42.695 INFO:teuthology.orchestra.run.smithi160.stdout:(32/33): python3-zc-lockfile-2.0-10.el9.noarch. 478 kB/s | 20 kB 00:00 2024-08-22T23:02:42.703 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-08-22T23:02:42.720 INFO:teuthology.orchestra.run.smithi160.stdout:(33/33): python3-werkzeug-2.0.3-3.el9.1.noarch. 4.5 MB/s | 427 kB 00:00 2024-08-22T23:02:42.724 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:42.724 INFO:teuthology.orchestra.run.smithi160.stdout:Total 12 MB/s | 29 MB 00:02 2024-08-22T23:02:42.742 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-08-22T23:02:42.791 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-08-22T23:02:42.847 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-08-22T23:02:42.848 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:02:42.885 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:02:42.885 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:02:43.033 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-08-22T23:02:43.080 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-08-22T23:02:43.157 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-08-22T23:02:43.173 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:02:43.174 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:02:43.245 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-08-22T23:02:43.295 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-08-22T23:02:43.412 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-08-22T23:02:43.510 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:02:43.565 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-08-22T23:02:43.571 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.n 28/33 2024-08-22T23:02:43.598 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-08-22T23:02:43.598 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 29/33 2024-08-22T23:02:43.623 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 29/33 2024-08-22T23:02:43.624 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:43.624 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-08-22T23:02:43.624 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-08-22T23:02:43.624 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-08-22T23:02:43.624 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:43.630 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-08-22T23:02:43.722 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-08-22T23:02:43.801 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-08-22T23:02:43.842 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 6/33 2024-08-22T23:02:43.885 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-08-22T23:02:43.915 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-08-22T23:02:43.950 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-08-22T23:02:43.983 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-08-22T23:02:44.024 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-08-22T23:02:44.067 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-08-22T23:02:44.094 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-08-22T23:02:44.123 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-08-22T23:02:44.198 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-08-22T23:02:44.342 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-08-22T23:02:44.389 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:02:44.424 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-08-22T23:02:44.448 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/33 2024-08-22T23:02:44.480 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/33 2024-08-22T23:02:44.485 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-08-22T23:02:44.513 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 3/33 2024-08-22T23:02:44.524 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-08-22T23:02:44.582 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-08-22T23:02:44.607 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 4/33 2024-08-22T23:02:44.644 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-08-22T23:02:44.692 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 5/33 2024-08-22T23:02:44.733 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-webob-1.8.7-6.el9.noarch 6/33 2024-08-22T23:02:44.767 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 7/33 2024-08-22T23:02:44.789 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 8/33 2024-08-22T23:02:44.823 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 9/33 2024-08-22T23:02:44.831 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-08-22T23:02:44.857 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-text-3.2.0-6.el9.noarch 10/33 2024-08-22T23:02:44.878 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-08-22T23:02:44.897 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 11/33 2024-08-22T23:02:44.941 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pytz-2021.1-5.el9.noarch 12/33 2024-08-22T23:02:44.949 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-08-22T23:02:44.975 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 13/33 2024-08-22T23:02:45.013 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 14/33 2024-08-22T23:02:45.038 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-08-22T23:02:45.078 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-08-22T23:02:45.088 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 15/33 2024-08-22T23:02:45.092 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 30/33 2024-08-22T23:02:45.120 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 30/33 2024-08-22T23:02:45.121 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:45.121 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-08-22T23:02:45.121 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-08-22T23:02:45.121 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-08-22T23:02:45.121 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:45.194 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-08-22T23:02:45.236 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 16/33 2024-08-22T23:02:45.313 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 17/33 2024-08-22T23:02:45.346 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.n 28/33 2024-08-22T23:02:45.372 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 29/33 2024-08-22T23:02:45.392 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-urllib3-1.26.5-6.el9.noarch 18/33 2024-08-22T23:02:45.398 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 29/33 2024-08-22T23:02:45.398 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:45.398 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-08-22T23:02:45.398 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-08-22T23:02:45.398 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-08-22T23:02:45.398 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:45.430 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-requests-2.25.1-8.el9.noarch 19/33 2024-08-22T23:02:45.487 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-ply-3.11-14.el9.noarch 20/33 2024-08-22T23:02:45.543 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 21/33 2024-08-22T23:02:45.559 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 31/33 2024-08-22T23:02:45.583 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 31/33 2024-08-22T23:02:45.586 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:45.586 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-08-22T23:02:45.586 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-08-22T23:02:45.586 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-08-22T23:02:45.586 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:45.734 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 22/33 2024-08-22T23:02:45.785 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 32/33 2024-08-22T23:02:45.792 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cryptography-36.0.1-4.el9.x86_64 23/33 2024-08-22T23:02:45.813 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 32/33 2024-08-22T23:02:45.813 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:45.813 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-08-22T23:02:45.813 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-08-22T23:02:45.813 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-08-22T23:02:45.813 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:45.871 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 24/33 2024-08-22T23:02:45.960 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cheroot-8.6.0-4.el9.noarch 25/33 2024-08-22T23:02:45.999 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 26/33 2024-08-22T23:02:46.030 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 33/33 2024-08-22T23:02:46.118 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 27/33 2024-08-22T23:02:46.275 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.n 28/33 2024-08-22T23:02:46.301 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 29/33 2024-08-22T23:02:46.327 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 29/33 2024-08-22T23:02:46.327 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:46.327 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2024-08-22T23:02:46.327 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-08-22T23:02:46.327 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2024-08-22T23:02:46.328 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:46.857 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 30/33 2024-08-22T23:02:46.886 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 30/33 2024-08-22T23:02:46.886 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:46.887 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-08-22T23:02:46.887 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-08-22T23:02:46.887 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-08-22T23:02:46.887 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:47.324 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 31/33 2024-08-22T23:02:47.348 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 31/33 2024-08-22T23:02:47.349 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:47.349 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-08-22T23:02:47.349 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-08-22T23:02:47.349 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-08-22T23:02:47.349 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 33/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 1/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 2/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 3/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 4/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 5/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.n 6/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-08-22T23:02:47.568 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-08-22T23:02:47.569 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 31/33 2024-08-22T23:02:47.570 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-08-22T23:02:47.571 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 32/33 2024-08-22T23:02:47.591 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 32/33 2024-08-22T23:02:47.591 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:47.591 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-08-22T23:02:47.591 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-08-22T23:02:47.591 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-08-22T23:02:47.591 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:47.654 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 33/33 2024-08-22T23:02:47.744 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 30/33 2024-08-22T23:02:47.774 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 30/33 2024-08-22T23:02:47.774 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:47.774 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2024-08-22T23:02:47.774 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-08-22T23:02:47.774 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2024-08-22T23:02:47.774 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:48.246 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 31/33 2024-08-22T23:02:48.271 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 31/33 2024-08-22T23:02:48.271 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:48.271 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2024-08-22T23:02:48.271 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-08-22T23:02:48.271 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2024-08-22T23:02:48.271 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:48.487 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 32/33 2024-08-22T23:02:48.512 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 32/33 2024-08-22T23:02:48.512 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:48.512 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2024-08-22T23:02:48.512 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-08-22T23:02:48.512 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2024-08-22T23:02:48.512 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:48.574 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-08-22T23:02:48.574 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:48.574 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:02:48.574 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:48.574 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-08-22T23:02:48.575 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-mako-1.1.4-6.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-ply-3.11-14.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-portend-3.1.0-2.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pycparser-2.20-6.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pytz-2021.1-5.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-requests-2.25.1-8.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-08-22T23:02:48.576 INFO:teuthology.orchestra.run.smithi144.stdout: python3-toml-0.10.2-6.el9.noarch 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi144.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi144.stdout: python3-webob-1.8.7-6.el9.noarch 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi144.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi144.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:48.577 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 33/33 2024-08-22T23:02:48.903 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-base 2024-08-22T23:02:49.349 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 33/33 2024-08-22T23:02:49.349 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 1/33 2024-08-22T23:02:49.350 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 2/33 2024-08-22T23:02:49.350 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 3/33 2024-08-22T23:02:49.350 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 4/33 2024-08-22T23:02:49.350 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 5/33 2024-08-22T23:02:49.350 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.n 6/33 2024-08-22T23:02:49.351 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-08-22T23:02:49.351 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-08-22T23:02:49.351 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-08-22T23:02:49.351 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-08-22T23:02:49.351 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-08-22T23:02:49.351 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-08-22T23:02:49.352 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-08-22T23:02:49.352 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-08-22T23:02:49.353 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-08-22T23:02:49.353 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-08-22T23:02:49.353 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-08-22T23:02:49.353 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-08-22T23:02:49.353 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-08-22T23:02:49.353 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-08-22T23:02:49.354 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-08-22T23:02:49.355 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 31/33 2024-08-22T23:02:49.355 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-08-22T23:02:49.480 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:48 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:49.565 INFO:teuthology.orchestra.run.smithi144.stdout:Package ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:02:49.607 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:49.608 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:02:49.608 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:49.675 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install cephadm 2024-08-22T23:02:50.241 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:49 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-08-22T23:02:50.244 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-mako-1.1.4-6.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-08-22T23:02:50.245 INFO:teuthology.orchestra.run.smithi131.stdout: python3-ply-3.11-14.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-portend-3.1.0-2.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pycparser-2.20-6.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pytz-2021.1-5.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-requests-2.25.1-8.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-toml-0.10.2-6.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-webob-1.8.7-6.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:50.246 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:50.317 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 33/33 2024-08-22T23:02:50.318 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 1/33 2024-08-22T23:02:50.318 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 2/33 2024-08-22T23:02:50.318 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 3/33 2024-08-22T23:02:50.318 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 4/33 2024-08-22T23:02:50.318 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 5/33 2024-08-22T23:02:50.318 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.n 6/33 2024-08-22T23:02:50.319 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 7/33 2024-08-22T23:02:50.319 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cryptography-36.0.1-4.el9.x86_64 8/33 2024-08-22T23:02:50.319 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-ply-3.11-14.el9.noarch 9/33 2024-08-22T23:02:50.319 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 10/33 2024-08-22T23:02:50.319 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-requests-2.25.1-8.el9.noarch 11/33 2024-08-22T23:02:50.320 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-urllib3-1.26.5-6.el9.noarch 12/33 2024-08-22T23:02:50.320 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 13/33 2024-08-22T23:02:50.320 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 14/33 2024-08-22T23:02:50.320 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 15/33 2024-08-22T23:02:50.320 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 16/33 2024-08-22T23:02:50.320 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 17/33 2024-08-22T23:02:50.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cheroot-8.6.0-4.el9.noarch 18/33 2024-08-22T23:02:50.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 19/33 2024-08-22T23:02:50.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 20/33 2024-08-22T23:02:50.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 21/33 2024-08-22T23:02:50.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 22/33 2024-08-22T23:02:50.321 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 23/33 2024-08-22T23:02:50.322 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jaraco-text-3.2.0-6.el9.noarch 24/33 2024-08-22T23:02:50.322 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 25/33 2024-08-22T23:02:50.322 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 26/33 2024-08-22T23:02:50.322 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 27/33 2024-08-22T23:02:50.322 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 28/33 2024-08-22T23:02:50.322 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 29/33 2024-08-22T23:02:50.323 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 30/33 2024-08-22T23:02:50.323 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-webob-1.8.7-6.el9.noarch 31/33 2024-08-22T23:02:50.323 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 32/33 2024-08-22T23:02:50.369 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:50.369 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:50.369 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:02:50.369 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:50.370 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:02:50.370 INFO:teuthology.orchestra.run.smithi144.stdout: cephadm noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 224 k 2024-08-22T23:02:50.370 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:50.370 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:02:50.370 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:50.371 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:02:50.371 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:50.371 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 224 k 2024-08-22T23:02:50.371 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 216 k 2024-08-22T23:02:50.371 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:02:50.574 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-base 2024-08-22T23:02:50.651 INFO:teuthology.orchestra.run.smithi144.stdout:cephadm-18.2.4-723.g56fd5b35.el9.noarch.rpm 798 kB/s | 224 kB 00:00 2024-08-22T23:02:50.652 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:50.652 INFO:teuthology.orchestra.run.smithi144.stdout:Total 793 kB/s | 224 kB 00:00 2024-08-22T23:02:50.652 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:02:50.657 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:02:50.657 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:02:50.660 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:02:50.660 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:02:50.728 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:02:51.130 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:51.149 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:47 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:51.212 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:51.235 INFO:teuthology.orchestra.run.smithi131.stdout:Package ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:02:51.277 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:51.278 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:02:51.278 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 33/33 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mds-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-modules-core-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mon-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-osd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:51.325 INFO:teuthology.orchestra.run.smithi160.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cffi-1.14.5-5.el9.x86_64 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cheroot-8.6.0-4.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cryptography-36.0.1-4.el9.x86_64 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-8.2.1-3.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jaraco-text-3.2.0-6.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-logutils-0.3.5-21.el9.noarch 2024-08-22T23:02:51.326 INFO:teuthology.orchestra.run.smithi160.stdout: python3-mako-1.1.4-6.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pecan-1.4.2-3.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-ply-3.11-14.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-portend-3.1.0-2.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pycparser-2.20-6.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pytz-2021.1-5.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-2.25.1-8.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-tempora-5.0.0-2.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-toml-0.10.2-6.el9.noarch 2024-08-22T23:02:51.327 INFO:teuthology.orchestra.run.smithi160.stdout: python3-urllib3-1.26.5-6.el9.noarch 2024-08-22T23:02:51.328 INFO:teuthology.orchestra.run.smithi160.stdout: python3-webob-1.8.7-6.el9.noarch 2024-08-22T23:02:51.328 INFO:teuthology.orchestra.run.smithi160.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2024-08-22T23:02:51.328 INFO:teuthology.orchestra.run.smithi160.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2024-08-22T23:02:51.328 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:51.328 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:51.342 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install cephadm 2024-08-22T23:02:51.562 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:51.632 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-base 2024-08-22T23:02:51.812 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:51.812 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:51.812 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:02:51.813 INFO:teuthology.orchestra.run.smithi144.stdout: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:02:51.813 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:51.813 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:51.913 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:47 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:52.023 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-immutable-object-cache 2024-08-22T23:02:52.040 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:52.040 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout: cephadm noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 224 k 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:52.041 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 224 k 2024-08-22T23:02:52.042 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 216 k 2024-08-22T23:02:52.042 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:02:52.221 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:48 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:52.306 INFO:teuthology.orchestra.run.smithi160.stdout:Package ceph-base-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:02:52.348 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:52.349 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:02:52.349 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:52.413 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install cephadm 2024-08-22T23:02:52.608 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:51 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:52.684 INFO:teuthology.orchestra.run.smithi131.stdout:cephadm-18.2.4-723.g56fd5b35.el9.noarch.rpm 350 kB/s | 224 kB 00:00 2024-08-22T23:02:52.684 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:52.685 INFO:teuthology.orchestra.run.smithi131.stdout:Total 349 kB/s | 224 kB 00:00 2024-08-22T23:02:52.685 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:02:52.690 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:02:52.690 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:02:52.693 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:02:52.694 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:02:52.741 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:52.741 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:52.741 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repo Size 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 143 k 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:02:52.742 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:52.743 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 143 k 2024-08-22T23:02:52.743 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 395 k 2024-08-22T23:02:52.743 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:02:52.766 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:02:52.977 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:48 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:53.103 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout: cephadm noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 224 k 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 224 k 2024-08-22T23:02:53.104 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 216 k 2024-08-22T23:02:53.105 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:02:53.124 INFO:teuthology.orchestra.run.smithi144.stdout:ceph-immutable-object-cache-18.2.4-723.g56fd5b3 374 kB/s | 143 kB 00:00 2024-08-22T23:02:53.124 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:53.125 INFO:teuthology.orchestra.run.smithi144.stdout:Total 373 kB/s | 143 kB 00:00 2024-08-22T23:02:53.125 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:02:53.132 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:02:53.132 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:02:53.166 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:53.191 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:02:53.191 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:02:53.255 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:53.333 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:02:53.383 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:53.408 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:53.409 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:53.409 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-08-22T23:02:53.409 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:53.609 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:53.718 INFO:teuthology.orchestra.run.smithi160.stdout:cephadm-18.2.4-723.g56fd5b35.el9.noarch.rpm 366 kB/s | 224 kB 00:00 2024-08-22T23:02:53.719 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:53.719 INFO:teuthology.orchestra.run.smithi160.stdout:Total 365 kB/s | 224 kB 00:00 2024-08-22T23:02:53.720 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:02:53.725 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:02:53.725 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:02:53.728 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:02:53.728 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:02:53.800 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:02:53.844 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:53.844 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:53.844 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:02:53.845 INFO:teuthology.orchestra.run.smithi131.stdout: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:02:53.845 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:53.845 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:54.048 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-immutable-object-cache 2024-08-22T23:02:54.207 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:54.287 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:54.291 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:54.291 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:54.291 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:02:54.291 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:54.291 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:54.291 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:54.488 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-mgr 2024-08-22T23:02:54.609 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:54.617 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:50 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:54.747 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:54.747 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repo Size 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 143 k 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 143 k 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 395 k 2024-08-22T23:02:54.748 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:02:54.846 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/1 2024-08-22T23:02:54.846 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:54.846 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:02:54.846 INFO:teuthology.orchestra.run.smithi160.stdout: cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:02:54.847 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:54.847 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:55.039 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-immutable-object-cache 2024-08-22T23:02:55.074 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:54 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:55.161 INFO:teuthology.orchestra.run.smithi144.stdout:Package ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:02:55.203 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:55.203 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:02:55.204 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:02:55.271 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-mgr-dashboard 2024-08-22T23:02:55.299 INFO:teuthology.orchestra.run.smithi131.stdout:ceph-immutable-object-cache-18.2.4-723.g56fd5b3 259 kB/s | 143 kB 00:00 2024-08-22T23:02:55.299 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:55.300 INFO:teuthology.orchestra.run.smithi131.stdout:Total 258 kB/s | 143 kB 00:00 2024-08-22T23:02:55.300 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:02:55.308 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:02:55.308 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:02:55.366 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:02:55.367 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:02:55.512 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:02:55.592 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:55.617 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:55.617 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:55.617 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-08-22T23:02:55.617 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:55.618 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:51 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:55.747 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:55.748 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:55.748 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-08-22T23:02:55.748 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:55.748 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-immutable-object-cache x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 143 k 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 143 k 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 395 k 2024-08-22T23:02:55.749 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:02:55.831 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:54 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:02:55.958 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:02:55.958 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-dashboard noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 3.5 M 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-grafana-dashboards noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 24 k 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-prometheus-alerts noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 16 k 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:02:55.959 INFO:teuthology.orchestra.run.smithi144.stdout:Install 5 Packages 2024-08-22T23:02:55.960 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:02:55.960 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 3.8 M 2024-08-22T23:02:55.960 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 87 M 2024-08-22T23:02:55.960 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:02:56.307 INFO:teuthology.orchestra.run.smithi160.stdout:ceph-immutable-object-cache-18.2.4-723.g56fd5b3 256 kB/s | 143 kB 00:00 2024-08-22T23:02:56.308 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:56.308 INFO:teuthology.orchestra.run.smithi160.stdout:Total 255 kB/s | 143 kB 00:00 2024-08-22T23:02:56.308 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:02:56.315 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:02:56.315 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:02:56.337 INFO:teuthology.orchestra.run.smithi144.stdout:(1/5): ceph-grafana-dashboards-18.2.4-723.g56fd 72 kB/s | 24 kB 00:00 2024-08-22T23:02:56.362 INFO:teuthology.orchestra.run.smithi144.stdout:(2/5): ceph-prometheus-alerts-18.2.4-723.g56fd5 45 kB/s | 16 kB 00:00 2024-08-22T23:02:56.372 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:02:56.373 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:02:56.429 INFO:teuthology.orchestra.run.smithi144.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 335 kB/s | 31 kB 00:00 2024-08-22T23:02:56.471 INFO:teuthology.orchestra.run.smithi144.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 1.7 MB/s | 188 kB 00:00 2024-08-22T23:02:56.513 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:02:56.520 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:56.520 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:56.520 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:02:56.521 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:56.521 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:56.521 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:56.567 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:56.593 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:56.593 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:02:56.593 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2024-08-22T23:02:56.593 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:56.719 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-mgr 2024-08-22T23:02:57.138 INFO:teuthology.orchestra.run.smithi144.stdout:(5/5): ceph-mgr-dashboard-18.2.4-723.g56fd5b35. 3.1 MB/s | 3.5 MB 00:01 2024-08-22T23:02:57.141 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:57.141 INFO:teuthology.orchestra.run.smithi144.stdout:Total 3.2 MB/s | 3.8 MB 00:01 2024-08-22T23:02:57.141 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:02:57.149 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:02:57.149 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:02:57.210 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:02:57.210 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:02:57.316 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:53 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:57.401 INFO:teuthology.orchestra.run.smithi131.stdout:Package ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:02:57.442 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:57.443 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:02:57.443 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:02:57.458 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:02:57.507 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-mgr-dashboard 2024-08-22T23:02:57.519 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.e 1/1 2024-08-22T23:02:57.519 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:57.519 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:02:57.519 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-immutable-object-cache-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:02:57.519 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:57.520 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:57.543 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-08-22T23:02:57.584 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-08-22T23:02:57.613 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.no 3/5 2024-08-22T23:02:57.718 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr 2024-08-22T23:02:58.070 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:54 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:58.197 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:02:58.197 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:58.197 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:02:58.197 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-dashboard noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 3.5 M 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-grafana-dashboards noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 24 k 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-prometheus-alerts noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 16 k 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:02:58.198 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:02:58.199 INFO:teuthology.orchestra.run.smithi131.stdout:Install 5 Packages 2024-08-22T23:02:58.199 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:02:58.199 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 3.8 M 2024-08-22T23:02:58.199 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 87 M 2024-08-22T23:02:58.200 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:02:58.298 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:54 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:58.389 INFO:teuthology.orchestra.run.smithi160.stdout:Package ceph-mgr-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:02:58.432 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:58.433 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:02:58.433 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:02:58.454 INFO:teuthology.orchestra.run.smithi131.stdout:(1/5): ceph-grafana-dashboards-18.2.4-723.g56fd 140 kB/s | 24 kB 00:00 2024-08-22T23:02:58.479 INFO:teuthology.orchestra.run.smithi131.stdout:(2/5): ceph-prometheus-alerts-18.2.4-723.g56fd5 82 kB/s | 16 kB 00:00 2024-08-22T23:02:58.496 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-dashboard 2024-08-22T23:02:58.549 INFO:teuthology.orchestra.run.smithi131.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 324 kB/s | 31 kB 00:00 2024-08-22T23:02:58.588 INFO:teuthology.orchestra.run.smithi131.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 1.7 MB/s | 188 kB 00:00 2024-08-22T23:02:58.655 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.n 4/5 2024-08-22T23:02:58.691 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 5/5 2024-08-22T23:02:58.746 INFO:teuthology.orchestra.run.smithi131.stdout:(5/5): ceph-mgr-dashboard-18.2.4-723.g56fd5b35. 7.6 MB/s | 3.5 MB 00:00 2024-08-22T23:02:58.749 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:58.750 INFO:teuthology.orchestra.run.smithi131.stdout:Total 6.9 MB/s | 3.8 MB 00:00 2024-08-22T23:02:58.750 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:02:58.757 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:02:58.757 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:02:58.818 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:02:58.818 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:02:59.069 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:02:59.072 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:55 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:02:59.152 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-08-22T23:02:59.193 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-08-22T23:02:59.199 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:02:59.200 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:59.200 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-dashboard noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 3.5 M 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-grafana-dashboards noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 24 k 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-prometheus-alerts noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 16 k 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout:Install 5 Packages 2024-08-22T23:02:59.201 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:02:59.202 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 3.8 M 2024-08-22T23:02:59.202 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 87 M 2024-08-22T23:02:59.202 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:02:59.221 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.no 3/5 2024-08-22T23:02:59.519 INFO:teuthology.orchestra.run.smithi160.stdout:(1/5): ceph-grafana-dashboards-18.2.4-723.g56fd 162 kB/s | 24 kB 00:00 2024-08-22T23:02:59.536 INFO:teuthology.orchestra.run.smithi160.stdout:(2/5): ceph-prometheus-alerts-18.2.4-723.g56fd5 98 kB/s | 16 kB 00:00 2024-08-22T23:02:59.570 INFO:teuthology.orchestra.run.smithi160.stdout:(3/5): python3-repoze-lru-0.7-16.el9.noarch.rpm 612 kB/s | 31 kB 00:00 2024-08-22T23:02:59.603 INFO:teuthology.orchestra.run.smithi160.stdout:(4/5): python3-routes-2.5.1-5.el9.noarch.rpm 2.8 MB/s | 188 kB 00:00 2024-08-22T23:02:59.753 INFO:teuthology.orchestra.run.smithi160.stdout:(5/5): ceph-mgr-dashboard-18.2.4-723.g56fd5b35. 9.2 MB/s | 3.5 MB 00:00 2024-08-22T23:02:59.756 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:02:59.757 INFO:teuthology.orchestra.run.smithi160.stdout:Total 6.8 MB/s | 3.8 MB 00:00 2024-08-22T23:02:59.757 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:02:59.764 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:02:59.764 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:02:59.825 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:02:59.826 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 5/5 2024-08-22T23:02:59.826 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.n 1/5 2024-08-22T23:02:59.826 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 2/5 2024-08-22T23:02:59.826 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.no 3/5 2024-08-22T23:02:59.826 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-08-22T23:02:59.827 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:00.077 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-08-22T23:03:00.077 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:00.077 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:00.077 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:00.077 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:00.078 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:00.078 INFO:teuthology.orchestra.run.smithi144.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-08-22T23:03:00.078 INFO:teuthology.orchestra.run.smithi144.stdout: python3-routes-2.5.1-5.el9.noarch 2024-08-22T23:03:00.078 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:00.078 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:00.103 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:00.176 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 1/5 2024-08-22T23:03:00.208 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 2/5 2024-08-22T23:03:00.228 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.no 3/5 2024-08-22T23:03:00.263 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.n 4/5 2024-08-22T23:03:00.291 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-mgr-diskprediction-local 2024-08-22T23:03:00.292 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 5/5 2024-08-22T23:03:00.858 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:00:59 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:00.986 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout:====================================================================================== 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout:====================================================================================== 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 7.4 M 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-08-22T23:03:00.987 INFO:teuthology.orchestra.run.smithi144.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: openblas x86_64 0.3.26-1.el9 appstream 38 k 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: openblas-openmp x86_64 0.3.26-1.el9 appstream 4.9 M 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: python3-devel x86_64 3.9.19-7.el9 appstream 245 k 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout:====================================================================================== 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout:Install 12 Packages 2024-08-22T23:03:00.988 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:00.989 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 38 M 2024-08-22T23:03:00.989 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 212 M 2024-08-22T23:03:00.989 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:01.269 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.n 4/5 2024-08-22T23:03:01.315 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 5/5 2024-08-22T23:03:01.356 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 5/5 2024-08-22T23:03:01.356 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.n 1/5 2024-08-22T23:03:01.356 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 2/5 2024-08-22T23:03:01.356 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.no 3/5 2024-08-22T23:03:01.356 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-08-22T23:03:01.596 INFO:teuthology.orchestra.run.smithi131.stdout: python3-routes-2.5.1-5.el9.noarch 2024-08-22T23:03:01.597 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:01.597 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:01.817 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-mgr-diskprediction-local 2024-08-22T23:03:01.887 INFO:teuthology.orchestra.run.smithi144.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 372 kB/s | 191 kB 00:00 2024-08-22T23:03:01.970 INFO:teuthology.orchestra.run.smithi144.stdout:(2/12): ceph-mgr-diskprediction-local-18.2.4-72 12 MB/s | 7.4 MB 00:00 2024-08-22T23:03:02.054 INFO:teuthology.orchestra.run.smithi144.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 196 kB/s | 33 kB 00:00 2024-08-22T23:03:02.113 INFO:teuthology.orchestra.run.smithi144.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 312 kB/s | 18 kB 00:00 2024-08-22T23:03:02.163 INFO:teuthology.orchestra.run.smithi144.stdout:(5/12): openblas-0.3.26-1.el9.x86_64.rpm 767 kB/s | 38 kB 00:00 2024-08-22T23:03:02.238 INFO:teuthology.orchestra.run.smithi144.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 11 MB/s | 3.0 MB 00:00 2024-08-22T23:03:02.272 INFO:teuthology.orchestra.run.smithi144.stdout:(7/12): libgfortran-11.5.0-2.el9.x86_64.rpm 891 kB/s | 801 kB 00:00 2024-08-22T23:03:02.297 INFO:teuthology.orchestra.run.smithi144.stdout:(8/12): python3-devel-3.9.19-7.el9.x86_64.rpm 4.1 MB/s | 245 kB 00:00 2024-08-22T23:03:02.348 INFO:teuthology.orchestra.run.smithi144.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 4.9 MB/s | 250 kB 00:00 2024-08-22T23:03:02.375 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:00:58 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:02.406 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 5/5 2024-08-22T23:03:02.407 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.n 1/5 2024-08-22T23:03:02.407 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 2/5 2024-08-22T23:03:02.407 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.no 3/5 2024-08-22T23:03:02.407 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 4/5 2024-08-22T23:03:02.440 INFO:teuthology.orchestra.run.smithi144.stdout:(10/12): openblas-openmp-0.3.26-1.el9.x86_64.rp 18 MB/s | 4.9 MB 00:00 2024-08-22T23:03:02.502 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:02.503 INFO:teuthology.orchestra.run.smithi131.stdout:====================================================================================== 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout:====================================================================================== 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 7.4 M 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: openblas x86_64 0.3.26-1.el9 appstream 38 k 2024-08-22T23:03:02.504 INFO:teuthology.orchestra.run.smithi131.stdout: openblas-openmp x86_64 0.3.26-1.el9 appstream 4.9 M 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout: python3-devel x86_64 3.9.19-7.el9 appstream 245 k 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout:====================================================================================== 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout:Install 12 Packages 2024-08-22T23:03:02.505 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:02.506 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 38 M 2024-08-22T23:03:02.506 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 212 M 2024-08-22T23:03:02.506 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:02.667 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 5/5 2024-08-22T23:03:02.667 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:02.667 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:02.667 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-grafana-dashboards-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:02.667 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-dashboard-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:02.668 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-prometheus-alerts-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:02.668 INFO:teuthology.orchestra.run.smithi160.stdout: python3-repoze-lru-0.7-16.el9.noarch 2024-08-22T23:03:02.668 INFO:teuthology.orchestra.run.smithi160.stdout: python3-routes-2.5.1-5.el9.noarch 2024-08-22T23:03:02.668 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:02.668 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:02.698 INFO:teuthology.orchestra.run.smithi144.stdout:(11/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 46 MB/s | 16 MB 00:00 2024-08-22T23:03:02.765 INFO:teuthology.orchestra.run.smithi144.stdout:(12/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 10 MB/s | 5.1 MB 00:00 2024-08-22T23:03:02.766 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:02.766 INFO:teuthology.orchestra.run.smithi144.stdout:Total 21 MB/s | 38 MB 00:01 2024-08-22T23:03:02.871 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-diskprediction-local 2024-08-22T23:03:02.880 INFO:teuthology.orchestra.run.smithi131.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 894 kB/s | 191 kB 00:00 2024-08-22T23:03:02.938 INFO:teuthology.orchestra.run.smithi131.stdout:(2/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.9 MB/s | 801 kB 00:00 2024-08-22T23:03:02.955 INFO:teuthology.orchestra.run.smithi131.stdout:(3/12): flexiblas-3.0.4-8.el9.x86_64.rpm 434 kB/s | 33 kB 00:00 2024-08-22T23:03:02.997 INFO:teuthology.orchestra.run.smithi131.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 438 kB/s | 18 kB 00:00 2024-08-22T23:03:03.048 INFO:teuthology.orchestra.run.smithi131.stdout:(5/12): openblas-0.3.26-1.el9.x86_64.rpm 768 kB/s | 38 kB 00:00 2024-08-22T23:03:03.126 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:03.152 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:03.153 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:03.315 INFO:teuthology.orchestra.run.smithi131.stdout:(6/12): ceph-mgr-diskprediction-local-18.2.4-72 11 MB/s | 7.4 MB 00:00 2024-08-22T23:03:03.439 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:00:59 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:03.490 INFO:teuthology.orchestra.run.smithi131.stdout:(7/12): python3-devel-3.9.19-7.el9.x86_64.rpm 1.4 MB/s | 245 kB 00:00 2024-08-22T23:03:03.565 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:03.566 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:03.568 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:03.569 INFO:teuthology.orchestra.run.smithi160.stdout:====================================================================================== 2024-08-22T23:03:03.569 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:03:03.569 INFO:teuthology.orchestra.run.smithi160.stdout:====================================================================================== 2024-08-22T23:03:03.569 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:03.569 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-diskprediction-local noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 7.4 M 2024-08-22T23:03:03.569 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas x86_64 3.0.4-8.el9 appstream 33 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-netlib x86_64 3.0.4-8.el9 appstream 3.0 M 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-openblas-openmp x86_64 3.0.4-8.el9 appstream 18 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: libgfortran x86_64 11.5.0-2.el9 baseos 801 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: libquadmath x86_64 11.5.0-2.el9 baseos 191 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: openblas x86_64 0.3.26-1.el9 appstream 38 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-openmp x86_64 0.3.26-1.el9 appstream 4.9 M 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: python3-devel x86_64 3.9.19-7.el9 appstream 245 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy x86_64 1:1.20.1-5.el9 appstream 5.1 M 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-f2py x86_64 1:1.20.1-5.el9 appstream 250 k 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: python3-scipy x86_64 1.6.2-8.el9 appstream 16 M 2024-08-22T23:03:03.570 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:03.571 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:03.571 INFO:teuthology.orchestra.run.smithi160.stdout:====================================================================================== 2024-08-22T23:03:03.571 INFO:teuthology.orchestra.run.smithi160.stdout:Install 12 Packages 2024-08-22T23:03:03.571 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:03.572 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 38 M 2024-08-22T23:03:03.572 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 212 M 2024-08-22T23:03:03.572 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:03.774 INFO:teuthology.orchestra.run.smithi131.stdout:(8/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 3.6 MB/s | 3.0 MB 00:00 2024-08-22T23:03:03.899 INFO:teuthology.orchestra.run.smithi131.stdout:(9/12): python3-numpy-f2py-1.20.1-5.el9.x86_64. 2.0 MB/s | 250 kB 00:00 2024-08-22T23:03:04.136 INFO:teuthology.orchestra.run.smithi160.stdout:(1/12): libquadmath-11.5.0-2.el9.x86_64.rpm 873 kB/s | 191 kB 00:00 2024-08-22T23:03:04.244 INFO:teuthology.orchestra.run.smithi160.stdout:(2/12): flexiblas-3.0.4-8.el9.x86_64.rpm 302 kB/s | 33 kB 00:00 2024-08-22T23:03:04.269 INFO:teuthology.orchestra.run.smithi160.stdout:(3/12): libgfortran-11.5.0-2.el9.x86_64.rpm 2.2 MB/s | 801 kB 00:00 2024-08-22T23:03:04.329 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:04.353 INFO:teuthology.orchestra.run.smithi160.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-8.el9.x 218 kB/s | 18 kB 00:00 2024-08-22T23:03:04.394 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-08-22T23:03:04.403 INFO:teuthology.orchestra.run.smithi160.stdout:(5/12): openblas-0.3.26-1.el9.x86_64.rpm 768 kB/s | 38 kB 00:00 2024-08-22T23:03:04.438 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-08-22T23:03:04.454 INFO:teuthology.orchestra.run.smithi160.stdout:(6/12): flexiblas-netlib-3.0.4-8.el9.x86_64.rpm 14 MB/s | 3.0 MB 00:00 2024-08-22T23:03:04.496 INFO:teuthology.orchestra.run.smithi160.stdout:(7/12): python3-devel-3.9.19-7.el9.x86_64.rpm 5.7 MB/s | 245 kB 00:00 2024-08-22T23:03:04.537 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-08-22T23:03:04.572 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-devel-3.9.19-7.el9.x86_64 4/12 2024-08-22T23:03:04.582 INFO:teuthology.orchestra.run.smithi131.stdout:(10/12): openblas-openmp-0.3.26-1.el9.x86_64.rp 3.2 MB/s | 4.9 MB 00:01 2024-08-22T23:03:04.612 INFO:teuthology.orchestra.run.smithi160.stdout:(8/12): ceph-mgr-diskprediction-local-18.2.4-72 11 MB/s | 7.4 MB 00:00 2024-08-22T23:03:04.688 INFO:teuthology.orchestra.run.smithi160.stdout:(9/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 27 MB/s | 5.1 MB 00:00 2024-08-22T23:03:04.746 INFO:teuthology.orchestra.run.smithi160.stdout:(10/12): openblas-openmp-0.3.26-1.el9.x86_64.rp 14 MB/s | 4.9 MB 00:00 2024-08-22T23:03:04.756 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : openblas-0.3.26-1.el9.x86_64 5/12 2024-08-22T23:03:04.788 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : openblas-openmp-0.3.26-1.el9.x86_64 6/12 2024-08-22T23:03:04.855 INFO:teuthology.orchestra.run.smithi160.stdout:(11/12): python3-numpy-f2py-1.20.1-5.el9.x86_64 1.0 MB/s | 250 kB 00:00 2024-08-22T23:03:04.864 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-08-22T23:03:05.038 INFO:teuthology.orchestra.run.smithi160.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 46 MB/s | 16 MB 00:00 2024-08-22T23:03:05.039 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:05.039 INFO:teuthology.orchestra.run.smithi160.stdout:Total 26 MB/s | 38 MB 00:01 2024-08-22T23:03:05.132 INFO:teuthology.orchestra.run.smithi131.stdout:(11/12): python3-numpy-1.20.1-5.el9.x86_64.rpm 3.1 MB/s | 5.1 MB 00:01 2024-08-22T23:03:05.397 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:05.423 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:05.423 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:05.510 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-08-22T23:03:05.625 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-08-22T23:03:05.837 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:05.838 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:06.592 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:06.651 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-08-22T23:03:06.703 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-08-22T23:03:06.802 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-08-22T23:03:06.841 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-08-22T23:03:06.855 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-devel-3.9.19-7.el9.x86_64 4/12 2024-08-22T23:03:07.041 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : openblas-0.3.26-1.el9.x86_64 5/12 2024-08-22T23:03:07.070 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : openblas-openmp-0.3.26-1.el9.x86_64 6/12 2024-08-22T23:03:07.147 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-08-22T23:03:07.788 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-08-22T23:03:07.877 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-08-22T23:03:07.897 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 12/12 2024-08-22T23:03:07.915 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-08-22T23:03:08.866 INFO:teuthology.orchestra.run.smithi131.stdout:(12/12): python3-scipy-1.6.2-8.el9.x86_64.rpm 3.3 MB/s | 16 MB 00:04 2024-08-22T23:03:08.867 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:08.867 INFO:teuthology.orchestra.run.smithi131.stdout:Total 6.0 MB/s | 38 MB 00:06 2024-08-22T23:03:09.197 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-08-22T23:03:09.231 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:09.256 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:09.307 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:09.665 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:09.666 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:10.241 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-08-22T23:03:10.269 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 12/12 2024-08-22T23:03:10.432 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:10.503 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : flexiblas-3.0.4-8.el9.x86_64 1/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 12/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 1/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-08-22T23:03:10.512 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-08-22T23:03:10.513 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : openblas-0.3.26-1.el9.x86_64 7/12 2024-08-22T23:03:10.513 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : openblas-openmp-0.3.26-1.el9.x86_64 8/12 2024-08-22T23:03:10.513 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-devel-3.9.19-7.el9.x86_64 9/12 2024-08-22T23:03:10.513 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-08-22T23:03:10.513 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-08-22T23:03:10.547 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libquadmath-11.5.0-2.el9.x86_64 2/12 2024-08-22T23:03:10.636 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libgfortran-11.5.0-2.el9.x86_64 3/12 2024-08-22T23:03:10.682 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-devel-3.9.19-7.el9.x86_64 4/12 2024-08-22T23:03:10.868 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : openblas-0.3.26-1.el9.x86_64 5/12 2024-08-22T23:03:10.906 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : openblas-openmp-0.3.26-1.el9.x86_64 6/12 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-08-22T23:03:10.944 INFO:teuthology.orchestra.run.smithi144.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: openblas-0.3.26-1.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: openblas-openmp-0.3.26-1.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: python3-devel-3.9.19-7.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:10.945 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:10.982 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 7/12 2024-08-22T23:03:11.290 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-mgr-rook 2024-08-22T23:03:11.618 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : flexiblas-netlib-3.0.4-8.el9.x86_64 8/12 2024-08-22T23:03:11.744 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-numpy-1:1.20.1-5.el9.x86_64 9/12 2024-08-22T23:03:11.863 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:10 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:11.991 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-rook noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 49 k 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:03:11.992 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-google-auth noarch 1:2.33.0-1.el9 epel 220 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:11.993 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:11.994 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:11.994 INFO:teuthology.orchestra.run.smithi144.stdout:Install 13 Packages 2024-08-22T23:03:11.994 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:11.994 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 2.2 M 2024-08-22T23:03:11.994 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 26 M 2024-08-22T23:03:11.994 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:12.364 INFO:teuthology.orchestra.run.smithi144.stdout:(1/13): ceph-mgr-rook-18.2.4-723.g56fd5b35.el9. 253 kB/s | 49 kB 00:00 2024-08-22T23:03:12.673 INFO:teuthology.orchestra.run.smithi144.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 38 kB/s | 19 kB 00:00 2024-08-22T23:03:12.715 INFO:teuthology.orchestra.run.smithi144.stdout:(3/13): python3-jsonpatch-1.21-16.el9.noarch.rp 47 kB/s | 26 kB 00:00 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 12/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 1/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : openblas-0.3.26-1.el9.x86_64 7/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : openblas-openmp-0.3.26-1.el9.x86_64 8/12 2024-08-22T23:03:12.839 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-devel-3.9.19-7.el9.x86_64 9/12 2024-08-22T23:03:12.840 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-08-22T23:03:12.840 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-08-22T23:03:12.963 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 10/12 2024-08-22T23:03:13.165 INFO:teuthology.orchestra.run.smithi144.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 277 kB/s | 222 kB 00:00 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-08-22T23:03:13.211 INFO:teuthology.orchestra.run.smithi160.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-08-22T23:03:13.214 INFO:teuthology.orchestra.run.smithi160.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-0.3.26-1.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: openblas-openmp-0.3.26-1.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: python3-devel-3.9.19-7.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:13.215 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:13.382 INFO:teuthology.orchestra.run.smithi144.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 224 kB/s | 159 kB 00:00 2024-08-22T23:03:13.432 INFO:teuthology.orchestra.run.smithi144.stdout:(6/13): python3-cachetools-4.2.4-1.el9.noarch.r 763 kB/s | 32 kB 00:00 2024-08-22T23:03:13.457 INFO:teuthology.orchestra.run.smithi144.stdout:(7/13): python3-certifi-2023.05.07-4.el9.noarch 569 kB/s | 14 kB 00:00 2024-08-22T23:03:13.491 INFO:teuthology.orchestra.run.smithi144.stdout:(8/13): python3-google-auth-2.33.0-1.el9.noarch 6.4 MB/s | 220 kB 00:00 2024-08-22T23:03:13.516 INFO:teuthology.orchestra.run.smithi144.stdout:(9/13): python3-pyasn1-modules-0.4.8-6.el9.noar 348 kB/s | 279 kB 00:00 2024-08-22T23:03:13.547 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-rook 2024-08-22T23:03:13.558 INFO:teuthology.orchestra.run.smithi144.stdout:(10/13): python3-kubernetes-26.1.0-2.el9.noarch 15 MB/s | 1.0 MB 00:00 2024-08-22T23:03:13.583 INFO:teuthology.orchestra.run.smithi144.stdout:(11/13): python3-websocket-client-1.2.3-2.el9.n 3.8 MB/s | 90 kB 00:00 2024-08-22T23:03:13.600 INFO:teuthology.orchestra.run.smithi144.stdout:(12/13): python3-rsa-4.9-2.el9.noarch.rpm 706 kB/s | 59 kB 00:00 2024-08-22T23:03:13.767 INFO:teuthology.orchestra.run.smithi144.stdout:(13/13): python3-requests-oauthlib-1.3.0-12.el9 89 kB/s | 54 kB 00:00 2024-08-22T23:03:13.770 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:13.771 INFO:teuthology.orchestra.run.smithi144.stdout:Total 1.2 MB/s | 2.2 MB 00:01 2024-08-22T23:03:13.843 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:13.859 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:13.859 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:13.946 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:13.947 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:13.995 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-scipy-1.6.2-8.el9.x86_64 11/12 2024-08-22T23:03:14.026 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 12/12 2024-08-22T23:03:14.125 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:10 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:14.254 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-rook noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 49 k 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout: python3-google-auth noarch 1:2.33.0-1.el9 epel 220 k 2024-08-22T23:03:14.255 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:14.256 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:14.257 INFO:teuthology.orchestra.run.smithi160.stdout:Install 13 Packages 2024-08-22T23:03:14.257 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:14.257 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 2.2 M 2024-08-22T23:03:14.257 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 26 M 2024-08-22T23:03:14.257 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:14.447 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:14.605 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-08-22T23:03:14.659 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-08-22T23:03:14.715 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-08-22T23:03:14.753 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-08-22T23:03:14.794 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-08-22T23:03:14.869 INFO:teuthology.orchestra.run.smithi160.stdout:(1/13): python3-jsonpatch-1.21-16.el9.noarch.rp 281 kB/s | 26 kB 00:00 2024-08-22T23:03:14.894 INFO:teuthology.orchestra.run.smithi160.stdout:(2/13): python3-jsonpointer-2.0-4.el9.noarch.rp 165 kB/s | 19 kB 00:00 2024-08-22T23:03:14.896 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-08-22T23:03:14.952 INFO:teuthology.orchestra.run.smithi160.stdout:(3/13): ceph-mgr-rook-18.2.4-723.g56fd5b35.el9. 282 kB/s | 49 kB 00:00 2024-08-22T23:03:14.969 INFO:teuthology.orchestra.run.smithi160.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 2.2 MB/s | 222 kB 00:00 2024-08-22T23:03:15.003 INFO:teuthology.orchestra.run.smithi160.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.4 MB/s | 159 kB 00:00 2024-08-22T23:03:15.005 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-google-auth-1:2.33.0-1.el9.noarch 7/13 2024-08-22T23:03:15.037 INFO:teuthology.orchestra.run.smithi160.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 799 kB/s | 54 kB 00:00 2024-08-22T23:03:15.055 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-08-22T23:03:15.070 INFO:teuthology.orchestra.run.smithi160.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 480 kB/s | 32 kB 00:00 2024-08-22T23:03:15.095 INFO:teuthology.orchestra.run.smithi160.stdout:(8/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.9 MB/s | 279 kB 00:00 2024-08-22T23:03:15.121 INFO:teuthology.orchestra.run.smithi160.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 172 kB/s | 14 kB 00:00 2024-08-22T23:03:15.154 INFO:teuthology.orchestra.run.smithi160.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 2.2 MB/s | 59 kB 00:00 2024-08-22T23:03:15.171 INFO:teuthology.orchestra.run.smithi160.stdout:(11/13): python3-google-auth-2.33.0-1.el9.noarc 2.2 MB/s | 220 kB 00:00 2024-08-22T23:03:15.196 INFO:teuthology.orchestra.run.smithi160.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 2.2 MB/s | 90 kB 00:00 2024-08-22T23:03:15.230 INFO:teuthology.orchestra.run.smithi160.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 7.6 MB/s | 1.0 MB 00:00 2024-08-22T23:03:15.233 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:15.233 INFO:teuthology.orchestra.run.smithi160.stdout:Total 2.3 MB/s | 2.2 MB 00:00 2024-08-22T23:03:15.301 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:15.317 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:15.317 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:15.405 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:15.407 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:15.762 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-08-22T23:03:15.810 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-08-22T23:03:15.844 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-08-22T23:03:15.892 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-08-22T23:03:15.904 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:15.913 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 13/13 2024-08-22T23:03:16.068 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-08-22T23:03:16.123 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-08-22T23:03:16.178 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-08-22T23:03:16.216 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-08-22T23:03:16.257 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-08-22T23:03:16.358 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-08-22T23:03:16.459 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-google-auth-1:2.33.0-1.el9.noarch 7/13 2024-08-22T23:03:16.516 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-08-22T23:03:16.608 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 12/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b 1/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libgfortran-11.5.0-2.el9.x86_64 2/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libquadmath-11.5.0-2.el9.x86_64 3/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : flexiblas-3.0.4-8.el9.x86_64 4/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : flexiblas-netlib-3.0.4-8.el9.x86_64 5/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 6/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : openblas-0.3.26-1.el9.x86_64 7/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : openblas-openmp-0.3.26-1.el9.x86_64 8/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-devel-3.9.19-7.el9.x86_64 9/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-numpy-1:1.20.1-5.el9.x86_64 10/12 2024-08-22T23:03:16.609 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-numpy-f2py-1:1.20.1-5.el9.x86_64 11/12 2024-08-22T23:03:16.649 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 13/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 1/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-google-auth-1:2.33.0-1.el9.noarch 10/13 2024-08-22T23:03:16.650 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-08-22T23:03:16.651 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-08-22T23:03:16.961 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-08-22T23:03:16.961 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:16.961 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-google-auth-1:2.33.0-1.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-rsa-4.9-2.el9.noarch 2024-08-22T23:03:16.962 INFO:teuthology.orchestra.run.smithi144.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-08-22T23:03:16.963 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:16.963 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-scipy-1.6.2-8.el9.x86_64 12/12 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-diskprediction-local-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout: flexiblas-3.0.4-8.el9.x86_64 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout: flexiblas-netlib-3.0.4-8.el9.x86_64 2024-08-22T23:03:16.995 INFO:teuthology.orchestra.run.smithi131.stdout: flexiblas-openblas-openmp-3.0.4-8.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: libgfortran-11.5.0-2.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: libquadmath-11.5.0-2.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: openblas-0.3.26-1.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: openblas-openmp-0.3.26-1.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: python3-devel-3.9.19-7.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: python3-numpy-1:1.20.1-5.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: python3-numpy-f2py-1:1.20.1-5.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: python3-scipy-1.6.2-8.el9.x86_64 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:16.996 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:17.184 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-mgr-cephadm 2024-08-22T23:03:17.234 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-08-22T23:03:17.281 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-08-22T23:03:17.314 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-08-22T23:03:17.362 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-08-22T23:03:17.379 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-mgr-rook 2024-08-22T23:03:17.384 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 13/13 2024-08-22T23:03:17.759 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:16 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:17.888 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:17.888 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:17.888 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:03:17.888 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:17.888 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-cephadm noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 139 k 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout:Install 6 Packages 2024-08-22T23:03:17.889 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:17.890 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 7.0 M 2024-08-22T23:03:17.890 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 33 M 2024-08-22T23:03:17.890 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:17.963 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:13 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:18.102 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:18.103 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:18.103 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:03:18.103 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:18.103 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:18.103 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-rook noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 49 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-google-auth noarch 1:2.33.0-1.el9 epel 220 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jsonpatch noarch 1.21-16.el9 appstream 26 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jsonpointer noarch 2.0-4.el9 appstream 19 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-kubernetes noarch 1:26.1.0-2.el9 epel 1.0 M 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-oauthlib noarch 3.1.1-5.el9 appstream 222 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2024-08-22T23:03:18.104 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:18.105 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:18.105 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:18.105 INFO:teuthology.orchestra.run.smithi131.stdout:Install 13 Packages 2024-08-22T23:03:18.105 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:18.105 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 2.2 M 2024-08-22T23:03:18.106 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 26 M 2024-08-22T23:03:18.106 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 13/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 1/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-08-22T23:03:18.153 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-08-22T23:03:18.154 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-08-22T23:03:18.154 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-google-auth-1:2.33.0-1.el9.noarch 10/13 2024-08-22T23:03:18.154 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-08-22T23:03:18.154 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-08-22T23:03:18.378 INFO:teuthology.orchestra.run.smithi131.stdout:(1/13): python3-jsonpointer-2.0-4.el9.noarch.rp 187 kB/s | 19 kB 00:00 2024-08-22T23:03:18.403 INFO:teuthology.orchestra.run.smithi131.stdout:(2/13): python3-jsonpatch-1.21-16.el9.noarch.rp 201 kB/s | 26 kB 00:00 2024-08-22T23:03:18.404 INFO:teuthology.orchestra.run.smithi144.stdout:(1/6): ceph-mgr-cephadm-18.2.4-723.g56fd5b35.el 680 kB/s | 139 kB 00:00 2024-08-22T23:03:18.420 INFO:teuthology.orchestra.run.smithi144.stdout:(2/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.1 MB/s | 248 kB 00:00 2024-08-22T23:03:18.437 INFO:teuthology.orchestra.run.smithi131.stdout:(3/13): ceph-mgr-rook-18.2.4-723.g56fd5b35.el9. 305 kB/s | 49 kB 00:00 2024-08-22T23:03:18.471 INFO:teuthology.orchestra.run.smithi144.stdout:(3/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 8.0 MB/s | 548 kB 00:00 2024-08-22T23:03:18.483 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-08-22T23:03:18.483 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:18.483 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-google-auth-1:2.33.0-1.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-rsa-4.9-2.el9.noarch 2024-08-22T23:03:18.484 INFO:teuthology.orchestra.run.smithi160.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-08-22T23:03:18.485 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:18.485 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:18.496 INFO:teuthology.orchestra.run.smithi144.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 766 kB/s | 58 kB 00:00 2024-08-22T23:03:18.512 INFO:teuthology.orchestra.run.smithi131.stdout:(4/13): python3-oauthlib-3.1.1-5.el9.noarch.rpm 1.6 MB/s | 222 kB 00:00 2024-08-22T23:03:18.521 INFO:teuthology.orchestra.run.smithi144.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.5 MB/s | 74 kB 00:00 2024-08-22T23:03:18.529 INFO:teuthology.orchestra.run.smithi131.stdout:(5/13): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2024-08-22T23:03:18.584 INFO:teuthology.orchestra.run.smithi131.stdout:(6/13): python3-requests-oauthlib-1.3.0-12.el9. 748 kB/s | 54 kB 00:00 2024-08-22T23:03:18.622 INFO:teuthology.orchestra.run.smithi131.stdout:(7/13): python3-cachetools-4.2.4-1.el9.noarch.r 350 kB/s | 32 kB 00:00 2024-08-22T23:03:18.647 INFO:teuthology.orchestra.run.smithi131.stdout:(8/13): python3-pyasn1-modules-0.4.8-6.el9.noar 1.3 MB/s | 279 kB 00:00 2024-08-22T23:03:18.671 INFO:teuthology.orchestra.run.smithi144.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 13 MB/s | 6.0 MB 00:00 2024-08-22T23:03:18.672 INFO:teuthology.orchestra.run.smithi131.stdout:(9/13): python3-certifi-2023.05.07-4.el9.noarch 164 kB/s | 14 kB 00:00 2024-08-22T23:03:18.673 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:18.674 INFO:teuthology.orchestra.run.smithi144.stdout:Total 8.9 MB/s | 7.0 MB 00:00 2024-08-22T23:03:18.714 INFO:teuthology.orchestra.run.smithi131.stdout:(10/13): python3-rsa-4.9-2.el9.noarch.rpm 1.6 MB/s | 59 kB 00:00 2024-08-22T23:03:18.739 INFO:teuthology.orchestra.run.smithi131.stdout:(11/13): python3-google-auth-2.33.0-1.el9.noarc 1.9 MB/s | 220 kB 00:00 2024-08-22T23:03:18.744 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:18.748 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-mgr-cephadm 2024-08-22T23:03:18.756 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:18.756 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:18.764 INFO:teuthology.orchestra.run.smithi131.stdout:(12/13): python3-websocket-client-1.2.3-2.el9.n 1.8 MB/s | 90 kB 00:00 2024-08-22T23:03:18.806 INFO:teuthology.orchestra.run.smithi131.stdout:(13/13): python3-kubernetes-26.1.0-2.el9.noarch 6.4 MB/s | 1.0 MB 00:00 2024-08-22T23:03:18.809 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:18.809 INFO:teuthology.orchestra.run.smithi131.stdout:Total 3.1 MB/s | 2.2 MB 00:00 2024-08-22T23:03:18.854 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:18.854 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:18.881 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:18.897 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:18.897 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:18.983 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:18.984 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:19.170 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:19.344 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-08-22T23:03:19.345 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:15 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:19.389 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-08-22T23:03:19.475 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:19.475 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-cephadm noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 139 k 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-08-22T23:03:19.476 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout:Install 6 Packages 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 7.0 M 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 33 M 2024-08-22T23:03:19.477 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:19.494 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:19.670 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/13 2024-08-22T23:03:19.727 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/13 2024-08-22T23:03:19.781 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/13 2024-08-22T23:03:19.818 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/13 2024-08-22T23:03:19.858 INFO:teuthology.orchestra.run.smithi160.stdout:(1/6): ceph-mgr-cephadm-18.2.4-723.g56fd5b35.el 745 kB/s | 139 kB 00:00 2024-08-22T23:03:19.871 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/13 2024-08-22T23:03:19.892 INFO:teuthology.orchestra.run.smithi160.stdout:(2/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 1.1 MB/s | 248 kB 00:00 2024-08-22T23:03:19.911 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-08-22T23:03:19.950 INFO:teuthology.orchestra.run.smithi160.stdout:(3/6): python3-natsort-7.1.1-5.el9.noarch.rpm 994 kB/s | 58 kB 00:00 2024-08-22T23:03:19.962 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/13 2024-08-22T23:03:19.975 INFO:teuthology.orchestra.run.smithi160.stdout:(4/6): python3-typing-extensions-4.12.2-2.el9.n 2.9 MB/s | 74 kB 00:00 2024-08-22T23:03:19.992 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-08-22T23:03:20.025 INFO:teuthology.orchestra.run.smithi160.stdout:(5/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 3.2 MB/s | 548 kB 00:00 2024-08-22T23:03:20.054 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-08-22T23:03:20.063 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-google-auth-1:2.33.0-1.el9.noarch 7/13 2024-08-22T23:03:20.077 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 6/6 2024-08-22T23:03:20.120 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-oauthlib-3.1.1-5.el9.noarch 8/13 2024-08-22T23:03:20.534 INFO:teuthology.orchestra.run.smithi160.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 6.9 MB/s | 6.0 MB 00:00 2024-08-22T23:03:20.536 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:20.536 INFO:teuthology.orchestra.run.smithi160.stdout:Total 6.6 MB/s | 7.0 MB 00:01 2024-08-22T23:03:20.606 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:20.618 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:20.618 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:20.715 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:20.716 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:20.824 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 9/13 2024-08-22T23:03:20.875 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-kubernetes-1:26.1.0-2.el9.noarch 10/13 2024-08-22T23:03:20.878 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 6/6 2024-08-22T23:03:20.879 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/6 2024-08-22T23:03:20.879 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-08-22T23:03:20.879 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-08-22T23:03:20.879 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-08-22T23:03:20.879 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-08-22T23:03:20.909 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jsonpointer-2.0-4.el9.noarch 11/13 2024-08-22T23:03:20.957 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jsonpatch-1.21-16.el9.noarch 12/13 2024-08-22T23:03:20.983 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 13/13 2024-08-22T23:03:21.030 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:21.131 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-08-22T23:03:21.131 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: python3-babel-2.9.1-2.el9.noarch 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:21.132 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:21.197 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-08-22T23:03:21.252 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-08-22T23:03:21.361 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-fuse 2024-08-22T23:03:21.767 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-08-22T23:03:21.771 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 13/13 2024-08-22T23:03:21.771 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 1/13 2024-08-22T23:03:21.771 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 2/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 3/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 4/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 5/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 6/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 7/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 8/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 9/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-google-auth-1:2.33.0-1.el9.noarch 10/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-kubernetes-1:26.1.0-2.el9.noarch 11/13 2024-08-22T23:03:21.772 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 12/13 2024-08-22T23:03:21.853 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-08-22T23:03:21.916 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-08-22T23:03:21.921 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:20 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:21.939 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 6/6 2024-08-22T23:03:22.052 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-fuse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 852 k 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:03:22.053 INFO:teuthology.orchestra.run.smithi144.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-08-22T23:03:22.054 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:22.054 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:22.054 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:22.054 INFO:teuthology.orchestra.run.smithi144.stdout:Install 2 Packages 2024-08-22T23:03:22.054 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:22.055 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 931 k 2024-08-22T23:03:22.055 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 2.7 M 2024-08-22T23:03:22.055 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 13/13 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-rook-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout: python3-cachetools-4.2.4-1.el9.noarch 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout: python3-certifi-2023.05.07-4.el9.noarch 2024-08-22T23:03:22.092 INFO:teuthology.orchestra.run.smithi131.stdout: python3-google-auth-1:2.33.0-1.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jsonpatch-1.21-16.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jsonpointer-2.0-4.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-kubernetes-1:26.1.0-2.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-rsa-4.9-2.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2024-08-22T23:03:22.093 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:22.094 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:22.273 INFO:teuthology.orchestra.run.smithi144.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 405 kB/s | 80 kB 00:00 2024-08-22T23:03:22.321 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-mgr-cephadm 2024-08-22T23:03:22.449 INFO:teuthology.orchestra.run.smithi144.stdout:(2/2): ceph-fuse-18.2.4-723.g56fd5b35.el9.x86_6 2.2 MB/s | 852 kB 00:00 2024-08-22T23:03:22.449 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:22.449 INFO:teuthology.orchestra.run.smithi144.stdout:Total 2.3 MB/s | 931 kB 00:00 2024-08-22T23:03:22.461 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:22.483 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:22.483 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:22.563 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:22.564 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:22.697 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 6/6 2024-08-22T23:03:22.697 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/6 2024-08-22T23:03:22.697 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-08-22T23:03:22.697 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-08-22T23:03:22.697 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-08-22T23:03:22.697 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-08-22T23:03:22.795 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:22.885 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:18 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:22.923 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: python3-babel-2.9.1-2.el9.noarch 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-08-22T23:03:22.967 INFO:teuthology.orchestra.run.smithi160.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-08-22T23:03:22.968 INFO:teuthology.orchestra.run.smithi160.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-08-22T23:03:22.968 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:22.968 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:22.996 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2/2 2024-08-22T23:03:23.015 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:23.015 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:23.015 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-cephadm noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 139 k 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jinja2 noarch 2.11.3-6.el9 appstream 248 k 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: python3-typing-extensions noarch 4.12.2-2.el9 epel 74 k 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:23.016 INFO:teuthology.orchestra.run.smithi131.stdout:Install 6 Packages 2024-08-22T23:03:23.017 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:23.017 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 7.0 M 2024-08-22T23:03:23.017 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 33 M 2024-08-22T23:03:23.017 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:23.236 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-fuse 2024-08-22T23:03:23.624 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2/2 2024-08-22T23:03:23.624 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/2 2024-08-22T23:03:23.719 INFO:teuthology.orchestra.run.smithi131.stdout:(1/6): ceph-mgr-cephadm-18.2.4-723.g56fd5b35.el 735 kB/s | 139 kB 00:00 2024-08-22T23:03:23.777 INFO:teuthology.orchestra.run.smithi131.stdout:(2/6): python3-asyncssh-2.13.2-5.el9.noarch.rpm 9.2 MB/s | 548 kB 00:00 2024-08-22T23:03:23.799 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:19 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:23.802 INFO:teuthology.orchestra.run.smithi131.stdout:(3/6): python3-jinja2-2.11.3-6.el9.noarch.rpm 911 kB/s | 248 kB 00:00 2024-08-22T23:03:23.828 INFO:teuthology.orchestra.run.smithi131.stdout:(4/6): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2024-08-22T23:03:23.870 INFO:teuthology.orchestra.run.smithi131.stdout:(5/6): python3-typing-extensions-4.12.2-2.el9.n 1.1 MB/s | 74 kB 00:00 2024-08-22T23:03:23.891 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-08-22T23:03:23.891 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:23.892 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:23.892 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-08-22T23:03:23.892 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:23.892 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-fuse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 852 k 2024-08-22T23:03:23.928 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:03:23.929 INFO:teuthology.orchestra.run.smithi160.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-08-22T23:03:23.929 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:23.929 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:23.929 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:23.929 INFO:teuthology.orchestra.run.smithi160.stdout:Install 2 Packages 2024-08-22T23:03:23.929 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:23.930 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 931 k 2024-08-22T23:03:23.930 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 2.7 M 2024-08-22T23:03:23.930 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:24.147 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install ceph-volume 2024-08-22T23:03:24.335 INFO:teuthology.orchestra.run.smithi160.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 500 kB/s | 80 kB 00:00 2024-08-22T23:03:24.362 INFO:teuthology.orchestra.run.smithi131.stdout:(6/6): python3-babel-2.9.1-2.el9.noarch.rpm 7.2 MB/s | 6.0 MB 00:00 2024-08-22T23:03:24.364 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:24.364 INFO:teuthology.orchestra.run.smithi131.stdout:Total 5.2 MB/s | 7.0 MB 00:01 2024-08-22T23:03:24.434 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:24.446 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:24.446 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:24.463 INFO:teuthology.orchestra.run.smithi160.stdout:(2/2): ceph-fuse-18.2.4-723.g56fd5b35.el9.x86_6 2.9 MB/s | 852 kB 00:00 2024-08-22T23:03:24.463 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:24.463 INFO:teuthology.orchestra.run.smithi160.stdout:Total 1.7 MB/s | 931 kB 00:00 2024-08-22T23:03:24.473 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:24.495 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:24.495 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:24.544 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:24.544 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:24.575 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:24.576 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:24.727 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:23 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:24.766 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:24.849 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:24.858 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repository Size 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-volume noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 264 k 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout:Installing dependencies: 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:24.859 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:24.860 INFO:teuthology.orchestra.run.smithi144.stdout:Install 2 Packages 2024-08-22T23:03:24.860 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:24.860 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 342 k 2024-08-22T23:03:24.860 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 1.5 M 2024-08-22T23:03:24.860 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:24.901 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-08-22T23:03:24.966 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2/2 2024-08-22T23:03:25.021 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-typing-extensions-4.12.2-2.el9.noarch 1/6 2024-08-22T23:03:25.064 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/6 2024-08-22T23:03:25.156 INFO:teuthology.orchestra.run.smithi144.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 424 kB/s | 77 kB 00:00 2024-08-22T23:03:25.181 INFO:teuthology.orchestra.run.smithi144.stdout:(2/2): ceph-volume-18.2.4-723.g56fd5b35.el9.noa 1.2 MB/s | 264 kB 00:00 2024-08-22T23:03:25.182 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:25.183 INFO:teuthology.orchestra.run.smithi144.stdout:Total 1.0 MB/s | 342 kB 00:00 2024-08-22T23:03:25.194 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:25.204 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:25.204 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:25.232 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:25.233 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:25.371 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:25.547 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-08-22T23:03:25.586 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/6 2024-08-22T23:03:25.592 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2/2 2024-08-22T23:03:25.608 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2/2 2024-08-22T23:03:25.608 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:03:25.608 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-08-22T23:03:25.609 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:25.643 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2/2 2024-08-22T23:03:25.643 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/2 2024-08-22T23:03:25.683 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 4/6 2024-08-22T23:03:25.746 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-jinja2-2.11.3-6.el9.noarch 5/6 2024-08-22T23:03:25.776 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 6/6 2024-08-22T23:03:25.899 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-08-22T23:03:25.900 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:25.900 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:25.900 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-08-22T23:03:25.900 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:25.900 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:26.147 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install ceph-volume 2024-08-22T23:03:26.308 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 1/2 2024-08-22T23:03:26.556 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 6/6 2024-08-22T23:03:26.556 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 1/6 2024-08-22T23:03:26.556 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/6 2024-08-22T23:03:26.556 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-jinja2-2.11.3-6.el9.noarch 3/6 2024-08-22T23:03:26.556 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 4/6 2024-08-22T23:03:26.556 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 5/6 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout: ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout: python3-packaging-20.9-5.el9.noarch 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:26.599 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:26.731 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:22 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:26.801 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-typing-extensions-4.12.2-2.el9.noarch 6/6 2024-08-22T23:03:26.801 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:26.801 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:26.801 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-mgr-cephadm-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:26.801 INFO:teuthology.orchestra.run.smithi131.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2024-08-22T23:03:26.801 INFO:teuthology.orchestra.run.smithi131.stdout: python3-babel-2.9.1-2.el9.noarch 2024-08-22T23:03:26.802 INFO:teuthology.orchestra.run.smithi131.stdout: python3-jinja2-2.11.3-6.el9.noarch 2024-08-22T23:03:26.802 INFO:teuthology.orchestra.run.smithi131.stdout: python3-natsort-7.1.1-5.el9.noarch 2024-08-22T23:03:26.802 INFO:teuthology.orchestra.run.smithi131.stdout: python3-typing-extensions-4.12.2-2.el9.noarch 2024-08-22T23:03:26.802 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:26.802 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:26.863 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:26.864 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:26.864 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repository Size 2024-08-22T23:03:26.864 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-volume noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 264 k 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Installing dependencies: 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Install 2 Packages 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 342 k 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 1.5 M 2024-08-22T23:03:26.865 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:26.897 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install librados-devel 2024-08-22T23:03:27.052 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-fuse 2024-08-22T23:03:27.107 INFO:teuthology.orchestra.run.smithi160.stdout:(1/2): ceph-volume-18.2.4-723.g56fd5b35.el9.noa 1.2 MB/s | 264 kB 00:00 2024-08-22T23:03:27.475 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:26 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:27.535 INFO:teuthology.orchestra.run.smithi160.stdout:(2/2): python3-packaging-20.9-5.el9.noarch.rpm 120 kB/s | 77 kB 00:00 2024-08-22T23:03:27.535 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:27.535 INFO:teuthology.orchestra.run.smithi160.stdout:Total 511 kB/s | 342 kB 00:00 2024-08-22T23:03:27.545 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:27.555 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:27.555 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:27.587 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:27.587 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:27.607 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:23 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:27.615 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:27.615 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repo Size 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout: librados-devel x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 127 k 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:03:27.616 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:27.617 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 127 k 2024-08-22T23:03:27.617 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 456 k 2024-08-22T23:03:27.617 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:27.740 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-fuse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 852 k 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout: fuse x86_64 2.9.9-16.el9 baseos 80 k 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:27.741 INFO:teuthology.orchestra.run.smithi131.stdout:Install 2 Packages 2024-08-22T23:03:27.742 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:27.742 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 931 k 2024-08-22T23:03:27.742 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 2.7 M 2024-08-22T23:03:27.742 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:27.742 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:27.846 INFO:teuthology.orchestra.run.smithi144.stdout:librados-devel-18.2.4-723.g56fd5b35.el9.x86_64. 554 kB/s | 127 kB 00:00 2024-08-22T23:03:27.846 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:27.847 INFO:teuthology.orchestra.run.smithi144.stdout:Total 550 kB/s | 127 kB 00:00 2024-08-22T23:03:27.847 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:27.852 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:27.852 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:27.916 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:27.917 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:27.927 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-08-22T23:03:27.959 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2/2 2024-08-22T23:03:27.976 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2/2 2024-08-22T23:03:27.976 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:03:27.976 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-08-22T23:03:27.976 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:28.069 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:28.131 INFO:teuthology.orchestra.run.smithi131.stdout:(1/2): fuse-2.9.9-16.el9.x86_64.rpm 583 kB/s | 80 kB 00:00 2024-08-22T23:03:28.158 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:28.273 INFO:teuthology.orchestra.run.smithi131.stdout:(2/2): ceph-fuse-18.2.4-723.g56fd5b35.el9.x86_6 3.0 MB/s | 852 kB 00:00 2024-08-22T23:03:28.273 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:28.274 INFO:teuthology.orchestra.run.smithi131.stdout:Total 1.7 MB/s | 931 kB 00:00 2024-08-22T23:03:28.285 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:28.306 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:28.307 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:28.389 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:28.389 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:28.576 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:28.583 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:28.665 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 1/2 2024-08-22T23:03:28.722 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : fuse-2.9.9-16.el9.x86_64 1/2 2024-08-22T23:03:28.788 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2/2 2024-08-22T23:03:28.831 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:28.832 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:28.832 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:28.832 INFO:teuthology.orchestra.run.smithi144.stdout: librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:28.832 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:28.832 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:28.949 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-08-22T23:03:28.949 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:28.949 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:28.949 INFO:teuthology.orchestra.run.smithi160.stdout: ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:28.950 INFO:teuthology.orchestra.run.smithi160.stdout: python3-packaging-20.9-5.el9.noarch 2024-08-22T23:03:28.950 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:28.950 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:29.057 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install libcephfs2 2024-08-22T23:03:29.271 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librados-devel 2024-08-22T23:03:29.414 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2/2 2024-08-22T23:03:29.415 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/2 2024-08-22T23:03:29.632 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:28 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:29.677 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : fuse-2.9.9-16.el9.x86_64 2/2 2024-08-22T23:03:29.677 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:29.677 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:29.678 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 fuse-2.9.9-16.el9.x86_64 2024-08-22T23:03:29.678 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:29.678 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:29.719 INFO:teuthology.orchestra.run.smithi144.stdout:Package libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:29.762 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:29.763 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:29.763 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:29.850 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install libcephfs-devel 2024-08-22T23:03:29.865 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:25 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:29.909 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install ceph-volume 2024-08-22T23:03:30.006 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:30.007 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:30.007 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-08-22T23:03:30.007 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:30.007 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:30.007 INFO:teuthology.orchestra.run.smithi160.stdout: librados-devel x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 127 k 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 127 k 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 456 k 2024-08-22T23:03:30.008 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:30.221 INFO:teuthology.orchestra.run.smithi160.stdout:librados-devel-18.2.4-723.g56fd5b35.el9.x86_64. 596 kB/s | 127 kB 00:00 2024-08-22T23:03:30.221 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:30.221 INFO:teuthology.orchestra.run.smithi160.stdout:Total 591 kB/s | 127 kB 00:00 2024-08-22T23:03:30.222 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:30.227 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:30.227 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:30.291 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:30.292 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:30.413 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:29 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:30.441 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:30.484 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:26 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:30.539 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:30.540 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:30.540 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repo Size 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout: libcephfs-devel x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 31 k 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 31 k 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 139 k 2024-08-22T23:03:30.541 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:30.557 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:30.615 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repository Size 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-volume noarch 2:18.2.4-723.g56fd5b35.el9 ceph-noarch 264 k 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout:Installing dependencies: 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2024-08-22T23:03:30.616 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout:Install 2 Packages 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 342 k 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 1.5 M 2024-08-22T23:03:30.617 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:30.691 INFO:teuthology.orchestra.run.smithi144.stdout:libcephfs-devel-18.2.4-723.g56fd5b35.el9.x86_64 207 kB/s | 31 kB 00:00 2024-08-22T23:03:30.692 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:30.692 INFO:teuthology.orchestra.run.smithi144.stdout:Total 206 kB/s | 31 kB 00:00 2024-08-22T23:03:30.692 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:30.695 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:30.695 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:30.699 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:30.700 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:30.779 INFO:teuthology.orchestra.run.smithi131.stdout:(1/2): python3-packaging-20.9-5.el9.noarch.rpm 552 kB/s | 77 kB 00:00 2024-08-22T23:03:30.783 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:30.846 INFO:teuthology.orchestra.run.smithi131.stdout:(2/2): ceph-volume-18.2.4-723.g56fd5b35.el9.noa 1.2 MB/s | 264 kB 00:00 2024-08-22T23:03:30.847 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:30.847 INFO:teuthology.orchestra.run.smithi131.stdout:Total 1.4 MB/s | 342 kB 00:00 2024-08-22T23:03:30.858 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:30.867 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:30.867 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:30.885 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:30.895 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:30.895 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:30.958 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:31.042 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:31.188 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:31.189 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:31.189 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:31.189 INFO:teuthology.orchestra.run.smithi160.stdout: librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:31.189 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:31.189 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:31.216 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:31.219 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : python3-packaging-20.9-5.el9.noarch 1/2 2024-08-22T23:03:31.257 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2/2 2024-08-22T23:03:31.274 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2/2 2024-08-22T23:03:31.274 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:03:31.274 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2024-08-22T23:03:31.274 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:31.423 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install libcephfs2 2024-08-22T23:03:31.437 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:31.437 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:31.437 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:31.437 INFO:teuthology.orchestra.run.smithi144.stdout: libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:31.437 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:31.438 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:31.605 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install librados2 2024-08-22T23:03:31.999 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:27 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:32.013 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 1/2 2024-08-22T23:03:32.088 INFO:teuthology.orchestra.run.smithi160.stdout:Package libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:32.131 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:32.132 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:32.132 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:32.163 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:31 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:32.196 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install libcephfs-devel 2024-08-22T23:03:32.249 INFO:teuthology.orchestra.run.smithi144.stdout:Package librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:32.291 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:32.295 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:32.295 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:32.308 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 2/2 2024-08-22T23:03:32.308 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:32.308 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:32.308 INFO:teuthology.orchestra.run.smithi131.stdout: ceph-volume-2:18.2.4-723.g56fd5b35.el9.noarch 2024-08-22T23:03:32.309 INFO:teuthology.orchestra.run.smithi131.stdout: python3-packaging-20.9-5.el9.noarch 2024-08-22T23:03:32.309 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:32.309 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:32.358 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install librbd1 2024-08-22T23:03:32.645 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install librados-devel 2024-08-22T23:03:32.762 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:28 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:32.889 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs-devel x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 31 k 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:32.890 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:03:32.891 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:32.891 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 31 k 2024-08-22T23:03:32.891 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 139 k 2024-08-22T23:03:32.891 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:32.919 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:31 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:33.005 INFO:teuthology.orchestra.run.smithi144.stdout:Package librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:33.048 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:33.048 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:33.049 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:33.074 INFO:teuthology.orchestra.run.smithi160.stdout:libcephfs-devel-18.2.4-723.g56fd5b35.el9.x86_64 170 kB/s | 31 kB 00:00 2024-08-22T23:03:33.074 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:33.075 INFO:teuthology.orchestra.run.smithi160.stdout:Total 168 kB/s | 31 kB 00:00 2024-08-22T23:03:33.075 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:33.078 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:33.078 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:33.082 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:33.082 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:33.115 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install python3-rados 2024-08-22T23:03:33.172 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:33.230 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:29 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:33.278 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:33.358 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:33.358 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:33.358 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repo Size 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout: librados-devel x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 127 k 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 127 k 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 456 k 2024-08-22T23:03:33.359 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:33.570 INFO:teuthology.orchestra.run.smithi131.stdout:librados-devel-18.2.4-723.g56fd5b35.el9.x86_64. 600 kB/s | 127 kB 00:00 2024-08-22T23:03:33.571 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:33.571 INFO:teuthology.orchestra.run.smithi131.stdout:Total 596 kB/s | 127 kB 00:00 2024-08-22T23:03:33.571 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:33.577 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:33.577 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:33.607 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:33.640 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:33.640 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:33.679 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:32 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:33.765 INFO:teuthology.orchestra.run.smithi144.stdout:Package python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:33.797 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:33.807 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:33.808 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:33.808 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:33.831 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:33.831 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:33.831 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:33.831 INFO:teuthology.orchestra.run.smithi160.stdout: libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:33.831 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:33.831 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:33.871 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install python3-rgw 2024-08-22T23:03:33.883 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:34.003 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librados2 2024-08-22T23:03:34.308 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:34.436 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:33 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:34.523 INFO:teuthology.orchestra.run.smithi144.stdout:Package python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:34.563 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:30 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:34.565 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:34.566 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:34.566 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:34.574 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:34.574 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:34.574 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:34.574 INFO:teuthology.orchestra.run.smithi131.stdout: librados-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:34.574 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:34.574 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:34.632 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install python3-cephfs 2024-08-22T23:03:34.650 INFO:teuthology.orchestra.run.smithi160.stdout:Package librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:34.693 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:34.694 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:34.694 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:34.756 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install librbd1 2024-08-22T23:03:34.816 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install libcephfs2 2024-08-22T23:03:35.192 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:34 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:35.278 INFO:teuthology.orchestra.run.smithi144.stdout:Package python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:35.317 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:31 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:35.320 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:35.321 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:35.321 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:35.387 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install python3-rbd 2024-08-22T23:03:35.395 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:31 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:35.408 INFO:teuthology.orchestra.run.smithi160.stdout:Package librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:35.447 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:35.448 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:35.448 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:35.484 INFO:teuthology.orchestra.run.smithi131.stdout:Package libcephfs2-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:35.516 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rados 2024-08-22T23:03:35.528 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:35.529 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:35.529 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:35.599 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install libcephfs-devel 2024-08-22T23:03:35.949 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:34 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:36.036 INFO:teuthology.orchestra.run.smithi144.stdout:Package python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:36.080 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:36.080 INFO:teuthology.orchestra.run.smithi144.stdout:Nothing to do. 2024-08-22T23:03:36.081 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:36.086 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:32 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:36.149 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install rbd-fuse 2024-08-22T23:03:36.158 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:32 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:36.172 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:36.216 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:36.217 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:36.217 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:36.286 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:36.286 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:36.286 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repo Size 2024-08-22T23:03:36.286 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout: libcephfs-devel x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 31 k 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 31 k 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 139 k 2024-08-22T23:03:36.287 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:36.288 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rgw 2024-08-22T23:03:36.441 INFO:teuthology.orchestra.run.smithi131.stdout:libcephfs-devel-18.2.4-723.g56fd5b35.el9.x86_64 202 kB/s | 31 kB 00:00 2024-08-22T23:03:36.442 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:36.442 INFO:teuthology.orchestra.run.smithi131.stdout:Total 200 kB/s | 31 kB 00:00 2024-08-22T23:03:36.442 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:36.446 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:36.446 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:36.450 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:36.450 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:36.537 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:36.653 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:36.707 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:35 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:36.836 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:36.836 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:36.836 INFO:teuthology.orchestra.run.smithi144.stdout: Package Architecture Version Repository Size 2024-08-22T23:03:36.836 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout: rbd-fuse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 86 k 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 86 k 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 227 k 2024-08-22T23:03:36.837 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:36.854 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:32 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:36.942 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:36.985 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:36.987 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:36.987 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:36.989 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:37.036 INFO:teuthology.orchestra.run.smithi144.stdout:rbd-fuse-18.2.4-723.g56fd5b35.el9.x86_64.rpm 436 kB/s | 86 kB 00:00 2024-08-22T23:03:37.037 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:37.037 INFO:teuthology.orchestra.run.smithi144.stdout:Total 433 kB/s | 86 kB 00:00 2024-08-22T23:03:37.037 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:37.043 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:37.043 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:37.055 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-cephfs 2024-08-22T23:03:37.106 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:37.106 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:37.207 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:37.207 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:37.207 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:37.207 INFO:teuthology.orchestra.run.smithi131.stdout: libcephfs-devel-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:37.208 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:37.208 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:37.253 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:37.339 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:37.389 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install librados2 2024-08-22T23:03:37.626 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:33 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:37.711 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:37.729 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:37.754 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:37.755 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:37.755 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:37.819 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install python3-rbd 2024-08-22T23:03:37.953 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:33 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:37.971 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:37.971 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:37.971 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:37.971 INFO:teuthology.orchestra.run.smithi144.stdout: rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:37.971 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:37.974 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:38.039 INFO:teuthology.orchestra.run.smithi131.stdout:Package librados2-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:38.082 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:38.083 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:38.083 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:38.151 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install librbd1 2024-08-22T23:03:38.216 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install rbd-mirror 2024-08-22T23:03:38.385 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:34 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:38.472 INFO:teuthology.orchestra.run.smithi160.stdout:Package python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:38.515 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:38.516 INFO:teuthology.orchestra.run.smithi160.stdout:Nothing to do. 2024-08-22T23:03:38.516 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:38.584 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-fuse 2024-08-22T23:03:38.711 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:34 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:38.792 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:37 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:38.796 INFO:teuthology.orchestra.run.smithi131.stdout:Package librbd1-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:38.839 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:38.840 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:38.840 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:38.905 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install python3-rados 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout: Package Arch Version Repo Size 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout: rbd-mirror x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.0 M 2024-08-22T23:03:38.923 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 3.0 M 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 12 M 2024-08-22T23:03:38.924 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:39.150 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:35 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:39.278 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-fuse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 86 k 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:03:39.279 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:39.280 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 86 k 2024-08-22T23:03:39.280 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 227 k 2024-08-22T23:03:39.280 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:39.469 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-fuse-18.2.4-723.g56fd5b35.el9.x86_64.rpm 459 kB/s | 86 kB 00:00 2024-08-22T23:03:39.469 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:39.469 INFO:teuthology.orchestra.run.smithi160.stdout:Total 455 kB/s | 86 kB 00:00 2024-08-22T23:03:39.470 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:39.474 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:35 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:39.476 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:39.477 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:39.540 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:39.540 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:39.560 INFO:teuthology.orchestra.run.smithi131.stdout:Package python3-rados-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:39.603 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:39.604 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:39.604 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:39.663 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install python3-rgw 2024-08-22T23:03:39.700 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:39.773 INFO:teuthology.orchestra.run.smithi144.stdout:rbd-mirror-18.2.4-723.g56fd5b35.el9.x86_64.rpm 3.5 MB/s | 3.0 MB 00:00 2024-08-22T23:03:39.773 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:39.774 INFO:teuthology.orchestra.run.smithi144.stdout:Total 3.5 MB/s | 3.0 MB 00:00 2024-08-22T23:03:39.774 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:39.783 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:39.783 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:39.798 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:39.863 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:39.863 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:40.129 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:40.230 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:36 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:40.276 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:40.316 INFO:teuthology.orchestra.run.smithi131.stdout:Package python3-rgw-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:40.332 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:40.358 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:40.358 INFO:teuthology.orchestra.run.smithi144.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:03:40.358 INFO:teuthology.orchestra.run.smithi144.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-08-22T23:03:40.358 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-08-22T23:03:40.358 INFO:teuthology.orchestra.run.smithi144.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-08-22T23:03:40.358 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:40.359 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:40.359 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:40.359 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:40.370 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:40.370 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:40.371 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:40.371 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:40.371 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:40.371 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:40.422 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install python3-cephfs 2024-08-22T23:03:40.598 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-mirror 2024-08-22T23:03:40.991 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:36 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:41.075 INFO:teuthology.orchestra.run.smithi131.stdout:Package python3-cephfs-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:41.117 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:41.118 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:41.119 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:41.182 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:37 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:41.183 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install python3-rbd 2024-08-22T23:03:41.311 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:41.311 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:41.311 INFO:teuthology.orchestra.run.smithi160.stdout: Package Arch Version Repo Size 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-mirror x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.0 M 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 3.0 M 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 12 M 2024-08-22T23:03:41.312 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:41.352 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:41.353 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:41.353 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:41.353 INFO:teuthology.orchestra.run.smithi144.stdout: rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:41.353 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:41.353 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:41.609 DEBUG:teuthology.orchestra.run.smithi144:> sudo yum -y install rbd-nbd 2024-08-22T23:03:41.647 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-mirror-18.2.4-723.g56fd5b35.el9.x86_64.rpm 8.9 MB/s | 3.0 MB 00:00 2024-08-22T23:03:41.647 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:41.648 INFO:teuthology.orchestra.run.smithi160.stdout:Total 8.9 MB/s | 3.0 MB 00:00 2024-08-22T23:03:41.648 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:41.657 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:41.657 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:41.737 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:41.737 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:41.747 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:37 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:41.834 INFO:teuthology.orchestra.run.smithi131.stdout:Package python3-rbd-2:18.2.4-723.g56fd5b35.el9.x86_64 is already installed. 2024-08-22T23:03:41.877 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:41.878 INFO:teuthology.orchestra.run.smithi131.stdout:Nothing to do. 2024-08-22T23:03:41.878 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:41.940 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install rbd-fuse 2024-08-22T23:03:42.157 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:42.184 INFO:teuthology.orchestra.run.smithi144.stdout:Last metadata expiration check: 0:01:41 ago on Thu 22 Aug 2024 11:02:01 PM UTC. 2024-08-22T23:03:42.231 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:42.256 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:42.256 INFO:teuthology.orchestra.run.smithi160.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:03:42.256 INFO:teuthology.orchestra.run.smithi160.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-08-22T23:03:42.256 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-08-22T23:03:42.256 INFO:teuthology.orchestra.run.smithi160.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-08-22T23:03:42.256 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:42.314 INFO:teuthology.orchestra.run.smithi144.stdout:Dependencies resolved. 2024-08-22T23:03:42.315 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:42.315 INFO:teuthology.orchestra.run.smithi144.stdout: Package Architecture Version Repository Size 2024-08-22T23:03:42.315 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:42.315 INFO:teuthology.orchestra.run.smithi144.stdout:Installing: 2024-08-22T23:03:42.315 INFO:teuthology.orchestra.run.smithi144.stdout: rbd-nbd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 172 k 2024-08-22T23:03:42.315 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction Summary 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout:================================================================================ 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout:Install 1 Package 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout:Total download size: 172 k 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout:Installed size: 494 k 2024-08-22T23:03:42.316 INFO:teuthology.orchestra.run.smithi144.stdout:Downloading Packages: 2024-08-22T23:03:42.504 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:38 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:42.618 INFO:teuthology.orchestra.run.smithi144.stdout:rbd-nbd-18.2.4-723.g56fd5b35.el9.x86_64.rpm 570 kB/s | 172 kB 00:00 2024-08-22T23:03:42.619 INFO:teuthology.orchestra.run.smithi144.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:42.619 INFO:teuthology.orchestra.run.smithi144.stdout:Total 566 kB/s | 172 kB 00:00 2024-08-22T23:03:42.619 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction check 2024-08-22T23:03:42.627 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction check succeeded. 2024-08-22T23:03:42.627 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction test 2024-08-22T23:03:42.633 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout: Package Architecture Version Repository Size 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout: rbd-fuse x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 86 k 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:03:42.634 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:42.635 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 86 k 2024-08-22T23:03:42.635 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 227 k 2024-08-22T23:03:42.635 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:42.691 INFO:teuthology.orchestra.run.smithi144.stdout:Transaction test succeeded. 2024-08-22T23:03:42.691 INFO:teuthology.orchestra.run.smithi144.stdout:Running transaction 2024-08-22T23:03:42.829 INFO:teuthology.orchestra.run.smithi131.stdout:rbd-fuse-18.2.4-723.g56fd5b35.el9.x86_64.rpm 447 kB/s | 86 kB 00:00 2024-08-22T23:03:42.829 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:42.830 INFO:teuthology.orchestra.run.smithi131.stdout:Total 444 kB/s | 86 kB 00:00 2024-08-22T23:03:42.830 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:42.836 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:42.837 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:42.849 INFO:teuthology.orchestra.run.smithi144.stdout: Preparing : 1/1 2024-08-22T23:03:42.899 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:42.899 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:42.948 INFO:teuthology.orchestra.run.smithi144.stdout: Installing : rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.041 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:43.149 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.305 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.305 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:43.306 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:43.306 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:43.306 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:43.306 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:43.392 INFO:teuthology.orchestra.run.smithi144.stdout: Running scriptlet: rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.492 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.592 DEBUG:teuthology.orchestra.run.smithi160:> sudo yum -y install rbd-nbd 2024-08-22T23:03:43.637 INFO:teuthology.orchestra.run.smithi144.stdout: Verifying : rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.637 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:43.637 INFO:teuthology.orchestra.run.smithi144.stdout:Installed: 2024-08-22T23:03:43.637 INFO:teuthology.orchestra.run.smithi144.stdout: rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:43.637 INFO:teuthology.orchestra.run.smithi144.stdout: 2024-08-22T23:03:43.637 INFO:teuthology.orchestra.run.smithi144.stdout:Complete! 2024-08-22T23:03:43.722 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:43.722 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:43.722 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:43.722 INFO:teuthology.orchestra.run.smithi131.stdout: rbd-fuse-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:43.723 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:43.723 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:43.872 DEBUG:teuthology.parallel:result is None 2024-08-22T23:03:43.923 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install rbd-mirror 2024-08-22T23:03:44.176 INFO:teuthology.orchestra.run.smithi160.stdout:Last metadata expiration check: 0:01:40 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:44.306 INFO:teuthology.orchestra.run.smithi160.stdout:Dependencies resolved. 2024-08-22T23:03:44.306 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:44.306 INFO:teuthology.orchestra.run.smithi160.stdout: Package Architecture Version Repository Size 2024-08-22T23:03:44.306 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout:Installing: 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-nbd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 172 k 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction Summary 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout:================================================================================ 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout:Install 1 Package 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout:Total download size: 172 k 2024-08-22T23:03:44.307 INFO:teuthology.orchestra.run.smithi160.stdout:Installed size: 494 k 2024-08-22T23:03:44.308 INFO:teuthology.orchestra.run.smithi160.stdout:Downloading Packages: 2024-08-22T23:03:44.505 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:40 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:44.517 INFO:teuthology.orchestra.run.smithi160.stdout:rbd-nbd-18.2.4-723.g56fd5b35.el9.x86_64.rpm 823 kB/s | 172 kB 00:00 2024-08-22T23:03:44.517 INFO:teuthology.orchestra.run.smithi160.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:44.517 INFO:teuthology.orchestra.run.smithi160.stdout:Total 817 kB/s | 172 kB 00:00 2024-08-22T23:03:44.517 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction check 2024-08-22T23:03:44.525 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction check succeeded. 2024-08-22T23:03:44.525 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction test 2024-08-22T23:03:44.589 INFO:teuthology.orchestra.run.smithi160.stdout:Transaction test succeeded. 2024-08-22T23:03:44.589 INFO:teuthology.orchestra.run.smithi160.stdout:Running transaction 2024-08-22T23:03:44.639 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:44.639 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:44.639 INFO:teuthology.orchestra.run.smithi131.stdout: Package Arch Version Repo Size 2024-08-22T23:03:44.639 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:44.639 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout: rbd-mirror x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 3.0 M 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:44.640 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 3.0 M 2024-08-22T23:03:44.641 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 12 M 2024-08-22T23:03:44.641 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:44.742 INFO:teuthology.orchestra.run.smithi160.stdout: Preparing : 1/1 2024-08-22T23:03:44.854 INFO:teuthology.orchestra.run.smithi160.stdout: Installing : rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:44.950 INFO:teuthology.orchestra.run.smithi131.stdout:rbd-mirror-18.2.4-723.g56fd5b35.el9.x86_64.rpm 9.7 MB/s | 3.0 MB 00:00 2024-08-22T23:03:44.950 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:44.951 INFO:teuthology.orchestra.run.smithi131.stdout:Total 9.6 MB/s | 3.0 MB 00:00 2024-08-22T23:03:44.951 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:44.960 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:44.960 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:45.040 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:45.040 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:45.236 INFO:teuthology.orchestra.run.smithi160.stdout: Running scriptlet: rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:45.457 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:45.469 INFO:teuthology.orchestra.run.smithi160.stdout: Verifying : rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:45.470 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:45.470 INFO:teuthology.orchestra.run.smithi160.stdout:Installed: 2024-08-22T23:03:45.470 INFO:teuthology.orchestra.run.smithi160.stdout: rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:45.470 INFO:teuthology.orchestra.run.smithi160.stdout: 2024-08-22T23:03:45.470 INFO:teuthology.orchestra.run.smithi160.stdout:Complete! 2024-08-22T23:03:45.535 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:45.559 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:45.559 INFO:teuthology.orchestra.run.smithi131.stdout:Glob pattern passed to enable, but globs are not supported for this. 2024-08-22T23:03:45.559 INFO:teuthology.orchestra.run.smithi131.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2024-08-22T23:03:45.559 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-08-22T23:03:45.560 INFO:teuthology.orchestra.run.smithi131.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2024-08-22T23:03:45.560 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:45.720 DEBUG:teuthology.parallel:result is None 2024-08-22T23:03:46.585 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:46.585 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:46.585 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:46.586 INFO:teuthology.orchestra.run.smithi131.stdout: rbd-mirror-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:46.586 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:46.586 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:46.839 DEBUG:teuthology.orchestra.run.smithi131:> sudo yum -y install rbd-nbd 2024-08-22T23:03:47.426 INFO:teuthology.orchestra.run.smithi131.stdout:Last metadata expiration check: 0:01:43 ago on Thu 22 Aug 2024 11:02:04 PM UTC. 2024-08-22T23:03:47.561 INFO:teuthology.orchestra.run.smithi131.stdout:Dependencies resolved. 2024-08-22T23:03:47.562 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:47.563 INFO:teuthology.orchestra.run.smithi131.stdout: Package Architecture Version Repository Size 2024-08-22T23:03:47.563 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:47.563 INFO:teuthology.orchestra.run.smithi131.stdout:Installing: 2024-08-22T23:03:47.563 INFO:teuthology.orchestra.run.smithi131.stdout: rbd-nbd x86_64 2:18.2.4-723.g56fd5b35.el9 ceph 172 k 2024-08-22T23:03:47.563 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:47.563 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction Summary 2024-08-22T23:03:47.564 INFO:teuthology.orchestra.run.smithi131.stdout:================================================================================ 2024-08-22T23:03:47.564 INFO:teuthology.orchestra.run.smithi131.stdout:Install 1 Package 2024-08-22T23:03:47.564 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:47.564 INFO:teuthology.orchestra.run.smithi131.stdout:Total download size: 172 k 2024-08-22T23:03:47.564 INFO:teuthology.orchestra.run.smithi131.stdout:Installed size: 494 k 2024-08-22T23:03:47.565 INFO:teuthology.orchestra.run.smithi131.stdout:Downloading Packages: 2024-08-22T23:03:47.764 INFO:teuthology.orchestra.run.smithi131.stdout:rbd-nbd-18.2.4-723.g56fd5b35.el9.x86_64.rpm 852 kB/s | 172 kB 00:00 2024-08-22T23:03:47.765 INFO:teuthology.orchestra.run.smithi131.stdout:-------------------------------------------------------------------------------- 2024-08-22T23:03:47.766 INFO:teuthology.orchestra.run.smithi131.stdout:Total 844 kB/s | 172 kB 00:00 2024-08-22T23:03:47.766 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction check 2024-08-22T23:03:47.774 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction check succeeded. 2024-08-22T23:03:47.774 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction test 2024-08-22T23:03:47.841 INFO:teuthology.orchestra.run.smithi131.stdout:Transaction test succeeded. 2024-08-22T23:03:47.841 INFO:teuthology.orchestra.run.smithi131.stdout:Running transaction 2024-08-22T23:03:47.997 INFO:teuthology.orchestra.run.smithi131.stdout: Preparing : 1/1 2024-08-22T23:03:48.113 INFO:teuthology.orchestra.run.smithi131.stdout: Installing : rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:48.539 INFO:teuthology.orchestra.run.smithi131.stdout: Running scriptlet: rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:48.788 INFO:teuthology.orchestra.run.smithi131.stdout: Verifying : rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 1/1 2024-08-22T23:03:48.788 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:48.788 INFO:teuthology.orchestra.run.smithi131.stdout:Installed: 2024-08-22T23:03:48.788 INFO:teuthology.orchestra.run.smithi131.stdout: rbd-nbd-2:18.2.4-723.g56fd5b35.el9.x86_64 2024-08-22T23:03:48.788 INFO:teuthology.orchestra.run.smithi131.stdout: 2024-08-22T23:03:48.788 INFO:teuthology.orchestra.run.smithi131.stdout:Complete! 2024-08-22T23:03:49.037 DEBUG:teuthology.parallel:result is None 2024-08-22T23:03:49.038 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:49.181 DEBUG:teuthology.orchestra.run.smithi131:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-08-22T23:03:49.204 INFO:teuthology.orchestra.run.smithi131.stdout:18.2.4-723.g56fd5b35.el9 2024-08-22T23:03:49.205 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-723.g56fd5b35.el9 2024-08-22T23:03:49.205 INFO:teuthology.task.install:The correct ceph version 18.2.4-723.g56fd5b35 is installed. 2024-08-22T23:03:49.207 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:49.347 DEBUG:teuthology.orchestra.run.smithi144:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-08-22T23:03:49.373 INFO:teuthology.orchestra.run.smithi144.stdout:18.2.4-723.g56fd5b35.el9 2024-08-22T23:03:49.373 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-723.g56fd5b35.el9 2024-08-22T23:03:49.373 INFO:teuthology.task.install:The correct ceph version 18.2.4-723.g56fd5b35 is installed. 2024-08-22T23:03:49.375 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:49.510 DEBUG:teuthology.orchestra.run.smithi160:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2024-08-22T23:03:49.536 INFO:teuthology.orchestra.run.smithi160.stdout:18.2.4-723.g56fd5b35.el9 2024-08-22T23:03:49.536 INFO:teuthology.packaging:The installed version of ceph is 18.2.4-723.g56fd5b35.el9 2024-08-22T23:03:49.536 INFO:teuthology.task.install:The correct ceph version 18.2.4-723.g56fd5b35 is installed. 2024-08-22T23:03:49.538 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2024-08-22T23:03:49.539 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-22T23:03:49.539 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-08-22T23:03:49.569 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-08-22T23:03:49.569 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-08-22T23:03:49.600 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-08-22T23:03:49.600 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2024-08-22T23:03:49.631 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2024-08-22T23:03:49.631 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-22T23:03:49.631 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/usr/bin/daemon-helper 2024-08-22T23:03:49.660 DEBUG:teuthology.orchestra.run.smithi131:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-08-22T23:03:49.728 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-08-22T23:03:49.728 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/usr/bin/daemon-helper 2024-08-22T23:03:49.757 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-08-22T23:03:49.825 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-08-22T23:03:49.825 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/daemon-helper 2024-08-22T23:03:49.855 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/daemon-helper 2024-08-22T23:03:49.923 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2024-08-22T23:03:49.924 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-22T23:03:49.924 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/usr/bin/adjust-ulimits 2024-08-22T23:03:49.951 DEBUG:teuthology.orchestra.run.smithi131:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-08-22T23:03:50.018 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-08-22T23:03:50.018 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/usr/bin/adjust-ulimits 2024-08-22T23:03:50.047 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-08-22T23:03:50.114 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-08-22T23:03:50.115 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/adjust-ulimits 2024-08-22T23:03:50.141 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2024-08-22T23:03:50.206 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2024-08-22T23:03:50.206 DEBUG:teuthology.orchestra.run.smithi131:> set -ex 2024-08-22T23:03:50.206 DEBUG:teuthology.orchestra.run.smithi131:> sudo dd of=/usr/bin/stdin-killer 2024-08-22T23:03:50.233 DEBUG:teuthology.orchestra.run.smithi131:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-08-22T23:03:50.300 DEBUG:teuthology.orchestra.run.smithi144:> set -ex 2024-08-22T23:03:50.300 DEBUG:teuthology.orchestra.run.smithi144:> sudo dd of=/usr/bin/stdin-killer 2024-08-22T23:03:50.325 DEBUG:teuthology.orchestra.run.smithi144:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-08-22T23:03:50.391 DEBUG:teuthology.orchestra.run.smithi160:> set -ex 2024-08-22T23:03:50.391 DEBUG:teuthology.orchestra.run.smithi160:> sudo dd of=/usr/bin/stdin-killer 2024-08-22T23:03:50.416 DEBUG:teuthology.orchestra.run.smithi160:> sudo chmod a=rx -- /usr/bin/stdin-killer 2024-08-22T23:03:50.480 INFO:teuthology.run_tasks:Running task cephadm... 2024-08-22T23:03:50.569 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 3}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': True}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)', 'MON_DOWN', 'mons down', 'mon down', 'out of quorum', 'CEPHADM_STRAY_HOST', 'CEPHADM_STRAY_DAEMON', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713'} 2024-08-22T23:03:50.570 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:50.570 INFO:tasks.cephadm:Cluster fsid is cb899b88-60da-11ef-bcd2-c7b262605968 2024-08-22T23:03:50.570 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-08-22T23:03:50.570 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '172.21.15.131', 'mon.b': '172.21.15.144', 'mon.c': '172.21.15.160'} 2024-08-22T23:03:50.571 INFO:tasks.cephadm:First mon is mon.a on smithi131 2024-08-22T23:03:50.571 INFO:tasks.cephadm:First mgr is a 2024-08-22T23:03:50.571 INFO:tasks.cephadm:Normalizing hostnames... 2024-08-22T23:03:50.571 DEBUG:teuthology.orchestra.run.smithi131:> sudo hostname $(hostname -s) 2024-08-22T23:03:50.598 DEBUG:teuthology.orchestra.run.smithi144:> sudo hostname $(hostname -s) 2024-08-22T23:03:50.624 DEBUG:teuthology.orchestra.run.smithi160:> sudo hostname $(hostname -s) 2024-08-22T23:03:50.650 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-08-22T23:03:50.651 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:50.791 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '56fd5b351507f92fd1531bbfb42df967f9fbe713', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic/55875/', 'root_build_cause': 'SCMTRIGGER', 'version': '18.2.4-723-g56fd5b35', 'node_name': '172.21.2.8+braggi08', 'job_name': 'ceph-dev-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=centos9,DIST=centos9,MACHINE_SIZE=gigantic', 'package_manager_version': '18.2.4-723.g56fd5b35'}, 'url': 'https://1.chacra.ceph.com/r/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/', 'distro_codename': None, 'modified': '2024-08-19 17:31:26.212941', 'distro_version': '9', 'project': 'ceph', 'flavor': 'default', 'ref': 'reef', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/flavors/default/', 'archs': ['x86_64', 'source'], 'distro': 'centos'}] 2024-08-22T23:03:50.933 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref reef, sha1 56fd5b351507f92fd1531bbfb42df967f9fbe713 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:50.936 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/x86_64/flavors/default/cephadm 2024-08-22T23:03:50.936 DEBUG:teuthology.orchestra.run.smithi131:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:51.309 INFO:teuthology.orchestra.run.smithi131.stdout:-rw-r--r--. 1 ubuntu ubuntu 215596 Aug 22 23:03 /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:51.310 DEBUG:teuthology.orchestra.run.smithi144:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:51.654 INFO:teuthology.orchestra.run.smithi144.stdout:-rw-r--r--. 1 ubuntu ubuntu 215596 Aug 22 23:03 /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:51.654 DEBUG:teuthology.orchestra.run.smithi160:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/reef/56fd5b351507f92fd1531bbfb42df967f9fbe713/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:52.011 INFO:teuthology.orchestra.run.smithi160.stdout:-rw-r--r--. 1 ubuntu ubuntu 215596 Aug 22 23:03 /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:52.011 DEBUG:teuthology.orchestra.run.smithi131:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:52.031 DEBUG:teuthology.orchestra.run.smithi144:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:52.048 DEBUG:teuthology.orchestra.run.smithi160:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:52.079 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 on all hosts... 2024-08-22T23:03:52.079 DEBUG:teuthology.orchestra.run.smithi131:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull 2024-08-22T23:03:52.081 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull 2024-08-22T23:03:52.090 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull 2024-08-22T23:03:53.557 INFO:teuthology.orchestra.run.smithi144.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713... 2024-08-22T23:03:53.598 INFO:teuthology.orchestra.run.smithi131.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713... 2024-08-22T23:03:53.605 INFO:teuthology.orchestra.run.smithi160.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713... 2024-08-22T23:03:53.865 INFO:teuthology.orchestra.run.smithi131.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:53.865 INFO:teuthology.orchestra.run.smithi131.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713... 2024-08-22T23:03:53.865 INFO:teuthology.orchestra.run.smithi131.stderr:/bin/podman: stderr Error: parsing image configuration: fetching blob: received unexpected HTTP status: 502 Bad Gateway 2024-08-22T23:03:53.865 INFO:teuthology.orchestra.run.smithi131.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:53.877 INFO:teuthology.orchestra.run.smithi144.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:53.877 INFO:teuthology.orchestra.run.smithi144.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713... 2024-08-22T23:03:53.877 INFO:teuthology.orchestra.run.smithi144.stderr:/bin/podman: stderr Error: parsing image configuration: fetching blob: received unexpected HTTP status: 502 Bad Gateway 2024-08-22T23:03:53.877 INFO:teuthology.orchestra.run.smithi144.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:53.882 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:53.882 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 427, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi131 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull' 2024-08-22T23:03:53.883 INFO:tasks.cephadm:Archiving crash dumps... 2024-08-22T23:03:53.885 DEBUG:teuthology.misc:Transferring archived files from smithi131:/var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi131/crash 2024-08-22T23:03:53.886 DEBUG:teuthology.orchestra.run.smithi131:> sudo tar c -f - -C /var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash -- . 2024-08-22T23:03:53.905 INFO:teuthology.orchestra.run.smithi160.stderr:Non-zero exit code 125 from /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:53.905 INFO:teuthology.orchestra.run.smithi160.stderr:/bin/podman: stderr Trying to pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713... 2024-08-22T23:03:53.906 INFO:teuthology.orchestra.run.smithi160.stderr:/bin/podman: stderr Error: parsing image configuration: fetching blob: received unexpected HTTP status: 502 Bad Gateway 2024-08-22T23:03:53.906 INFO:teuthology.orchestra.run.smithi160.stderr:ERROR: Failed command: /bin/podman pull quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 2024-08-22T23:03:53.920 INFO:teuthology.orchestra.run.smithi131.stderr:tar: /var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash: Cannot open: No such file or directory 2024-08-22T23:03:53.920 INFO:teuthology.orchestra.run.smithi131.stderr:tar: Error is not recoverable: exiting now 2024-08-22T23:03:53.922 DEBUG:teuthology.misc:Transferring archived files from smithi144:/var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi144/crash 2024-08-22T23:03:53.923 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash -- . 2024-08-22T23:03:53.963 INFO:teuthology.orchestra.run.smithi144.stderr:tar: /var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash: Cannot open: No such file or directory 2024-08-22T23:03:53.963 INFO:teuthology.orchestra.run.smithi144.stderr:tar: Error is not recoverable: exiting now 2024-08-22T23:03:53.965 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi160/crash 2024-08-22T23:03:53.966 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash -- . 2024-08-22T23:03:54.015 INFO:teuthology.orchestra.run.smithi160.stderr:tar: /var/lib/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/crash: Cannot open: No such file or directory 2024-08-22T23:03:54.015 INFO:teuthology.orchestra.run.smithi160.stderr:tar: Error is not recoverable: exiting now 2024-08-22T23:03:54.017 INFO:tasks.cephadm:Checking cluster log for badness... 2024-08-22T23:03:54.017 DEBUG:teuthology.orchestra.run.smithi131:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-08-22T23:03:54.043 INFO:teuthology.orchestra.run.smithi131.stderr:grep: /var/log/ceph/cb899b88-60da-11ef-bcd2-c7b262605968/ceph.log: No such file or directory 2024-08-22T23:03:54.045 INFO:tasks.cephadm:Compressing logs... 2024-08-22T23:03:54.045 DEBUG:teuthology.orchestra.run.smithi131:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-22T23:03:54.088 DEBUG:teuthology.orchestra.run.smithi144:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-22T23:03:54.091 DEBUG:teuthology.orchestra.run.smithi160:> sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-22T23:03:54.110 INFO:teuthology.orchestra.run.smithi131.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-08-22T23:03:54.113 INFO:teuthology.orchestra.run.smithi144.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-08-22T23:03:54.116 INFO:teuthology.orchestra.run.smithi160.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2024-08-22T23:03:54.119 INFO:tasks.cephadm:Archiving logs... 2024-08-22T23:03:54.119 DEBUG:teuthology.misc:Transferring archived files from smithi131:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi131/log 2024-08-22T23:03:54.120 DEBUG:teuthology.orchestra.run.smithi131:> sudo tar c -f - -C /var/log/ceph -- . 2024-08-22T23:03:54.178 DEBUG:teuthology.misc:Transferring archived files from smithi144:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi144/log 2024-08-22T23:03:54.179 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /var/log/ceph -- . 2024-08-22T23:03:54.205 DEBUG:teuthology.misc:Transferring archived files from smithi160:/var/log/ceph to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi160/log 2024-08-22T23:03:54.206 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /var/log/ceph -- . 2024-08-22T23:03:54.231 INFO:tasks.cephadm:Removing cluster... 2024-08-22T23:03:54.231 DEBUG:teuthology.orchestra.run.smithi131:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cb899b88-60da-11ef-bcd2-c7b262605968 --force 2024-08-22T23:03:54.368 INFO:teuthology.orchestra.run.smithi131.stdout:Deleting cluster with fsid: cb899b88-60da-11ef-bcd2-c7b262605968 2024-08-22T23:03:54.633 DEBUG:teuthology.orchestra.run.smithi144:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cb899b88-60da-11ef-bcd2-c7b262605968 --force 2024-08-22T23:03:54.770 INFO:teuthology.orchestra.run.smithi144.stdout:Deleting cluster with fsid: cb899b88-60da-11ef-bcd2-c7b262605968 2024-08-22T23:03:55.036 DEBUG:teuthology.orchestra.run.smithi160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cb899b88-60da-11ef-bcd2-c7b262605968 --force 2024-08-22T23:03:55.175 INFO:teuthology.orchestra.run.smithi160.stdout:Deleting cluster with fsid: cb899b88-60da-11ef-bcd2-c7b262605968 2024-08-22T23:03:55.458 INFO:tasks.cephadm:Removing cephadm ... 2024-08-22T23:03:55.458 DEBUG:teuthology.orchestra.run.smithi131:> rm -rf /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:55.475 DEBUG:teuthology.orchestra.run.smithi144:> rm -rf /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:55.491 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf /home/ubuntu/cephtest/cephadm 2024-08-22T23:03:55.506 INFO:tasks.cephadm:Teardown complete 2024-08-22T23:03:55.506 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 1703, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 1618, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 427, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi131 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull' 2024-08-22T23:03:55.683 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=6c1376130bfd4d7bb9aee8b04146aa14 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 1703, in task with contextutil.nested( File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/usr/lib/python3.10/contextlib.py", line 153, in __exit__ self.gen.throw(typ, value, traceback) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 1618, in initialize_config yield File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/contextutil.py", line 30, in nested vars.append(enter()) File "/usr/lib/python3.10/contextlib.py", line 135, in __enter__ return next(self.gen) File "/home/teuthworker/src/git.ceph.com_ceph_e8fe7fc94b78e59becfc678546edf1d806193a2a/qa/tasks/cephadm.py", line 427, in pull_image run.wait( File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 479, in wait proc.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_67db276914d29505c9707d04f3a3b8fb9d8aee4b/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi131 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull' 2024-08-22T23:03:55.687 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-08-22T23:03:55.695 DEBUG:teuthology.run_tasks:Unwinding manager install 2024-08-22T23:03:55.735 INFO:teuthology.task.install.util:Removing shipped files: /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer... 2024-08-22T23:03:55.735 DEBUG:teuthology.orchestra.run.smithi131:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-08-22T23:03:55.748 DEBUG:teuthology.orchestra.run.smithi144:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-08-22T23:03:55.751 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2024-08-22T23:03:55.852 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-08-22T23:03:55.864 INFO:teuthology.task.clock:Checking final clock skew... 2024-08-22T23:03:55.864 DEBUG:teuthology.orchestra.run.smithi131:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-22T23:03:55.867 DEBUG:teuthology.orchestra.run.smithi144:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-22T23:03:55.876 DEBUG:teuthology.orchestra.run.smithi160:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-08-22T23:03:55.882 INFO:teuthology.orchestra.run.smithi131.stderr:bash: line 1: ntpq: command not found 2024-08-22T23:03:55.887 INFO:teuthology.orchestra.run.smithi131.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-22T23:03:55.887 INFO:teuthology.orchestra.run.smithi131.stdout:=============================================================================== 2024-08-22T23:03:55.887 INFO:teuthology.orchestra.run.smithi131.stdout:^* hv01.front.sepia.ceph.com 3 6 77 3 +393us[ +445us] +/- 65ms 2024-08-22T23:03:55.887 INFO:teuthology.orchestra.run.smithi131.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 3 -712us[ -659us] +/- 70ms 2024-08-22T23:03:55.887 INFO:teuthology.orchestra.run.smithi131.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 3 +336us[ +336us] +/- 88ms 2024-08-22T23:03:55.887 INFO:teuthology.orchestra.run.smithi131.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:03:55.888 INFO:teuthology.orchestra.run.smithi144.stderr:bash: line 1: ntpq: command not found 2024-08-22T23:03:55.890 INFO:teuthology.orchestra.run.smithi160.stderr:bash: line 1: ntpq: command not found 2024-08-22T23:03:55.892 INFO:teuthology.orchestra.run.smithi144.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-22T23:03:55.892 INFO:teuthology.orchestra.run.smithi144.stdout:=============================================================================== 2024-08-22T23:03:55.893 INFO:teuthology.orchestra.run.smithi144.stdout:^* hv01.front.sepia.ceph.com 3 6 77 3 +401us[ +390us] +/- 65ms 2024-08-22T23:03:55.893 INFO:teuthology.orchestra.run.smithi144.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 2 -686us[ -686us] +/- 70ms 2024-08-22T23:03:55.893 INFO:teuthology.orchestra.run.smithi144.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 4 +346us[ +335us] +/- 88ms 2024-08-22T23:03:55.893 INFO:teuthology.orchestra.run.smithi144.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:03:55.894 INFO:teuthology.orchestra.run.smithi160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2024-08-22T23:03:55.895 INFO:teuthology.orchestra.run.smithi160.stdout:=============================================================================== 2024-08-22T23:03:55.895 INFO:teuthology.orchestra.run.smithi160.stdout:^* hv01.front.sepia.ceph.com 3 6 77 4 +393us[ +317us] +/- 65ms 2024-08-22T23:03:55.895 INFO:teuthology.orchestra.run.smithi160.stdout:^+ hv02.front.sepia.ceph.com 3 6 77 2 -701us[ -701us] +/- 70ms 2024-08-22T23:03:55.895 INFO:teuthology.orchestra.run.smithi160.stdout:^+ hv03.front.sepia.ceph.com 3 6 77 4 +355us[ +355us] +/- 88ms 2024-08-22T23:03:55.895 INFO:teuthology.orchestra.run.smithi160.stdout:^? hv04.front.sepia.ceph.com 0 7 0 - +0ns[ +0ns] +/- 0ns 2024-08-22T23:03:55.896 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-08-22T23:03:56.139 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-08-22T23:03:56.139 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-08-22T23:03:56.905 DEBUG:teuthology.orchestra.run.smithi131:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-08-22T23:03:56.958 DEBUG:teuthology.orchestra.run.smithi144:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-08-22T23:03:57.009 DEBUG:teuthology.orchestra.run.smithi160:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2024-08-22T23:03:57.060 DEBUG:teuthology.orchestra.run.smithi131:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-08-22T23:03:57.090 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:57.091 DEBUG:teuthology.orchestra.run.smithi144:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-08-22T23:03:57.119 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:57.120 DEBUG:teuthology.orchestra.run.smithi160:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 2024-08-22T23:03:57.147 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:57.148 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-08-22T23:03:57.156 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-08-22T23:03:57.179 INFO:teuthology.task.internal:Duration was 247.999650 seconds 2024-08-22T23:03:57.179 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-08-22T23:03:57.213 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-08-22T23:03:57.213 DEBUG:teuthology.orchestra.run.smithi131:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-08-22T23:03:57.216 DEBUG:teuthology.orchestra.run.smithi144:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-08-22T23:03:57.218 DEBUG:teuthology.orchestra.run.smithi160:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-08-22T23:03:57.258 INFO:teuthology.orchestra.run.smithi144.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-22T23:03:57.260 INFO:teuthology.orchestra.run.smithi131.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-22T23:03:57.261 INFO:teuthology.orchestra.run.smithi160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2024-08-22T23:03:57.742 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-08-22T23:03:57.742 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi131.front.sepia.ceph.com 2024-08-22T23:03:57.743 DEBUG:teuthology.orchestra.run.smithi131:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-08-22T23:03:57.766 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi144.front.sepia.ceph.com 2024-08-22T23:03:57.766 DEBUG:teuthology.orchestra.run.smithi144:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-08-22T23:03:57.794 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi160.front.sepia.ceph.com 2024-08-22T23:03:57.795 DEBUG:teuthology.orchestra.run.smithi160:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-08-22T23:03:57.830 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-08-22T23:03:57.830 DEBUG:teuthology.orchestra.run.smithi131:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-22T23:03:57.833 DEBUG:teuthology.orchestra.run.smithi144:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-22T23:03:57.837 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-08-22T23:03:57.902 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-08-22T23:03:57.902 DEBUG:teuthology.orchestra.run.smithi131:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-08-22T23:03:57.905 DEBUG:teuthology.orchestra.run.smithi144:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-08-22T23:03:57.908 DEBUG:teuthology.orchestra.run.smithi160:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-08-22T23:03:58.003 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-08-22T23:03:58.019 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-08-22T23:03:58.020 DEBUG:teuthology.orchestra.run.smithi131:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-08-22T23:03:58.047 DEBUG:teuthology.orchestra.run.smithi144:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-08-22T23:03:58.073 DEBUG:teuthology.orchestra.run.smithi160:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-08-22T23:03:58.100 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-08-22T23:03:58.112 DEBUG:teuthology.orchestra.run.smithi131:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-08-22T23:03:58.115 DEBUG:teuthology.orchestra.run.smithi144:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-08-22T23:03:58.117 DEBUG:teuthology.orchestra.run.smithi160:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-08-22T23:03:58.137 INFO:teuthology.orchestra.run.smithi131.stdout:kernel.core_pattern = core 2024-08-22T23:03:58.138 INFO:teuthology.orchestra.run.smithi144.stdout:kernel.core_pattern = core 2024-08-22T23:03:58.164 INFO:teuthology.orchestra.run.smithi160.stdout:kernel.core_pattern = core 2024-08-22T23:03:58.187 DEBUG:teuthology.orchestra.run.smithi131:> test -e /home/ubuntu/cephtest/archive/coredump 2024-08-22T23:03:58.214 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:58.214 DEBUG:teuthology.orchestra.run.smithi144:> test -e /home/ubuntu/cephtest/archive/coredump 2024-08-22T23:03:58.233 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:58.234 DEBUG:teuthology.orchestra.run.smithi160:> test -e /home/ubuntu/cephtest/archive/coredump 2024-08-22T23:03:58.251 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-08-22T23:03:58.252 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-08-22T23:03:58.269 INFO:teuthology.task.internal:Transferring archived files... 2024-08-22T23:03:58.270 DEBUG:teuthology.misc:Transferring archived files from smithi131:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi131 2024-08-22T23:03:58.270 DEBUG:teuthology.orchestra.run.smithi131:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-08-22T23:03:58.301 DEBUG:teuthology.misc:Transferring archived files from smithi144:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi144 2024-08-22T23:03:58.301 DEBUG:teuthology.orchestra.run.smithi144:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-08-22T23:03:58.331 DEBUG:teuthology.misc:Transferring archived files from smithi160:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/teuthology-2024-08-19_22:08:05-orch-reef-distro-default-smithi/7862243/remote/smithi160 2024-08-22T23:03:58.331 DEBUG:teuthology.orchestra.run.smithi160:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-08-22T23:03:58.361 INFO:teuthology.task.internal:Removing archive directory... 2024-08-22T23:03:58.362 DEBUG:teuthology.orchestra.run.smithi131:> rm -rf -- /home/ubuntu/cephtest/archive 2024-08-22T23:03:58.364 DEBUG:teuthology.orchestra.run.smithi144:> rm -rf -- /home/ubuntu/cephtest/archive 2024-08-22T23:03:58.368 DEBUG:teuthology.orchestra.run.smithi160:> rm -rf -- /home/ubuntu/cephtest/archive 2024-08-22T23:03:58.412 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-08-22T23:03:58.422 INFO:teuthology.task.internal:Not uploading archives. 2024-08-22T23:03:58.422 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-08-22T23:03:58.446 INFO:teuthology.task.internal:Tidying up after the test... 2024-08-22T23:03:58.446 DEBUG:teuthology.orchestra.run.smithi131:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-08-22T23:03:58.449 DEBUG:teuthology.orchestra.run.smithi144:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-08-22T23:03:58.451 DEBUG:teuthology.orchestra.run.smithi160:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-08-22T23:03:58.461 INFO:teuthology.orchestra.run.smithi131.stdout: 262217 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Aug 22 23:03 /home/ubuntu/cephtest 2024-08-22T23:03:58.463 INFO:teuthology.orchestra.run.smithi144.stdout: 262217 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Aug 22 23:03 /home/ubuntu/cephtest 2024-08-22T23:03:58.468 INFO:teuthology.orchestra.run.smithi160.stdout: 262217 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Aug 22 23:03 /home/ubuntu/cephtest 2024-08-22T23:03:58.469 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-08-22T23:03:58.479 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-08-22T23:03:58.548 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream_runc agent/on mon_election/connectivity task/test_host_drain} duration: 247.99964952468872 failure_reason: 'Command failed on smithi131 with status 1: ''sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:56fd5b351507f92fd1531bbfb42df967f9fbe713 pull''' flavor: default owner: scheduled_teuthology@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=6c1376130bfd4d7bb9aee8b04146aa14 status: fail success: false 2024-08-22T23:03:58.549 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-08-22T23:03:58.633 INFO:teuthology.run:FAIL