2026-02-22T20:16:39.079 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-22T20:16:39.095 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-22T20:16:39.175 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474 branch: wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle description: rados/cephadm/workunits/{0-distro/rocky_10 agent/on mon_election/connectivity task/test_host_drain} email: null first_in_suite: false flavor: default job_id: '64474' kernel: branch: distro kdb: 1 sha1: distro last_in_suite: false machine_type: trial name: nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial no_nested_subset: false os_type: rocky os_version: '10.1' overrides: admin_socket: branch: wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle 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: a5c3084f688b1f6eff223b8d259a8316f9844c8e ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} cephadm: distro-suffix: rockylinux-10 install: ceph: flavor: default sha1: a5c3084f688b1f6eff223b8d259a8316f9844c8e selinux: allowlist: - comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1 workunit: branch: wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle sha1: a5c3084f688b1f6eff223b8d259a8316f9844c8e owner: scheduled_nmordech@soko04.front.sepia.ceph.com priority: 10 repo: https://git.ceph.com/ceph-ci.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: 966 sha1: a5c3084f688b1f6eff223b8d259a8316f9844c8e sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: a5c3084f688b1f6eff223b8d259a8316f9844c8e targets: trial060.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEj1PZbVxGUdqhDYg9Hnu+DipWQR82NfRc7trFWkix2qVVddjL6qLdjzBy2xPH2f3xNPW+DTiDLzdLoGTq5ejlY= trial090.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEZnhBJ/ohv9++CgHn7+YXMRsq4MUcgWfR6qhDzx0fPkd32EMbEKziXBMreBfsA+qUyqqI8oN+K3AFsLU3hsBk0= trial160.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLtY6E+jsCxwbVj2bJ+Rv2J8Z/YePRjZwLh4jdcg/17iWHnCjUn9cc8Q1t3YqqF3qa4nvFRfbudSBup9jUiu31k= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - 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: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-22_19:44:01 tube: trial user: nmordech verbose: false worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.3318653 2026-02-22T20:16:39.175 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa; will attempt to use it 2026-02-22T20:16:39.175 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks 2026-02-22T20:16:39.175 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-22T20:16:39.177 INFO:teuthology.task.internal:Checking packages... 2026-02-22T20:16:39.177 INFO:teuthology.task.internal:Checking packages for os_type 'rocky', flavor 'default' and ceph hash 'a5c3084f688b1f6eff223b8d259a8316f9844c8e' 2026-02-22T20:16:39.177 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-22T20:16:39.177 INFO:teuthology.packaging:ref: None 2026-02-22T20:16:39.177 INFO:teuthology.packaging:tag: None 2026-02-22T20:16:39.177 INFO:teuthology.packaging:branch: wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle 2026-02-22T20:16:39.177 INFO:teuthology.packaging:sha1: a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:16:39.177 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&ref=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle 2026-02-22T20:16:39.306 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-794.ga5c3084f 2026-02-22T20:16:39.308 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-22T20:16:39.319 INFO:teuthology.task.internal:no buildpackages task found 2026-02-22T20:16:39.319 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-22T20:16:39.333 INFO:teuthology.task.internal:Saving configuration 2026-02-22T20:16:39.345 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-22T20:16:39.356 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-22T20:16:39.434 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial060.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'rocky', 'os_version': '10.1', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-22 20:13:03.785213', 'locked_by': 'scheduled_nmordech@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEj1PZbVxGUdqhDYg9Hnu+DipWQR82NfRc7trFWkix2qVVddjL6qLdjzBy2xPH2f3xNPW+DTiDLzdLoGTq5ejlY='} 2026-02-22T20:16:39.490 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial090.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'rocky', 'os_version': '10.1', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-22 20:13:03.783896', 'locked_by': 'scheduled_nmordech@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEZnhBJ/ohv9++CgHn7+YXMRsq4MUcgWfR6qhDzx0fPkd32EMbEKziXBMreBfsA+qUyqqI8oN+K3AFsLU3hsBk0='} 2026-02-22T20:16:39.544 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial160.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'rocky', 'os_version': '10.1', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-22 20:13:03.784800', 'locked_by': 'scheduled_nmordech@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBLtY6E+jsCxwbVj2bJ+Rv2J8Z/YePRjZwLh4jdcg/17iWHnCjUn9cc8Q1t3YqqF3qa4nvFRfbudSBup9jUiu31k='} 2026-02-22T20:16:39.544 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-22T20:16:39.555 INFO:teuthology.task.internal:roles: ubuntu@trial060.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-02-22T20:16:39.555 INFO:teuthology.task.internal:roles: ubuntu@trial090.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-02-22T20:16:39.555 INFO:teuthology.task.internal:roles: ubuntu@trial160.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-02-22T20:16:39.555 INFO:teuthology.run_tasks:Running task console_log... 2026-02-22T20:16:39.752 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7c7b91ef7ce0>, signals=[15]) 2026-02-22T20:16:39.752 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-22T20:16:39.764 INFO:teuthology.task.internal:Opening connections... 2026-02-22T20:16:39.764 DEBUG:teuthology.task.internal:connecting to ubuntu@trial060.front.sepia.ceph.com 2026-02-22T20:16:39.765 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial060.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T20:16:39.829 DEBUG:teuthology.task.internal:connecting to ubuntu@trial090.front.sepia.ceph.com 2026-02-22T20:16:39.830 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T20:16:39.893 DEBUG:teuthology.task.internal:connecting to ubuntu@trial160.front.sepia.ceph.com 2026-02-22T20:16:39.893 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T20:16:39.956 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-22T20:16:39.968 DEBUG:teuthology.orchestra.run.trial060:> uname -m 2026-02-22T20:16:39.985 INFO:teuthology.orchestra.run.trial060.stdout:x86_64 2026-02-22T20:16:39.985 DEBUG:teuthology.orchestra.run.trial060:> cat /etc/os-release 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:NAME="Rocky Linux" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:VERSION="10.1 (Red Quartz)" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:ID="rocky" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:ID_LIKE="rhel centos fedora" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:VERSION_ID="10.1" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:PLATFORM_ID="platform:el10" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:PRETTY_NAME="Rocky Linux 10.1 (Red Quartz)" 2026-02-22T20:16:40.042 INFO:teuthology.orchestra.run.trial060.stdout:ANSI_COLOR="0;32" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:LOGO="fedora-logo-icon" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:CPE_NAME="cpe:/o:rocky:rocky:10::baseos" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:HOME_URL="https://rockylinux.org/" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:VENDOR_NAME="RESF" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:VENDOR_URL="https://resf.org/" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:BUG_REPORT_URL="https://bugs.rockylinux.org/" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:SUPPORT_END="2035-05-31" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:ROCKY_SUPPORT_PRODUCT="Rocky-Linux-10" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:ROCKY_SUPPORT_PRODUCT_VERSION="10.1" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:REDHAT_SUPPORT_PRODUCT="Rocky Linux" 2026-02-22T20:16:40.043 INFO:teuthology.orchestra.run.trial060.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="10.1" 2026-02-22T20:16:40.043 INFO:teuthology.lock.ops:Updating trial060.front.sepia.ceph.com on lock server 2026-02-22T20:16:40.118 DEBUG:teuthology.orchestra.run.trial090:> uname -m 2026-02-22T20:16:40.135 INFO:teuthology.orchestra.run.trial090.stdout:x86_64 2026-02-22T20:16:40.135 DEBUG:teuthology.orchestra.run.trial090:> cat /etc/os-release 2026-02-22T20:16:40.191 INFO:teuthology.orchestra.run.trial090.stdout:NAME="Rocky Linux" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:VERSION="10.1 (Red Quartz)" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:ID="rocky" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:ID_LIKE="rhel centos fedora" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:VERSION_ID="10.1" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:PLATFORM_ID="platform:el10" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:PRETTY_NAME="Rocky Linux 10.1 (Red Quartz)" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:ANSI_COLOR="0;32" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:LOGO="fedora-logo-icon" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:CPE_NAME="cpe:/o:rocky:rocky:10::baseos" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:HOME_URL="https://rockylinux.org/" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:VENDOR_NAME="RESF" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:VENDOR_URL="https://resf.org/" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:BUG_REPORT_URL="https://bugs.rockylinux.org/" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:SUPPORT_END="2035-05-31" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:ROCKY_SUPPORT_PRODUCT="Rocky-Linux-10" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:ROCKY_SUPPORT_PRODUCT_VERSION="10.1" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:REDHAT_SUPPORT_PRODUCT="Rocky Linux" 2026-02-22T20:16:40.192 INFO:teuthology.orchestra.run.trial090.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="10.1" 2026-02-22T20:16:40.193 INFO:teuthology.lock.ops:Updating trial090.front.sepia.ceph.com on lock server 2026-02-22T20:16:40.269 DEBUG:teuthology.orchestra.run.trial160:> uname -m 2026-02-22T20:16:40.286 INFO:teuthology.orchestra.run.trial160.stdout:x86_64 2026-02-22T20:16:40.286 DEBUG:teuthology.orchestra.run.trial160:> cat /etc/os-release 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:NAME="Rocky Linux" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:VERSION="10.1 (Red Quartz)" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:ID="rocky" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:ID_LIKE="rhel centos fedora" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:VERSION_ID="10.1" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:PLATFORM_ID="platform:el10" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:PRETTY_NAME="Rocky Linux 10.1 (Red Quartz)" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:ANSI_COLOR="0;32" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:LOGO="fedora-logo-icon" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:CPE_NAME="cpe:/o:rocky:rocky:10::baseos" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:HOME_URL="https://rockylinux.org/" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:VENDOR_NAME="RESF" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:VENDOR_URL="https://resf.org/" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:BUG_REPORT_URL="https://bugs.rockylinux.org/" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:SUPPORT_END="2035-05-31" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:ROCKY_SUPPORT_PRODUCT="Rocky-Linux-10" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:ROCKY_SUPPORT_PRODUCT_VERSION="10.1" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:REDHAT_SUPPORT_PRODUCT="Rocky Linux" 2026-02-22T20:16:40.343 INFO:teuthology.orchestra.run.trial160.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="10.1" 2026-02-22T20:16:40.343 INFO:teuthology.lock.ops:Updating trial160.front.sepia.ceph.com on lock server 2026-02-22T20:16:40.415 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-22T20:16:40.424 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-22T20:16:40.434 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-22T20:16:40.434 DEBUG:teuthology.orchestra.run.trial060:> test '!' -e /home/ubuntu/cephtest 2026-02-22T20:16:40.436 DEBUG:teuthology.orchestra.run.trial090:> test '!' -e /home/ubuntu/cephtest 2026-02-22T20:16:40.437 DEBUG:teuthology.orchestra.run.trial160:> test '!' -e /home/ubuntu/cephtest 2026-02-22T20:16:40.453 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-22T20:16:40.463 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-22T20:16:40.463 DEBUG:teuthology.orchestra.run.trial060:> test -z $(ls -A /var/lib/ceph) 2026-02-22T20:16:40.492 DEBUG:teuthology.orchestra.run.trial090:> test -z $(ls -A /var/lib/ceph) 2026-02-22T20:16:40.494 DEBUG:teuthology.orchestra.run.trial160:> test -z $(ls -A /var/lib/ceph) 2026-02-22T20:16:40.507 INFO:teuthology.orchestra.run.trial060.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-22T20:16:40.510 INFO:teuthology.orchestra.run.trial090.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-22T20:16:40.512 INFO:teuthology.orchestra.run.trial160.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-02-22T20:16:40.512 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-22T20:16:40.718 INFO:teuthology.run_tasks:Running task kernel... 2026-02-22T20:16:40.740 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'} 2026-02-22T20:16:40.740 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}, 'host.c': {'branch': 'distro', 'kdb': 1, 'sha1': 'distro'}}, timeout 300 2026-02-22T20:16:40.740 DEBUG:teuthology.orchestra.run.trial060:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-22T20:16:40.740 DEBUG:teuthology.orchestra.run.trial090:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-22T20:16:40.741 DEBUG:teuthology.orchestra.run.trial160:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-22T20:16:40.757 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:16:40.757 DEBUG:teuthology.orchestra.run.trial160:> uname -r 2026-02-22T20:16:40.758 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:16:40.758 DEBUG:teuthology.orchestra.run.trial060:> uname -r 2026-02-22T20:16:40.758 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:16:40.758 DEBUG:teuthology.orchestra.run.trial090:> uname -r 2026-02-22T20:16:40.814 INFO:teuthology.orchestra.run.trial060.stdout:6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:40.814 INFO:teuthology.task.kernel:Running kernel on trial060: 6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:40.814 DEBUG:teuthology.orchestra.run.trial060:> sudo yum install -y kernel 2026-02-22T20:16:40.815 INFO:teuthology.orchestra.run.trial160.stdout:6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:40.815 INFO:teuthology.task.kernel:Running kernel on trial160: 6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:40.815 DEBUG:teuthology.orchestra.run.trial160:> sudo yum install -y kernel 2026-02-22T20:16:40.815 INFO:teuthology.orchestra.run.trial090.stdout:6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:40.815 INFO:teuthology.task.kernel:Running kernel on trial090: 6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:40.815 DEBUG:teuthology.orchestra.run.trial090:> sudo yum install -y kernel 2026-02-22T20:16:41.319 INFO:teuthology.orchestra.run.trial160.stdout:Rocky Linux 10 - AppStream 27 MB/s | 2.2 MB 00:00 2026-02-22T20:16:41.331 INFO:teuthology.orchestra.run.trial060.stdout:Rocky Linux 10 - AppStream 24 MB/s | 2.2 MB 00:00 2026-02-22T20:16:41.332 INFO:teuthology.orchestra.run.trial090.stdout:Rocky Linux 10 - AppStream 23 MB/s | 2.2 MB 00:00 2026-02-22T20:16:41.690 INFO:teuthology.orchestra.run.trial160.stdout:Rocky Linux 10 - BaseOS 49 MB/s | 12 MB 00:00 2026-02-22T20:16:41.694 INFO:teuthology.orchestra.run.trial060.stdout:Rocky Linux 10 - BaseOS 52 MB/s | 12 MB 00:00 2026-02-22T20:16:41.729 INFO:teuthology.orchestra.run.trial090.stdout:Rocky Linux 10 - BaseOS 44 MB/s | 12 MB 00:00 2026-02-22T20:16:42.215 INFO:teuthology.orchestra.run.trial160.stdout:Rocky Linux 10 - CRB 6.6 MB/s | 508 kB 00:00 2026-02-22T20:16:42.236 INFO:teuthology.orchestra.run.trial060.stdout:Rocky Linux 10 - CRB 6.2 MB/s | 508 kB 00:00 2026-02-22T20:16:42.265 INFO:teuthology.orchestra.run.trial090.stdout:Rocky Linux 10 - CRB 5.7 MB/s | 508 kB 00:00 2026-02-22T20:16:42.486 INFO:teuthology.orchestra.run.trial060.stdout:Extra Packages for Enterprise Linux 31 MB/s | 6.2 MB 00:00 2026-02-22T20:16:42.564 INFO:teuthology.orchestra.run.trial160.stdout:Extra Packages for Enterprise Linux 21 MB/s | 6.2 MB 00:00 2026-02-22T20:16:43.148 INFO:teuthology.orchestra.run.trial060.stdout:lab-extras 293 kB/s | 3.7 kB 00:00 2026-02-22T20:16:43.222 INFO:teuthology.orchestra.run.trial160.stdout:lab-extras 306 kB/s | 3.7 kB 00:00 2026-02-22T20:16:43.555 INFO:teuthology.orchestra.run.trial060.stdout:Package kernel-6.12.0-124.27.1.el10_1.x86_64 is already installed. 2026-02-22T20:16:43.555 INFO:teuthology.orchestra.run.trial060.stdout:Package kernel-6.12.0-124.35.1.el10_1.x86_64 is already installed. 2026-02-22T20:16:43.567 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:16:43.567 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:16:43.567 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:16:43.591 DEBUG:teuthology.orchestra.run.trial060:> echo no | sudo yum reinstall kernel || true 2026-02-22T20:16:43.629 INFO:teuthology.orchestra.run.trial160.stdout:Package kernel-6.12.0-124.27.1.el10_1.x86_64 is already installed. 2026-02-22T20:16:43.629 INFO:teuthology.orchestra.run.trial160.stdout:Package kernel-6.12.0-124.35.1.el10_1.x86_64 is already installed. 2026-02-22T20:16:43.640 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:16:43.641 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:16:43.642 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:16:43.665 DEBUG:teuthology.orchestra.run.trial160:> echo no | sudo yum reinstall kernel || true 2026-02-22T20:16:43.666 INFO:teuthology.orchestra.run.trial090.stdout:Extra Packages for Enterprise Linux 4.6 MB/s | 6.2 MB 00:01 2026-02-22T20:16:43.910 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:16:43.911 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:16:43.911 INFO:teuthology.orchestra.run.trial060.stdout: Package Architecture Version Repository Size 2026-02-22T20:16:43.911 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:16:43.911 INFO:teuthology.orchestra.run.trial060.stdout:Reinstalling: 2026-02-22T20:16:43.911 INFO:teuthology.orchestra.run.trial060.stdout: kernel x86_64 6.12.0-124.27.1.el10_1 baseos 1.4 M 2026-02-22T20:16:43.911 INFO:teuthology.orchestra.run.trial060.stdout: kernel x86_64 6.12.0-124.35.1.el10_1 baseos 1.4 M 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 2.8 M 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 0 2026-02-22T20:16:43.912 INFO:teuthology.orchestra.run.trial060.stderr:Operation aborted. 2026-02-22T20:16:43.930 INFO:teuthology.orchestra.run.trial060.stdout:Is this ok [y/N]: 2026-02-22T20:16:43.931 DEBUG:teuthology.orchestra.run.trial060:> sudo yum reinstall -y kernel || true 2026-02-22T20:16:43.980 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout: Package Architecture Version Repository Size 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:Reinstalling: 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout: kernel x86_64 6.12.0-124.27.1.el10_1 baseos 1.4 M 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout: kernel x86_64 6.12.0-124.35.1.el10_1 baseos 1.4 M 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 2.8 M 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 0 2026-02-22T20:16:43.981 INFO:teuthology.orchestra.run.trial160.stderr:Operation aborted. 2026-02-22T20:16:44.001 INFO:teuthology.orchestra.run.trial160.stdout:Is this ok [y/N]: 2026-02-22T20:16:44.002 DEBUG:teuthology.orchestra.run.trial160:> sudo yum reinstall -y kernel || true 2026-02-22T20:16:44.210 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:01 ago on Sun 22 Feb 2026 08:16:43 PM UTC. 2026-02-22T20:16:44.245 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:16:44.245 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout: Package Architecture Version Repository Size 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:Reinstalling: 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout: kernel x86_64 6.12.0-124.27.1.el10_1 baseos 1.4 M 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout: kernel x86_64 6.12.0-124.35.1.el10_1 baseos 1.4 M 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 2.8 M 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 0 2026-02-22T20:16:44.246 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:16:44.282 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:01 ago on Sun 22 Feb 2026 08:16:43 PM UTC. 2026-02-22T20:16:44.301 INFO:teuthology.orchestra.run.trial060.stdout:(1/2): kernel-6.12.0-124.27.1.el10_1.x86_64.rpm 25 MB/s | 1.4 MB 00:00 2026-02-22T20:16:44.304 INFO:teuthology.orchestra.run.trial060.stdout:(2/2): kernel-6.12.0-124.35.1.el10_1.x86_64.rpm 24 MB/s | 1.4 MB 00:00 2026-02-22T20:16:44.305 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:16:44.305 INFO:teuthology.orchestra.run.trial060.stdout:Total 47 MB/s | 2.8 MB 00:00 2026-02-22T20:16:44.305 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:16:44.317 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout: Package Architecture Version Repository Size 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout:Reinstalling: 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout: kernel x86_64 6.12.0-124.27.1.el10_1 baseos 1.4 M 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout: kernel x86_64 6.12.0-124.35.1.el10_1 baseos 1.4 M 2026-02-22T20:16:44.318 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:16:44.319 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:16:44.319 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:16:44.319 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:16:44.319 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 2.8 M 2026-02-22T20:16:44.319 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 0 2026-02-22T20:16:44.319 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:16:44.334 INFO:teuthology.orchestra.run.trial090.stdout:lab-extras 322 kB/s | 3.7 kB 00:00 2026-02-22T20:16:44.369 INFO:teuthology.orchestra.run.trial160.stdout:(1/2): kernel-6.12.0-124.27.1.el10_1.x86_64.rpm 27 MB/s | 1.4 MB 00:00 2026-02-22T20:16:44.375 INFO:teuthology.orchestra.run.trial160.stdout:(2/2): kernel-6.12.0-124.35.1.el10_1.x86_64.rpm 25 MB/s | 1.4 MB 00:00 2026-02-22T20:16:44.375 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:16:44.376 INFO:teuthology.orchestra.run.trial160.stdout:Total 48 MB/s | 2.8 MB 00:00 2026-02-22T20:16:44.376 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:16:44.384 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:16:44.384 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:16:44.405 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:16:44.405 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:16:44.449 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:16:44.454 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:16:44.454 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:16:44.457 INFO:teuthology.orchestra.run.trial060.stdout: Reinstalling : kernel-6.12.0-124.35.1.el10_1.x86_64 1/4 2026-02-22T20:16:44.460 INFO:teuthology.orchestra.run.trial060.stdout: Reinstalling : kernel-6.12.0-124.27.1.el10_1.x86_64 2/4 2026-02-22T20:16:44.461 INFO:teuthology.orchestra.run.trial060.stdout: Cleanup : kernel-6.12.0-124.35.1.el10_1.x86_64 3/4 2026-02-22T20:16:44.475 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:16:44.475 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:16:44.520 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:16:44.527 INFO:teuthology.orchestra.run.trial160.stdout: Reinstalling : kernel-6.12.0-124.35.1.el10_1.x86_64 1/4 2026-02-22T20:16:44.530 INFO:teuthology.orchestra.run.trial160.stdout: Reinstalling : kernel-6.12.0-124.27.1.el10_1.x86_64 2/4 2026-02-22T20:16:44.532 INFO:teuthology.orchestra.run.trial160.stdout: Cleanup : kernel-6.12.0-124.35.1.el10_1.x86_64 3/4 2026-02-22T20:16:44.575 INFO:teuthology.orchestra.run.trial060.stdout: Cleanup : kernel-6.12.0-124.27.1.el10_1.x86_64 4/4 2026-02-22T20:16:44.575 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:16:44.575 INFO:teuthology.orchestra.run.trial060.stdout:Reinstalled: 2026-02-22T20:16:44.575 INFO:teuthology.orchestra.run.trial060.stdout: kernel-6.12.0-124.27.1.el10_1.x86_64 kernel-6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:44.575 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:16:44.576 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:16:44.601 DEBUG:teuthology.orchestra.run.trial060:> rpm -q kernel | sort -rV | head -n 1 2026-02-22T20:16:44.633 INFO:teuthology.orchestra.run.trial060.stdout:kernel-6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:44.635 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:44.635 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-22T20:16:44.635 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-22T20:16:44.635 DEBUG:teuthology.orchestra.run.trial060:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-22T20:16:44.650 INFO:teuthology.orchestra.run.trial160.stdout: Cleanup : kernel-6.12.0-124.27.1.el10_1.x86_64 4/4 2026-02-22T20:16:44.650 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:16:44.650 INFO:teuthology.orchestra.run.trial160.stdout:Reinstalled: 2026-02-22T20:16:44.650 INFO:teuthology.orchestra.run.trial160.stdout: kernel-6.12.0-124.27.1.el10_1.x86_64 kernel-6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:44.650 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:16:44.650 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:16:44.676 DEBUG:teuthology.orchestra.run.trial160:> rpm -q kernel | sort -rV | head -n 1 2026-02-22T20:16:44.702 INFO:teuthology.orchestra.run.trial060.stdout:ttyS1 2026-02-22T20:16:44.709 INFO:teuthology.orchestra.run.trial160.stdout:kernel-6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:44.711 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:44.711 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-22T20:16:44.711 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2026-02-22T20:16:44.711 DEBUG:teuthology.orchestra.run.trial160:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-22T20:16:44.728 DEBUG:teuthology.parallel:result is None 2026-02-22T20:16:44.747 INFO:teuthology.orchestra.run.trial090.stdout:Package kernel-6.12.0-124.27.1.el10_1.x86_64 is already installed. 2026-02-22T20:16:44.748 INFO:teuthology.orchestra.run.trial090.stdout:Package kernel-6.12.0-124.35.1.el10_1.x86_64 is already installed. 2026-02-22T20:16:44.759 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:16:44.760 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:16:44.760 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:16:44.776 INFO:teuthology.orchestra.run.trial160.stdout:ttyS1 2026-02-22T20:16:44.784 DEBUG:teuthology.orchestra.run.trial090:> echo no | sudo yum reinstall kernel || true 2026-02-22T20:16:44.820 DEBUG:teuthology.parallel:result is None 2026-02-22T20:16:45.070 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:01 ago on Sun 22 Feb 2026 08:16:44 PM UTC. 2026-02-22T20:16:45.105 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:16:45.105 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:16:45.105 INFO:teuthology.orchestra.run.trial090.stdout: Package Architecture Version Repository Size 2026-02-22T20:16:45.105 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:16:45.105 INFO:teuthology.orchestra.run.trial090.stdout:Reinstalling: 2026-02-22T20:16:45.105 INFO:teuthology.orchestra.run.trial090.stdout: kernel x86_64 6.12.0-124.27.1.el10_1 baseos 1.4 M 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout: kernel x86_64 6.12.0-124.35.1.el10_1 baseos 1.4 M 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 2.8 M 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 0 2026-02-22T20:16:45.106 INFO:teuthology.orchestra.run.trial090.stderr:Operation aborted. 2026-02-22T20:16:45.126 INFO:teuthology.orchestra.run.trial090.stdout:Is this ok [y/N]: 2026-02-22T20:16:45.126 DEBUG:teuthology.orchestra.run.trial090:> sudo yum reinstall -y kernel || true 2026-02-22T20:16:45.406 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:01 ago on Sun 22 Feb 2026 08:16:44 PM UTC. 2026-02-22T20:16:45.443 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:16:45.444 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:16:45.444 INFO:teuthology.orchestra.run.trial090.stdout: Package Architecture Version Repository Size 2026-02-22T20:16:45.444 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout:Reinstalling: 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout: kernel x86_64 6.12.0-124.27.1.el10_1 baseos 1.4 M 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout: kernel x86_64 6.12.0-124.35.1.el10_1 baseos 1.4 M 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 2.8 M 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 0 2026-02-22T20:16:45.445 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:16:45.514 INFO:teuthology.orchestra.run.trial090.stdout:(1/2): kernel-6.12.0-124.27.1.el10_1.x86_64.rpm 20 MB/s | 1.4 MB 00:00 2026-02-22T20:16:45.609 INFO:teuthology.orchestra.run.trial090.stdout:(2/2): kernel-6.12.0-124.35.1.el10_1.x86_64.rpm 8.4 MB/s | 1.4 MB 00:00 2026-02-22T20:16:45.609 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:16:45.610 INFO:teuthology.orchestra.run.trial090.stdout:Total 17 MB/s | 2.8 MB 00:00 2026-02-22T20:16:45.610 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:16:45.689 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:16:45.689 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:16:45.710 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:16:45.710 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:16:45.755 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:16:45.762 INFO:teuthology.orchestra.run.trial090.stdout: Reinstalling : kernel-6.12.0-124.35.1.el10_1.x86_64 1/4 2026-02-22T20:16:45.765 INFO:teuthology.orchestra.run.trial090.stdout: Reinstalling : kernel-6.12.0-124.27.1.el10_1.x86_64 2/4 2026-02-22T20:16:45.767 INFO:teuthology.orchestra.run.trial090.stdout: Cleanup : kernel-6.12.0-124.35.1.el10_1.x86_64 3/4 2026-02-22T20:16:45.883 INFO:teuthology.orchestra.run.trial090.stdout: Cleanup : kernel-6.12.0-124.27.1.el10_1.x86_64 4/4 2026-02-22T20:16:45.883 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:16:45.883 INFO:teuthology.orchestra.run.trial090.stdout:Reinstalled: 2026-02-22T20:16:45.883 INFO:teuthology.orchestra.run.trial090.stdout: kernel-6.12.0-124.27.1.el10_1.x86_64 kernel-6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:45.883 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:16:45.883 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:16:45.909 DEBUG:teuthology.orchestra.run.trial090:> rpm -q kernel | sort -rV | head -n 1 2026-02-22T20:16:45.943 INFO:teuthology.orchestra.run.trial090.stdout:kernel-6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:45.943 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 6.12.0-124.35.1.el10_1.x86_64 2026-02-22T20:16:45.944 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-22T20:16:45.944 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-22T20:16:45.944 DEBUG:teuthology.orchestra.run.trial090:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-22T20:16:46.009 INFO:teuthology.orchestra.run.trial090.stdout:ttyS1 2026-02-22T20:16:46.035 DEBUG:teuthology.parallel:result is None 2026-02-22T20:16:46.035 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-22T20:16:46.049 INFO:teuthology.task.internal:Creating test directory... 2026-02-22T20:16:46.049 DEBUG:teuthology.orchestra.run.trial060:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-22T20:16:46.051 DEBUG:teuthology.orchestra.run.trial090:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-22T20:16:46.077 DEBUG:teuthology.orchestra.run.trial160:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-22T20:16:46.095 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-22T20:16:46.107 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-22T20:16:46.119 INFO:teuthology.task.internal:Creating archive directory... 2026-02-22T20:16:46.119 DEBUG:teuthology.orchestra.run.trial060:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-22T20:16:46.121 DEBUG:teuthology.orchestra.run.trial090:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-22T20:16:46.135 DEBUG:teuthology.orchestra.run.trial160:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-22T20:16:46.155 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-22T20:16:46.168 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-22T20:16:46.168 DEBUG:teuthology.orchestra.run.trial060:> 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 2026-02-22T20:16:46.181 DEBUG:teuthology.orchestra.run.trial090:> 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 2026-02-22T20:16:46.193 DEBUG:teuthology.orchestra.run.trial160:> 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 2026-02-22T20:16:46.205 INFO:teuthology.orchestra.run.trial060.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T20:16:46.214 INFO:teuthology.orchestra.run.trial060.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T20:16:46.217 INFO:teuthology.orchestra.run.trial090.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T20:16:46.220 INFO:teuthology.orchestra.run.trial160.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T20:16:46.226 INFO:teuthology.orchestra.run.trial090.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T20:16:46.230 INFO:teuthology.orchestra.run.trial160.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-22T20:16:46.231 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-22T20:16:46.244 INFO:teuthology.task.internal:Configuring sudo... 2026-02-22T20:16:46.244 DEBUG:teuthology.orchestra.run.trial060:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-22T20:16:46.259 DEBUG:teuthology.orchestra.run.trial090:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-22T20:16:46.271 DEBUG:teuthology.orchestra.run.trial160:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-22T20:16:46.298 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-22T20:16:46.315 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-22T20:16:46.316 DEBUG:teuthology.orchestra.run.trial060:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-22T20:16:46.325 DEBUG:teuthology.orchestra.run.trial090:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-22T20:16:46.337 DEBUG:teuthology.orchestra.run.trial160:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-22T20:16:46.356 DEBUG:teuthology.orchestra.run.trial060:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:16:46.503 DEBUG:teuthology.orchestra.run.trial060:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:16:46.530 DEBUG:teuthology.orchestra.run.trial060:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:16:46.666 DEBUG:teuthology.orchestra.run.trial060:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:16:46.691 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:16:46.691 DEBUG:teuthology.orchestra.run.trial060:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-22T20:16:46.758 DEBUG:teuthology.orchestra.run.trial090:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:16:46.941 DEBUG:teuthology.orchestra.run.trial090:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:16:46.968 DEBUG:teuthology.orchestra.run.trial090:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:16:47.129 DEBUG:teuthology.orchestra.run.trial090:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:16:47.154 DEBUG:teuthology.orchestra.run.trial090:> set -ex 2026-02-22T20:16:47.154 DEBUG:teuthology.orchestra.run.trial090:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-22T20:16:47.222 DEBUG:teuthology.orchestra.run.trial160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:16:47.342 DEBUG:teuthology.orchestra.run.trial160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:16:47.369 DEBUG:teuthology.orchestra.run.trial160:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:16:47.488 DEBUG:teuthology.orchestra.run.trial160:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:16:47.513 DEBUG:teuthology.orchestra.run.trial160:> set -ex 2026-02-22T20:16:47.513 DEBUG:teuthology.orchestra.run.trial160:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-22T20:16:47.580 DEBUG:teuthology.orchestra.run.trial060:> sudo service rsyslog restart 2026-02-22T20:16:47.582 DEBUG:teuthology.orchestra.run.trial090:> sudo service rsyslog restart 2026-02-22T20:16:47.584 DEBUG:teuthology.orchestra.run.trial160:> sudo service rsyslog restart 2026-02-22T20:16:47.610 INFO:teuthology.orchestra.run.trial060.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-22T20:16:47.613 INFO:teuthology.orchestra.run.trial090.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-22T20:16:47.650 INFO:teuthology.orchestra.run.trial160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-22T20:16:48.135 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-22T20:16:48.148 INFO:teuthology.task.internal:Starting timer... 2026-02-22T20:16:48.148 INFO:teuthology.run_tasks:Running task pcp... 2026-02-22T20:16:48.169 INFO:teuthology.run_tasks:Running task selinux... 2026-02-22T20:16:48.189 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['comm="systemd".*denied.*\\{ prog_run \\}.*tclass=bpf.*permissive=1']} 2026-02-22T20:16:48.189 DEBUG:teuthology.orchestra.run.trial060:> sudo service auditd rotate 2026-02-22T20:16:48.220 INFO:teuthology.orchestra.run.trial060.stdout:Rotating logs: 2026-02-22T20:16:48.222 DEBUG:teuthology.orchestra.run.trial090:> sudo service auditd rotate 2026-02-22T20:16:48.252 INFO:teuthology.orchestra.run.trial090.stdout:Rotating logs: 2026-02-22T20:16:48.254 DEBUG:teuthology.orchestra.run.trial160:> sudo service auditd rotate 2026-02-22T20:16:48.285 INFO:teuthology.orchestra.run.trial160.stdout:Rotating logs: 2026-02-22T20:16:48.287 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-22T20:16:48.287 DEBUG:teuthology.orchestra.run.trial060:> /usr/sbin/getenforce 2026-02-22T20:16:48.305 INFO:teuthology.orchestra.run.trial060.stdout:Permissive 2026-02-22T20:16:48.305 DEBUG:teuthology.orchestra.run.trial090:> /usr/sbin/getenforce 2026-02-22T20:16:48.323 INFO:teuthology.orchestra.run.trial090.stdout:Permissive 2026-02-22T20:16:48.323 DEBUG:teuthology.orchestra.run.trial160:> /usr/sbin/getenforce 2026-02-22T20:16:48.345 INFO:teuthology.orchestra.run.trial160.stdout:Permissive 2026-02-22T20:16:48.345 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial060.front.sepia.ceph.com': 'permissive', 'ubuntu@trial090.front.sepia.ceph.com': 'permissive', 'ubuntu@trial160.front.sepia.ceph.com': 'permissive'} 2026-02-22T20:16:48.346 DEBUG:teuthology.orchestra.run.trial060:> 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 -e 'comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1' 2026-02-22T20:16:48.363 INFO:teuthology.orchestra.run.trial060.stderr:grep: Invalid content of \{\} 2026-02-22T20:16:48.373 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-22T20:16:48.373 DEBUG:teuthology.orchestra.run.trial090:> 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 -e 'comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1' 2026-02-22T20:16:48.390 INFO:teuthology.orchestra.run.trial090.stderr:grep: Invalid content of \{\} 2026-02-22T20:16:48.400 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-22T20:16:48.400 DEBUG:teuthology.orchestra.run.trial160:> 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 -e 'comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1' 2026-02-22T20:16:48.418 INFO:teuthology.orchestra.run.trial160.stderr:grep: Invalid content of \{\} 2026-02-22T20:16:48.428 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-22T20:16:48.429 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-22T20:16:48.429 DEBUG:teuthology.orchestra.run.trial060:> sudo /usr/sbin/setenforce permissive 2026-02-22T20:16:48.456 DEBUG:teuthology.orchestra.run.trial090:> sudo /usr/sbin/setenforce permissive 2026-02-22T20:16:48.482 DEBUG:teuthology.orchestra.run.trial160:> sudo /usr/sbin/setenforce permissive 2026-02-22T20:16:48.508 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-22T20:16:48.525 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-22T20:16:48.538 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'}]}] 2026-02-22T20:16:48.539 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial060.front.sepia.ceph.com,trial090.front.sepia.ceph.com,trial160.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-22T20:19:33.249 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial060.front.sepia.ceph.com'), Remote(name='ubuntu@trial090.front.sepia.ceph.com'), Remote(name='ubuntu@trial160.front.sepia.ceph.com')] 2026-02-22T20:19:33.252 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial060.front.sepia.ceph.com' 2026-02-22T20:19:33.255 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial060.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T20:19:33.335 DEBUG:teuthology.orchestra.run.trial060:> true 2026-02-22T20:19:33.424 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial060.front.sepia.ceph.com' 2026-02-22T20:19:33.424 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial090.front.sepia.ceph.com' 2026-02-22T20:19:33.425 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial090.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T20:19:33.514 DEBUG:teuthology.orchestra.run.trial090:> true 2026-02-22T20:19:33.593 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial090.front.sepia.ceph.com' 2026-02-22T20:19:33.594 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial160.front.sepia.ceph.com' 2026-02-22T20:19:33.594 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial160.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-22T20:19:33.686 DEBUG:teuthology.orchestra.run.trial160:> true 2026-02-22T20:19:33.776 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial160.front.sepia.ceph.com' 2026-02-22T20:19:33.777 INFO:teuthology.run_tasks:Running task clock... 2026-02-22T20:19:33.791 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-22T20:19:33.791 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-22T20:19:33.791 DEBUG:teuthology.orchestra.run.trial060:> 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 2026-02-22T20:19:33.793 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-22T20:19:33.794 DEBUG:teuthology.orchestra.run.trial090:> 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 2026-02-22T20:19:33.796 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-22T20:19:33.796 DEBUG:teuthology.orchestra.run.trial160:> 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 2026-02-22T20:19:33.820 INFO:teuthology.orchestra.run.trial060.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-22T20:19:33.824 INFO:teuthology.orchestra.run.trial090.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-22T20:19:33.833 INFO:teuthology.orchestra.run.trial060.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-22T20:19:33.836 INFO:teuthology.orchestra.run.trial090.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-22T20:19:33.846 INFO:teuthology.orchestra.run.trial160.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-22T20:19:33.854 INFO:teuthology.orchestra.run.trial060.stderr:sudo: ntpd: command not found 2026-02-22T20:19:33.858 INFO:teuthology.orchestra.run.trial090.stderr:sudo: ntpd: command not found 2026-02-22T20:19:33.858 INFO:teuthology.orchestra.run.trial160.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-22T20:19:33.864 INFO:teuthology.orchestra.run.trial060.stdout:506 Cannot talk to daemon 2026-02-22T20:19:33.868 INFO:teuthology.orchestra.run.trial090.stdout:506 Cannot talk to daemon 2026-02-22T20:19:33.877 INFO:teuthology.orchestra.run.trial060.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-22T20:19:33.880 INFO:teuthology.orchestra.run.trial160.stderr:sudo: ntpd: command not found 2026-02-22T20:19:33.881 INFO:teuthology.orchestra.run.trial090.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-22T20:19:33.890 INFO:teuthology.orchestra.run.trial060.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-22T20:19:33.891 INFO:teuthology.orchestra.run.trial160.stdout:506 Cannot talk to daemon 2026-02-22T20:19:33.893 INFO:teuthology.orchestra.run.trial090.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-22T20:19:33.903 INFO:teuthology.orchestra.run.trial160.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-22T20:19:33.916 INFO:teuthology.orchestra.run.trial160.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-22T20:19:33.946 INFO:teuthology.orchestra.run.trial090.stderr:bash: line 1: ntpq: command not found 2026-02-22T20:19:33.952 INFO:teuthology.orchestra.run.trial060.stderr:bash: line 1: ntpq: command not found 2026-02-22T20:19:33.966 INFO:teuthology.orchestra.run.trial090.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-22T20:19:33.966 INFO:teuthology.orchestra.run.trial090.stdout:=============================================================================== 2026-02-22T20:19:33.966 INFO:teuthology.orchestra.run.trial090.stdout:^? 172-238-164-57.ip.linode> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.966 INFO:teuthology.orchestra.run.trial090.stdout:^? ntp.shastacoe.net 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.966 INFO:teuthology.orchestra.run.trial090.stdout:^? ns2.fortrockdc.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.967 INFO:teuthology.orchestra.run.trial090.stdout:^? 159.203.158.197 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.971 INFO:teuthology.orchestra.run.trial160.stderr:bash: line 1: ntpq: command not found 2026-02-22T20:19:33.972 INFO:teuthology.orchestra.run.trial060.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-22T20:19:33.972 INFO:teuthology.orchestra.run.trial060.stdout:=============================================================================== 2026-02-22T20:19:33.972 INFO:teuthology.orchestra.run.trial060.stdout:^? 66.85.78.80 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.972 INFO:teuthology.orchestra.run.trial060.stdout:^? 23.186.168.129 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.972 INFO:teuthology.orchestra.run.trial060.stdout:^? ntp.netlinkify.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:33.972 INFO:teuthology.orchestra.run.trial060.stdout:^? sensei.ruselabs.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:34.002 INFO:teuthology.orchestra.run.trial160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-22T20:19:34.002 INFO:teuthology.orchestra.run.trial160.stdout:=============================================================================== 2026-02-22T20:19:34.002 INFO:teuthology.orchestra.run.trial160.stdout:^? dutch.arpnet.net 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:34.002 INFO:teuthology.orchestra.run.trial160.stdout:^? ntp.maxhost.io 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:34.002 INFO:teuthology.orchestra.run.trial160.stdout:^? 144.202.62.209.vultruser> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:34.002 INFO:teuthology.orchestra.run.trial160.stdout:^? 204.2.134.172 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:19:34.004 INFO:teuthology.run_tasks:Running task pexec... 2026-02-22T20:19:34.021 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-22T20:19:34.021 DEBUG:teuthology.orchestra.run.trial060:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-22T20:19:34.022 DEBUG:teuthology.orchestra.run.trial090:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-22T20:19:34.023 DEBUG:teuthology.orchestra.run.trial160:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-22T20:19:34.025 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial090.front.sepia.ceph.com 2026-02-22T20:19:34.026 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-22T20:19:34.026 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-22T20:19:34.027 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial060.front.sepia.ceph.com 2026-02-22T20:19:34.027 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-22T20:19:34.027 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-22T20:19:34.046 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial160.front.sepia.ceph.com 2026-02-22T20:19:34.046 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-22T20:19:34.046 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-22T20:19:34.206 INFO:teuthology.orchestra.run.trial060.stdout:No match for argument: nvme-cli 2026-02-22T20:19:34.206 INFO:teuthology.orchestra.run.trial060.stderr:No packages marked for removal. 2026-02-22T20:19:34.207 INFO:teuthology.orchestra.run.trial090.stdout:No match for argument: nvme-cli 2026-02-22T20:19:34.208 INFO:teuthology.orchestra.run.trial090.stderr:No packages marked for removal. 2026-02-22T20:19:34.208 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:19:34.209 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:19:34.209 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:19:34.210 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:19:34.210 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:19:34.210 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:19:34.229 INFO:teuthology.orchestra.run.trial160.stdout:No match for argument: nvme-cli 2026-02-22T20:19:34.229 INFO:teuthology.orchestra.run.trial160.stderr:No packages marked for removal. 2026-02-22T20:19:34.231 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:34.231 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:19:34.231 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:34.488 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:32 ago on Sun 22 Feb 2026 08:19:02 PM UTC. 2026-02-22T20:19:34.489 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:30 ago on Sun 22 Feb 2026 08:19:04 PM UTC. 2026-02-22T20:19:34.518 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:30 ago on Sun 22 Feb 2026 08:19:04 PM UTC. 2026-02-22T20:19:34.526 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:19:34.526 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:34.526 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:19:34.526 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: nvme-cli x86_64 2.13-2.el10 baseos 1.1 M 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: nvmetcli noarch 0.8-1.el10 baseos 54 k 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: python3-configshell noarch 1:1.1.30-8.el10 baseos 90 k 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: python3-kmod x86_64 0.9.2-6.el10 baseos 111 k 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyparsing noarch 3.1.1-7.el10 baseos 271 k 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: python3-typing-extensions noarch 4.9.0-6.el10 baseos 77 k 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: python3-urwid x86_64 2.5.3-4.el10 baseos 1.1 M 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: python3-wcwidth noarch 0.2.6-6.el10 baseos 48 k 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:34.527 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:19:34.528 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:34.528 INFO:teuthology.orchestra.run.trial090.stdout:Install 8 Packages 2026-02-22T20:19:34.528 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:34.529 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 2.8 M 2026-02-22T20:19:34.529 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 13 M 2026-02-22T20:19:34.529 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:19:34.529 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: nvme-cli x86_64 2.13-2.el10 baseos 1.1 M 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: nvmetcli noarch 0.8-1.el10 baseos 54 k 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: python3-configshell noarch 1:1.1.30-8.el10 baseos 90 k 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: python3-kmod x86_64 0.9.2-6.el10 baseos 111 k 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyparsing noarch 3.1.1-7.el10 baseos 271 k 2026-02-22T20:19:34.530 INFO:teuthology.orchestra.run.trial060.stdout: python3-typing-extensions noarch 4.9.0-6.el10 baseos 77 k 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout: python3-urwid x86_64 2.5.3-4.el10 baseos 1.1 M 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout: python3-wcwidth noarch 0.2.6-6.el10 baseos 48 k 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout:Install 8 Packages 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 2.8 M 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 13 M 2026-02-22T20:19:34.531 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:19:34.556 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:34.556 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: nvme-cli x86_64 2.13-2.el10 baseos 1.1 M 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: nvmetcli noarch 0.8-1.el10 baseos 54 k 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: python3-configshell noarch 1:1.1.30-8.el10 baseos 90 k 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: python3-kmod x86_64 0.9.2-6.el10 baseos 111 k 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyparsing noarch 3.1.1-7.el10 baseos 271 k 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: python3-typing-extensions noarch 4.9.0-6.el10 baseos 77 k 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: python3-urwid x86_64 2.5.3-4.el10 baseos 1.1 M 2026-02-22T20:19:34.557 INFO:teuthology.orchestra.run.trial160.stdout: python3-wcwidth noarch 0.2.6-6.el10 baseos 48 k 2026-02-22T20:19:34.558 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:34.558 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:19:34.558 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:34.558 INFO:teuthology.orchestra.run.trial160.stdout:Install 8 Packages 2026-02-22T20:19:34.558 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:34.559 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 2.8 M 2026-02-22T20:19:34.559 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 13 M 2026-02-22T20:19:34.559 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:19:34.593 INFO:teuthology.orchestra.run.trial090.stdout:(1/8): nvmetcli-0.8-1.el10.noarch.rpm 818 kB/s | 54 kB 00:00 2026-02-22T20:19:34.594 INFO:teuthology.orchestra.run.trial060.stdout:(1/8): nvmetcli-0.8-1.el10.noarch.rpm 812 kB/s | 54 kB 00:00 2026-02-22T20:19:34.596 INFO:teuthology.orchestra.run.trial090.stdout:(2/8): python3-configshell-1.1.30-8.el10.noarch 1.3 MB/s | 90 kB 00:00 2026-02-22T20:19:34.597 INFO:teuthology.orchestra.run.trial160.stdout:(1/8): nvmetcli-0.8-1.el10.noarch.rpm 1.3 MB/s | 54 kB 00:00 2026-02-22T20:19:34.598 INFO:teuthology.orchestra.run.trial160.stdout:(2/8): python3-configshell-1.1.30-8.el10.noarch 2.2 MB/s | 90 kB 00:00 2026-02-22T20:19:34.599 INFO:teuthology.orchestra.run.trial060.stdout:(2/8): python3-configshell-1.1.30-8.el10.noarch 1.3 MB/s | 90 kB 00:00 2026-02-22T20:19:34.605 INFO:teuthology.orchestra.run.trial060.stdout:(3/8): nvme-cli-2.13-2.el10.x86_64.rpm 14 MB/s | 1.1 MB 00:00 2026-02-22T20:19:34.610 INFO:teuthology.orchestra.run.trial160.stdout:(3/8): nvme-cli-2.13-2.el10.x86_64.rpm 21 MB/s | 1.1 MB 00:00 2026-02-22T20:19:34.610 INFO:teuthology.orchestra.run.trial060.stdout:(4/8): python3-kmod-0.9.2-6.el10.x86_64.rpm 7.0 MB/s | 111 kB 00:00 2026-02-22T20:19:34.613 INFO:teuthology.orchestra.run.trial090.stdout:(3/8): python3-kmod-0.9.2-6.el10.x86_64.rpm 5.5 MB/s | 111 kB 00:00 2026-02-22T20:19:34.615 INFO:teuthology.orchestra.run.trial090.stdout:(4/8): nvme-cli-2.13-2.el10.x86_64.rpm 13 MB/s | 1.1 MB 00:00 2026-02-22T20:19:34.615 INFO:teuthology.orchestra.run.trial060.stdout:(5/8): python3-pyparsing-3.1.1-7.el10.noarch.rp 16 MB/s | 271 kB 00:00 2026-02-22T20:19:34.617 INFO:teuthology.orchestra.run.trial090.stdout:(5/8): python3-pyparsing-3.1.1-7.el10.noarch.rp 13 MB/s | 271 kB 00:00 2026-02-22T20:19:34.620 INFO:teuthology.orchestra.run.trial160.stdout:(4/8): python3-kmod-0.9.2-6.el10.x86_64.rpm 4.8 MB/s | 111 kB 00:00 2026-02-22T20:19:34.621 INFO:teuthology.orchestra.run.trial060.stdout:(6/8): python3-typing-extensions-4.9.0-6.el10.n 4.7 MB/s | 77 kB 00:00 2026-02-22T20:19:34.622 INFO:teuthology.orchestra.run.trial160.stdout:(5/8): python3-pyparsing-3.1.1-7.el10.noarch.rp 11 MB/s | 271 kB 00:00 2026-02-22T20:19:34.628 INFO:teuthology.orchestra.run.trial060.stdout:(7/8): python3-wcwidth-0.2.6-6.el10.noarch.rpm 3.9 MB/s | 48 kB 00:00 2026-02-22T20:19:34.628 INFO:teuthology.orchestra.run.trial160.stdout:(6/8): python3-typing-extensions-4.9.0-6.el10.n 4.2 MB/s | 77 kB 00:00 2026-02-22T20:19:34.631 INFO:teuthology.orchestra.run.trial090.stdout:(6/8): python3-typing-extensions-4.9.0-6.el10.n 4.2 MB/s | 77 kB 00:00 2026-02-22T20:19:34.635 INFO:teuthology.orchestra.run.trial160.stdout:(7/8): python3-wcwidth-0.2.6-6.el10.noarch.rpm 3.7 MB/s | 48 kB 00:00 2026-02-22T20:19:34.637 INFO:teuthology.orchestra.run.trial060.stdout:(8/8): python3-urwid-2.5.3-4.el10.x86_64.rpm 40 MB/s | 1.1 MB 00:00 2026-02-22T20:19:34.637 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:34.637 INFO:teuthology.orchestra.run.trial060.stdout:Total 26 MB/s | 2.8 MB 00:00 2026-02-22T20:19:34.637 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:19:34.645 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:19:34.645 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:19:34.648 INFO:teuthology.orchestra.run.trial090.stdout:(7/8): python3-wcwidth-0.2.6-6.el10.noarch.rpm 1.5 MB/s | 48 kB 00:00 2026-02-22T20:19:34.651 INFO:teuthology.orchestra.run.trial160.stdout:(8/8): python3-urwid-2.5.3-4.el10.x86_64.rpm 34 MB/s | 1.1 MB 00:00 2026-02-22T20:19:34.652 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:34.652 INFO:teuthology.orchestra.run.trial160.stdout:Total 29 MB/s | 2.8 MB 00:00 2026-02-22T20:19:34.652 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:19:34.660 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:19:34.660 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:19:34.665 INFO:teuthology.orchestra.run.trial090.stdout:(8/8): python3-urwid-2.5.3-4.el10.x86_64.rpm 21 MB/s | 1.1 MB 00:00 2026-02-22T20:19:34.665 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:34.665 INFO:teuthology.orchestra.run.trial090.stdout:Total 20 MB/s | 2.8 MB 00:00 2026-02-22T20:19:34.665 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:19:34.673 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:19:34.673 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:19:34.713 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:19:34.713 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:19:34.727 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:19:34.727 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:19:34.741 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:19:34.741 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:19:34.782 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:19:34.785 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-wcwidth-0.2.6-6.el10.noarch 1/8 2026-02-22T20:19:34.798 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:19:34.802 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-wcwidth-0.2.6-6.el10.noarch 1/8 2026-02-22T20:19:34.811 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-typing-extensions-4.9.0-6.el10.noarch 2/8 2026-02-22T20:19:34.814 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:19:34.817 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-wcwidth-0.2.6-6.el10.noarch 1/8 2026-02-22T20:19:34.818 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-urwid-2.5.3-4.el10.x86_64 3/8 2026-02-22T20:19:34.822 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-pyparsing-3.1.1-7.el10.noarch 4/8 2026-02-22T20:19:34.827 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-configshell-1:1.1.30-8.el10.noarch 5/8 2026-02-22T20:19:34.828 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-typing-extensions-4.9.0-6.el10.noarch 2/8 2026-02-22T20:19:34.832 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-kmod-0.9.2-6.el10.x86_64 6/8 2026-02-22T20:19:34.833 INFO:teuthology.orchestra.run.trial060.stdout: Installing : nvmetcli-0.8-1.el10.noarch 7/8 2026-02-22T20:19:34.836 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-urwid-2.5.3-4.el10.x86_64 3/8 2026-02-22T20:19:34.840 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-pyparsing-3.1.1-7.el10.noarch 4/8 2026-02-22T20:19:34.844 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-configshell-1:1.1.30-8.el10.noarch 5/8 2026-02-22T20:19:34.844 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-typing-extensions-4.9.0-6.el10.noarch 2/8 2026-02-22T20:19:34.848 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-kmod-0.9.2-6.el10.x86_64 6/8 2026-02-22T20:19:34.850 INFO:teuthology.orchestra.run.trial160.stdout: Installing : nvmetcli-0.8-1.el10.noarch 7/8 2026-02-22T20:19:34.852 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-urwid-2.5.3-4.el10.x86_64 3/8 2026-02-22T20:19:34.856 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-pyparsing-3.1.1-7.el10.noarch 4/8 2026-02-22T20:19:34.859 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-configshell-1:1.1.30-8.el10.noarch 5/8 2026-02-22T20:19:34.864 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-kmod-0.9.2-6.el10.x86_64 6/8 2026-02-22T20:19:34.865 INFO:teuthology.orchestra.run.trial090.stdout: Installing : nvmetcli-0.8-1.el10.noarch 7/8 2026-02-22T20:19:34.888 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: nvmetcli-0.8-1.el10.noarch 7/8 2026-02-22T20:19:34.894 INFO:teuthology.orchestra.run.trial060.stdout: Installing : nvme-cli-2.13-2.el10.x86_64 8/8 2026-02-22T20:19:34.907 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: nvmetcli-0.8-1.el10.noarch 7/8 2026-02-22T20:19:34.909 INFO:teuthology.orchestra.run.trial160.stdout: Installing : nvme-cli-2.13-2.el10.x86_64 8/8 2026-02-22T20:19:34.920 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: nvmetcli-0.8-1.el10.noarch 7/8 2026-02-22T20:19:34.923 INFO:teuthology.orchestra.run.trial090.stdout: Installing : nvme-cli-2.13-2.el10.x86_64 8/8 2026-02-22T20:19:35.140 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: nvme-cli-2.13-2.el10.x86_64 8/8 2026-02-22T20:19:35.140 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/default.target.wants/nvmefc-boot-connections.service' → '/usr/lib/systemd/system/nvmefc-boot-connections.service'. 2026-02-22T20:19:35.140 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:35.168 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: nvme-cli-2.13-2.el10.x86_64 8/8 2026-02-22T20:19:35.168 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/default.target.wants/nvmefc-boot-connections.service' → '/usr/lib/systemd/system/nvmefc-boot-connections.service'. 2026-02-22T20:19:35.168 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:35.172 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: nvme-cli-2.13-2.el10.x86_64 8/8 2026-02-22T20:19:35.172 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/default.target.wants/nvmefc-boot-connections.service' → '/usr/lib/systemd/system/nvmefc-boot-connections.service'. 2026-02-22T20:19:35.173 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: nvme-cli-2.13-2.el10.x86_64 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: nvmetcli-0.8-1.el10.noarch 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: python3-configshell-1:1.1.30-8.el10.noarch 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: python3-kmod-0.9.2-6.el10.x86_64 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyparsing-3.1.1-7.el10.noarch 2026-02-22T20:19:35.467 INFO:teuthology.orchestra.run.trial060.stdout: python3-typing-extensions-4.9.0-6.el10.noarch 2026-02-22T20:19:35.468 INFO:teuthology.orchestra.run.trial060.stdout: python3-urwid-2.5.3-4.el10.x86_64 2026-02-22T20:19:35.468 INFO:teuthology.orchestra.run.trial060.stdout: python3-wcwidth-0.2.6-6.el10.noarch 2026-02-22T20:19:35.468 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:35.468 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:19:35.482 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:35.482 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: nvme-cli-2.13-2.el10.x86_64 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: nvmetcli-0.8-1.el10.noarch 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: python3-configshell-1:1.1.30-8.el10.noarch 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: python3-kmod-0.9.2-6.el10.x86_64 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyparsing-3.1.1-7.el10.noarch 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: python3-typing-extensions-4.9.0-6.el10.noarch 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: python3-urwid-2.5.3-4.el10.x86_64 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: python3-wcwidth-0.2.6-6.el10.noarch 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:35.483 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: nvme-cli-2.13-2.el10.x86_64 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: nvmetcli-0.8-1.el10.noarch 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: python3-configshell-1:1.1.30-8.el10.noarch 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: python3-kmod-0.9.2-6.el10.x86_64 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyparsing-3.1.1-7.el10.noarch 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: python3-typing-extensions-4.9.0-6.el10.noarch 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: python3-urwid-2.5.3-4.el10.x86_64 2026-02-22T20:19:35.494 INFO:teuthology.orchestra.run.trial090.stdout: python3-wcwidth-0.2.6-6.el10.noarch 2026-02-22T20:19:35.495 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:35.495 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:19:35.496 DEBUG:teuthology.parallel:result is None 2026-02-22T20:19:35.512 DEBUG:teuthology.parallel:result is None 2026-02-22T20:19:35.521 DEBUG:teuthology.parallel:result is None 2026-02-22T20:19:35.522 INFO:teuthology.run_tasks:Running task install... 2026-02-22T20:19:35.537 DEBUG:teuthology.task.install:project ceph 2026-02-22T20:19:35.537 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e'}} 2026-02-22T20:19:35.537 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e'} 2026-02-22T20:19:35.537 INFO:teuthology.task.install:Using flavor: default 2026-02-22T20:19:35.547 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']} 2026-02-22T20:19:35.548 INFO:teuthology.task.install:extra packages: [] 2026-02-22T20:19:35.548 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': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e', 'tag': None, 'wait_for_package': False} 2026-02-22T20:19:35.550 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:19:35.553 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': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e', 'tag': None, 'wait_for_package': False} 2026-02-22T20:19:35.554 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:19:35.555 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': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e', 'tag': None, 'wait_for_package': False} 2026-02-22T20:19:35.556 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:19:35.789 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/ 2026-02-22T20:19:35.789 INFO:teuthology.task.install.rpm:Package version is 20.2.0-794.ga5c3084f 2026-02-22T20:19:35.798 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/ 2026-02-22T20:19:35.798 INFO:teuthology.task.install.rpm:Package version is 20.2.0-794.ga5c3084f 2026-02-22T20:19:35.800 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/ 2026-02-22T20:19:35.800 INFO:teuthology.task.install.rpm:Package version is 20.2.0-794.ga5c3084f 2026-02-22T20:19:35.992 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-22T20:19:35.992 DEBUG:teuthology.orchestra.run.trial160:> set -ex 2026-02-22T20:19:35.992 DEBUG:teuthology.orchestra.run.trial160:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-22T20:19:35.994 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-22T20:19:35.994 DEBUG:teuthology.orchestra.run.trial090:> set -ex 2026-02-22T20:19:35.994 DEBUG:teuthology.orchestra.run.trial090:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-22T20:19:36.003 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-22T20:19:36.003 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:19:36.004 DEBUG:teuthology.orchestra.run.trial060:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-22T20:19:36.023 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 2026-02-22T20:19:36.023 DEBUG:teuthology.orchestra.run.trial160:> 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/a5c3084f688b1f6eff223b8d259a8316f9844c8e/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-22T20:19:36.032 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 2026-02-22T20:19:36.032 DEBUG:teuthology.orchestra.run.trial060:> 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/a5c3084f688b1f6eff223b8d259a8316f9844c8e/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-22T20:19:36.060 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 2026-02-22T20:19:36.061 DEBUG:teuthology.orchestra.run.trial090:> 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/a5c3084f688b1f6eff223b8d259a8316f9844c8e/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-22T20:19:36.087 DEBUG:teuthology.orchestra.run.trial090:> 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 2026-02-22T20:19:36.090 DEBUG:teuthology.orchestra.run.trial160:> 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 2026-02-22T20:19:36.100 DEBUG:teuthology.orchestra.run.trial060:> 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 2026-02-22T20:19:36.165 DEBUG:teuthology.orchestra.run.trial090:> 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 2026-02-22T20:19:36.177 DEBUG:teuthology.orchestra.run.trial060:> 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 2026-02-22T20:19:36.211 DEBUG:teuthology.orchestra.run.trial160:> 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 2026-02-22T20:19:36.231 INFO:teuthology.orchestra.run.trial090.stdout:check_obsoletes = 1 2026-02-22T20:19:36.233 DEBUG:teuthology.orchestra.run.trial090:> sudo yum clean all 2026-02-22T20:19:36.238 INFO:teuthology.orchestra.run.trial160.stdout:check_obsoletes = 1 2026-02-22T20:19:36.239 DEBUG:teuthology.orchestra.run.trial160:> sudo yum clean all 2026-02-22T20:19:36.244 INFO:teuthology.orchestra.run.trial060.stdout:check_obsoletes = 1 2026-02-22T20:19:36.246 DEBUG:teuthology.orchestra.run.trial060:> sudo yum clean all 2026-02-22T20:19:36.385 INFO:teuthology.orchestra.run.trial090.stdout:28 files removed 2026-02-22T20:19:36.389 INFO:teuthology.orchestra.run.trial160.stdout:28 files removed 2026-02-22T20:19:36.398 INFO:teuthology.orchestra.run.trial060.stdout:28 files removed 2026-02-22T20:19:36.401 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-radosgw 2026-02-22T20:19:36.404 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-radosgw 2026-02-22T20:19:36.414 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-radosgw 2026-02-22T20:19:36.662 INFO:teuthology.orchestra.run.trial160.stdout:ceph packages for x86_64 225 kB/s | 24 kB 00:00 2026-02-22T20:19:36.665 INFO:teuthology.orchestra.run.trial090.stdout:ceph packages for x86_64 224 kB/s | 24 kB 00:00 2026-02-22T20:19:36.676 INFO:teuthology.orchestra.run.trial060.stdout:ceph packages for x86_64 226 kB/s | 24 kB 00:00 2026-02-22T20:19:36.764 INFO:teuthology.orchestra.run.trial160.stdout:ceph noarch packages 40 kB/s | 3.8 kB 00:00 2026-02-22T20:19:36.767 INFO:teuthology.orchestra.run.trial090.stdout:ceph noarch packages 41 kB/s | 3.8 kB 00:00 2026-02-22T20:19:36.779 INFO:teuthology.orchestra.run.trial060.stdout:ceph noarch packages 40 kB/s | 3.8 kB 00:00 2026-02-22T20:19:36.866 INFO:teuthology.orchestra.run.trial160.stdout:ceph source packages 17 kB/s | 1.7 kB 00:00 2026-02-22T20:19:36.869 INFO:teuthology.orchestra.run.trial090.stdout:ceph source packages 17 kB/s | 1.7 kB 00:00 2026-02-22T20:19:36.881 INFO:teuthology.orchestra.run.trial060.stdout:ceph source packages 17 kB/s | 1.7 kB 00:00 2026-02-22T20:19:36.957 INFO:teuthology.orchestra.run.trial160.stdout:Rocky Linux 10 - AppStream 26 MB/s | 2.2 MB 00:00 2026-02-22T20:19:36.965 INFO:teuthology.orchestra.run.trial090.stdout:Rocky Linux 10 - AppStream 25 MB/s | 2.2 MB 00:00 2026-02-22T20:19:36.991 INFO:teuthology.orchestra.run.trial060.stdout:Rocky Linux 10 - AppStream 21 MB/s | 2.2 MB 00:00 2026-02-22T20:19:37.318 INFO:teuthology.orchestra.run.trial160.stdout:Rocky Linux 10 - BaseOS 52 MB/s | 12 MB 00:00 2026-02-22T20:19:37.342 INFO:teuthology.orchestra.run.trial090.stdout:Rocky Linux 10 - BaseOS 49 MB/s | 12 MB 00:00 2026-02-22T20:19:37.370 INFO:teuthology.orchestra.run.trial060.stdout:Rocky Linux 10 - BaseOS 49 MB/s | 12 MB 00:00 2026-02-22T20:19:37.853 INFO:teuthology.orchestra.run.trial160.stdout:Rocky Linux 10 - CRB 6.3 MB/s | 508 kB 00:00 2026-02-22T20:19:37.869 INFO:teuthology.orchestra.run.trial090.stdout:Rocky Linux 10 - CRB 5.9 MB/s | 508 kB 00:00 2026-02-22T20:19:37.920 INFO:teuthology.orchestra.run.trial060.stdout:Rocky Linux 10 - CRB 6.4 MB/s | 508 kB 00:00 2026-02-22T20:19:38.302 INFO:teuthology.orchestra.run.trial160.stdout:Extra Packages for Enterprise Linux 16 MB/s | 6.2 MB 00:00 2026-02-22T20:19:38.495 INFO:teuthology.orchestra.run.trial060.stdout:Extra Packages for Enterprise Linux 12 MB/s | 6.2 MB 00:00 2026-02-22T20:19:38.961 INFO:teuthology.orchestra.run.trial090.stdout:Extra Packages for Enterprise Linux 5.9 MB/s | 6.2 MB 00:01 2026-02-22T20:19:38.993 INFO:teuthology.orchestra.run.trial160.stdout:lab-extras 128 kB/s | 3.7 kB 00:00 2026-02-22T20:19:39.167 INFO:teuthology.orchestra.run.trial060.stdout:lab-extras 301 kB/s | 3.7 kB 00:00 2026-02-22T20:19:39.505 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:39.506 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:39.506 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:19:39.506 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: ceph-radosgw x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 24 M 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout:Upgrading: 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: librados2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 3.7 M 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: librbd1 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.9 M 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: abseil-cpp x86_64 20240722.1-1.el10_0 epel 590 k 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: boost-program-options x86_64 1.83.0-5.el10 appstream 109 k 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: ceph-base x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.0 M 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: ceph-common x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 24 M 2026-02-22T20:19:39.507 INFO:teuthology.orchestra.run.trial160.stdout: ceph-selinux x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 25 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: daxctl-libs x86_64 80-4.el10 baseos 42 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: gperftools-libs x86_64 2.15-4.el10_0 epel 303 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libarrow x86_64 17.0.0-9.el10_2 epel 5.7 M 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libarrow-doc noarch 17.0.0-9.el10_2 epel 27 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libcephfs2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 897 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libnbd x86_64 1.22.2-3.el10_1 appstream 175 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: liboath x86_64 2.6.12-1.el10_0 epel 48 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: liborc2 x86_64 2.0.7-1.el10_2 epel 515 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libpmem x86_64 2.1.0-2.el10_0 epel 112 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libpmemobj x86_64 2.1.0-2.el10_0 epel 161 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: librabbitmq x86_64 0.14.0-3.el10 appstream 43 k 2026-02-22T20:19:39.508 INFO:teuthology.orchestra.run.trial160.stdout: libradosstriper1 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 254 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: librdkafka x86_64 2.1.1-7.el10 appstream 725 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: librgw2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.6 M 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: libunwind x86_64 1.8.0-4.el10_0 epel 73 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: lttng-ust x86_64 2.13.7-5.el10 crb 334 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: mailcap noarch 2.1.54-8.el10 baseos 34 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: ndctl-libs x86_64 80-4.el10 baseos 89 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: parquet-libs x86_64 17.0.0-9.el10_2 epel 1.0 M 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: pciutils x86_64 3.13.0-6.el10 baseos 122 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: protobuf x86_64 3.19.6-11.el10 appstream 1.0 M 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: python3-ceph-argparse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 57 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: python3-ceph-common x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 232 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: python3-cephfs x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 206 k 2026-02-22T20:19:39.509 INFO:teuthology.orchestra.run.trial160.stdout: python3-prettytable noarch 3.6.0-10.el10 appstream 70 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: python3-rados x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 350 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: python3-rbd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 367 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: python3-rgw x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 130 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: qatlib x86_64 24.09.0-2.el10 appstream 229 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: qatzip-libs x86_64 1.3.1-1.el10 appstream 66 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: re2 x86_64 2:20251105-1.el10_2 epel 221 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: thrift x86_64 0.20.0-4.el10_1 epel 1.7 M 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: utf8proc x86_64 2.7.0-9.el10 appstream 80 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout:Installing weak dependencies: 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: qatlib-service x86_64 24.09.0-2.el10 appstream 37 k 2026-02-22T20:19:39.510 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:39.511 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:19:39.511 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:39.511 INFO:teuthology.orchestra.run.trial160.stdout:Install 40 Packages 2026-02-22T20:19:39.511 INFO:teuthology.orchestra.run.trial160.stdout:Upgrade 2 Packages 2026-02-22T20:19:39.511 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:39.512 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 84 M 2026-02-22T20:19:39.512 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:19:39.627 INFO:teuthology.orchestra.run.trial090.stdout:lab-extras 294 kB/s | 3.7 kB 00:00 2026-02-22T20:19:39.679 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout: ceph-radosgw x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 24 M 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout:Upgrading: 2026-02-22T20:19:39.681 INFO:teuthology.orchestra.run.trial060.stdout: librados2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 3.7 M 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: librbd1 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.9 M 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: abseil-cpp x86_64 20240722.1-1.el10_0 epel 590 k 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: boost-program-options x86_64 1.83.0-5.el10 appstream 109 k 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: ceph-base x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.0 M 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: ceph-common x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 24 M 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: ceph-selinux x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 25 k 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: daxctl-libs x86_64 80-4.el10 baseos 42 k 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: gperftools-libs x86_64 2.15-4.el10_0 epel 303 k 2026-02-22T20:19:39.682 INFO:teuthology.orchestra.run.trial060.stdout: libarrow x86_64 17.0.0-9.el10_2 epel 5.7 M 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: libarrow-doc noarch 17.0.0-9.el10_2 epel 27 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: libcephfs2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 897 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: libnbd x86_64 1.22.2-3.el10_1 appstream 175 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: liboath x86_64 2.6.12-1.el10_0 epel 48 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: liborc2 x86_64 2.0.7-1.el10_2 epel 515 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: libpmem x86_64 2.1.0-2.el10_0 epel 112 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: libpmemobj x86_64 2.1.0-2.el10_0 epel 161 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: librabbitmq x86_64 0.14.0-3.el10 appstream 43 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: libradosstriper1 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 254 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: librdkafka x86_64 2.1.1-7.el10 appstream 725 k 2026-02-22T20:19:39.683 INFO:teuthology.orchestra.run.trial060.stdout: librgw2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.6 M 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: libunwind x86_64 1.8.0-4.el10_0 epel 73 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: lttng-ust x86_64 2.13.7-5.el10 crb 334 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: mailcap noarch 2.1.54-8.el10 baseos 34 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: ndctl-libs x86_64 80-4.el10 baseos 89 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: parquet-libs x86_64 17.0.0-9.el10_2 epel 1.0 M 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: pciutils x86_64 3.13.0-6.el10 baseos 122 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: protobuf x86_64 3.19.6-11.el10 appstream 1.0 M 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: python3-ceph-argparse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 57 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: python3-ceph-common x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 232 k 2026-02-22T20:19:39.684 INFO:teuthology.orchestra.run.trial060.stdout: python3-cephfs x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 206 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: python3-prettytable noarch 3.6.0-10.el10 appstream 70 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: python3-rados x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 350 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: python3-rbd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 367 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: python3-rgw x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 130 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: qatlib x86_64 24.09.0-2.el10 appstream 229 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: qatzip-libs x86_64 1.3.1-1.el10 appstream 66 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: re2 x86_64 2:20251105-1.el10_2 epel 221 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: thrift x86_64 0.20.0-4.el10_1 epel 1.7 M 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: utf8proc x86_64 2.7.0-9.el10 appstream 80 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout:Installing weak dependencies: 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: qatlib-service x86_64 24.09.0-2.el10 appstream 37 k 2026-02-22T20:19:39.685 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:39.686 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:19:39.686 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:39.686 INFO:teuthology.orchestra.run.trial060.stdout:Install 40 Packages 2026-02-22T20:19:39.686 INFO:teuthology.orchestra.run.trial060.stdout:Upgrade 2 Packages 2026-02-22T20:19:39.686 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:39.687 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 84 M 2026-02-22T20:19:39.687 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:19:40.026 INFO:teuthology.orchestra.run.trial160.stdout:(1/42): ceph-base-20.2.0-794.ga5c3084f.el10.x86 15 MB/s | 6.0 MB 00:00 2026-02-22T20:19:40.076 INFO:teuthology.orchestra.run.trial160.stdout:(2/42): ceph-selinux-20.2.0-794.ga5c3084f.el10. 505 kB/s | 25 kB 00:00 2026-02-22T20:19:40.140 INFO:teuthology.orchestra.run.trial160.stdout:(3/42): libcephfs2-20.2.0-794.ga5c3084f.el10.x8 14 MB/s | 897 kB 00:00 2026-02-22T20:19:40.140 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout: ceph-radosgw x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 24 M 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout:Upgrading: 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout: librados2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 3.7 M 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout: librbd1 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.9 M 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:19:40.142 INFO:teuthology.orchestra.run.trial090.stdout: abseil-cpp x86_64 20240722.1-1.el10_0 epel 590 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: boost-program-options x86_64 1.83.0-5.el10 appstream 109 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: ceph-base x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.0 M 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: ceph-common x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 24 M 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: ceph-selinux x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 25 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: daxctl-libs x86_64 80-4.el10 baseos 42 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: gperftools-libs x86_64 2.15-4.el10_0 epel 303 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: libarrow x86_64 17.0.0-9.el10_2 epel 5.7 M 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: libarrow-doc noarch 17.0.0-9.el10_2 epel 27 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: libcephfs2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 897 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: libnbd x86_64 1.22.2-3.el10_1 appstream 175 k 2026-02-22T20:19:40.143 INFO:teuthology.orchestra.run.trial090.stdout: liboath x86_64 2.6.12-1.el10_0 epel 48 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: liborc2 x86_64 2.0.7-1.el10_2 epel 515 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: libpmem x86_64 2.1.0-2.el10_0 epel 112 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: libpmemobj x86_64 2.1.0-2.el10_0 epel 161 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: librabbitmq x86_64 0.14.0-3.el10 appstream 43 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: libradosstriper1 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 254 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: librdkafka x86_64 2.1.1-7.el10 appstream 725 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: librgw2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.6 M 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: libunwind x86_64 1.8.0-4.el10_0 epel 73 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: lttng-ust x86_64 2.13.7-5.el10 crb 334 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: mailcap noarch 2.1.54-8.el10 baseos 34 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: ndctl-libs x86_64 80-4.el10 baseos 89 k 2026-02-22T20:19:40.144 INFO:teuthology.orchestra.run.trial090.stdout: parquet-libs x86_64 17.0.0-9.el10_2 epel 1.0 M 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: pciutils x86_64 3.13.0-6.el10 baseos 122 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: protobuf x86_64 3.19.6-11.el10 appstream 1.0 M 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-ceph-argparse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 57 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-ceph-common x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 232 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-cephfs x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 206 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-prettytable noarch 3.6.0-10.el10 appstream 70 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-rados x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 350 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-rbd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 367 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: python3-rgw x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 130 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: qatlib x86_64 24.09.0-2.el10 appstream 229 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: qatzip-libs x86_64 1.3.1-1.el10 appstream 66 k 2026-02-22T20:19:40.145 INFO:teuthology.orchestra.run.trial090.stdout: re2 x86_64 2:20251105-1.el10_2 epel 221 k 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout: thrift x86_64 0.20.0-4.el10_1 epel 1.7 M 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout: utf8proc x86_64 2.7.0-9.el10 appstream 80 k 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout:Installing weak dependencies: 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout: qatlib-service x86_64 24.09.0-2.el10 appstream 37 k 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout:Install 40 Packages 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout:Upgrade 2 Packages 2026-02-22T20:19:40.146 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:40.147 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 84 M 2026-02-22T20:19:40.147 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:19:40.194 INFO:teuthology.orchestra.run.trial160.stdout:(4/42): libradosstriper1-20.2.0-794.ga5c3084f.e 4.6 MB/s | 254 kB 00:00 2026-02-22T20:19:40.627 INFO:teuthology.orchestra.run.trial160.stdout:(5/42): librgw2-20.2.0-794.ga5c3084f.el10.x86_6 15 MB/s | 6.6 MB 00:00 2026-02-22T20:19:40.672 INFO:teuthology.orchestra.run.trial160.stdout:(6/42): python3-ceph-argparse-20.2.0-794.ga5c30 1.3 MB/s | 57 kB 00:00 2026-02-22T20:19:40.720 INFO:teuthology.orchestra.run.trial160.stdout:(7/42): python3-ceph-common-20.2.0-794.ga5c3084 4.7 MB/s | 232 kB 00:00 2026-02-22T20:19:40.784 INFO:teuthology.orchestra.run.trial160.stdout:(8/42): ceph-common-20.2.0-794.ga5c3084f.el10.x 21 MB/s | 24 MB 00:01 2026-02-22T20:19:40.785 INFO:teuthology.orchestra.run.trial160.stdout:(9/42): python3-cephfs-20.2.0-794.ga5c3084f.el1 3.1 MB/s | 206 kB 00:00 2026-02-22T20:19:40.823 INFO:teuthology.orchestra.run.trial160.stdout:(10/42): python3-rados-20.2.0-794.ga5c3084f.el1 8.9 MB/s | 350 kB 00:00 2026-02-22T20:19:40.834 INFO:teuthology.orchestra.run.trial160.stdout:(11/42): python3-rbd-20.2.0-794.ga5c3084f.el10. 7.3 MB/s | 367 kB 00:00 2026-02-22T20:19:40.864 INFO:teuthology.orchestra.run.trial160.stdout:(12/42): python3-rgw-20.2.0-794.ga5c3084f.el10. 3.1 MB/s | 130 kB 00:00 2026-02-22T20:19:40.881 INFO:teuthology.orchestra.run.trial160.stdout:(13/42): boost-program-options-1.83.0-5.el10.x8 2.3 MB/s | 109 kB 00:00 2026-02-22T20:19:40.883 INFO:teuthology.orchestra.run.trial160.stdout:(14/42): libnbd-1.22.2-3.el10_1.x86_64.rpm 8.8 MB/s | 175 kB 00:00 2026-02-22T20:19:40.897 INFO:teuthology.orchestra.run.trial160.stdout:(15/42): librabbitmq-0.14.0-3.el10.x86_64.rpm 2.6 MB/s | 43 kB 00:00 2026-02-22T20:19:40.934 INFO:teuthology.orchestra.run.trial160.stdout:(16/42): librdkafka-2.1.1-7.el10.x86_64.rpm 14 MB/s | 725 kB 00:00 2026-02-22T20:19:40.938 INFO:teuthology.orchestra.run.trial160.stdout:(17/42): protobuf-3.19.6-11.el10.x86_64.rpm 25 MB/s | 1.0 MB 00:00 2026-02-22T20:19:40.952 INFO:teuthology.orchestra.run.trial160.stdout:(18/42): python3-prettytable-3.6.0-10.el10.noar 3.8 MB/s | 70 kB 00:00 2026-02-22T20:19:40.955 INFO:teuthology.orchestra.run.trial160.stdout:(19/42): qatlib-24.09.0-2.el10.x86_64.rpm 13 MB/s | 229 kB 00:00 2026-02-22T20:19:40.967 INFO:teuthology.orchestra.run.trial160.stdout:(20/42): qatlib-service-24.09.0-2.el10.x86_64.r 2.5 MB/s | 37 kB 00:00 2026-02-22T20:19:40.974 INFO:teuthology.orchestra.run.trial160.stdout:(21/42): qatzip-libs-1.3.1-1.el10.x86_64.rpm 3.4 MB/s | 66 kB 00:00 2026-02-22T20:19:40.985 INFO:teuthology.orchestra.run.trial160.stdout:(22/42): utf8proc-2.7.0-9.el10.x86_64.rpm 4.5 MB/s | 80 kB 00:00 2026-02-22T20:19:40.989 INFO:teuthology.orchestra.run.trial160.stdout:(23/42): daxctl-libs-80-4.el10.x86_64.rpm 2.6 MB/s | 42 kB 00:00 2026-02-22T20:19:41.002 INFO:teuthology.orchestra.run.trial160.stdout:(24/42): mailcap-2.1.54-8.el10.noarch.rpm 2.0 MB/s | 34 kB 00:00 2026-02-22T20:19:41.013 INFO:teuthology.orchestra.run.trial160.stdout:(25/42): ndctl-libs-80-4.el10.x86_64.rpm 3.8 MB/s | 89 kB 00:00 2026-02-22T20:19:41.020 INFO:teuthology.orchestra.run.trial160.stdout:(26/42): pciutils-3.13.0-6.el10.x86_64.rpm 6.6 MB/s | 122 kB 00:00 2026-02-22T20:19:41.032 INFO:teuthology.orchestra.run.trial160.stdout:(27/42): lttng-ust-2.13.7-5.el10.x86_64.rpm 17 MB/s | 334 kB 00:00 2026-02-22T20:19:41.112 INFO:teuthology.orchestra.run.trial160.stdout:(28/42): ceph-radosgw-20.2.0-794.ga5c3084f.el10 16 MB/s | 24 MB 00:01 2026-02-22T20:19:41.347 INFO:teuthology.orchestra.run.trial160.stdout:(29/42): gperftools-libs-2.15-4.el10_0.x86_64.r 961 kB/s | 303 kB 00:00 2026-02-22T20:19:41.374 INFO:teuthology.orchestra.run.trial090.stdout:(1/42): ceph-base-20.2.0-794.ga5c3084f.el10.x86 6.8 MB/s | 6.0 MB 00:00 2026-02-22T20:19:41.381 INFO:teuthology.orchestra.run.trial160.stdout:(30/42): abseil-cpp-20240722.1-1.el10_0.x86_64. 1.6 MB/s | 590 kB 00:00 2026-02-22T20:19:41.391 INFO:teuthology.orchestra.run.trial160.stdout:(31/42): libarrow-doc-17.0.0-9.el10_2.noarch.rp 600 kB/s | 27 kB 00:00 2026-02-22T20:19:41.416 INFO:teuthology.orchestra.run.trial090.stdout:(2/42): ceph-selinux-20.2.0-794.ga5c3084f.el10. 603 kB/s | 25 kB 00:00 2026-02-22T20:19:41.425 INFO:teuthology.orchestra.run.trial160.stdout:(32/42): liboath-2.6.12-1.el10_0.x86_64.rpm 1.1 MB/s | 48 kB 00:00 2026-02-22T20:19:41.472 INFO:teuthology.orchestra.run.trial160.stdout:(33/42): libpmem-2.1.0-2.el10_0.x86_64.rpm 2.3 MB/s | 112 kB 00:00 2026-02-22T20:19:41.498 INFO:teuthology.orchestra.run.trial160.stdout:(34/42): liborc2-2.0.7-1.el10_2.x86_64.rpm 4.7 MB/s | 515 kB 00:00 2026-02-22T20:19:41.517 INFO:teuthology.orchestra.run.trial060.stdout:(1/42): ceph-base-20.2.0-794.ga5c3084f.el10.x86 3.5 MB/s | 6.0 MB 00:01 2026-02-22T20:19:41.519 INFO:teuthology.orchestra.run.trial090.stdout:(3/42): libcephfs2-20.2.0-794.ga5c3084f.el10.x8 8.5 MB/s | 897 kB 00:00 2026-02-22T20:19:41.522 INFO:teuthology.orchestra.run.trial160.stdout:(35/42): libpmemobj-2.1.0-2.el10_0.x86_64.rpm 3.1 MB/s | 161 kB 00:00 2026-02-22T20:19:41.543 INFO:teuthology.orchestra.run.trial160.stdout:(36/42): libunwind-1.8.0-4.el10_0.x86_64.rpm 1.6 MB/s | 73 kB 00:00 2026-02-22T20:19:41.563 INFO:teuthology.orchestra.run.trial060.stdout:(2/42): ceph-selinux-20.2.0-794.ga5c3084f.el10. 547 kB/s | 25 kB 00:00 2026-02-22T20:19:41.565 INFO:teuthology.orchestra.run.trial090.stdout:(4/42): libradosstriper1-20.2.0-794.ga5c3084f.e 5.3 MB/s | 254 kB 00:00 2026-02-22T20:19:41.598 INFO:teuthology.orchestra.run.trial160.stdout:(37/42): re2-20251105-1.el10_2.x86_64.rpm 3.9 MB/s | 221 kB 00:00 2026-02-22T20:19:41.613 INFO:teuthology.orchestra.run.trial160.stdout:(38/42): libarrow-17.0.0-9.el10_2.x86_64.rpm 11 MB/s | 5.7 MB 00:00 2026-02-22T20:19:41.615 INFO:teuthology.orchestra.run.trial160.stdout:(39/42): parquet-libs-17.0.0-9.el10_2.x86_64.rp 11 MB/s | 1.0 MB 00:00 2026-02-22T20:19:41.712 INFO:teuthology.orchestra.run.trial160.stdout:(40/42): thrift-0.20.0-4.el10_1.x86_64.rpm 15 MB/s | 1.7 MB 00:00 2026-02-22T20:19:41.742 INFO:teuthology.orchestra.run.trial060.stdout:(3/42): libcephfs2-20.2.0-794.ga5c3084f.el10.x8 4.9 MB/s | 897 kB 00:00 2026-02-22T20:19:42.086 INFO:teuthology.orchestra.run.trial160.stdout:(41/42): librbd1-20.2.0-794.ga5c3084f.el10.x86_ 6.1 MB/s | 2.9 MB 00:00 2026-02-22T20:19:42.190 INFO:teuthology.orchestra.run.trial160.stdout:(42/42): librados2-20.2.0-794.ga5c3084f.el10.x8 6.3 MB/s | 3.7 MB 00:00 2026-02-22T20:19:42.191 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:42.191 INFO:teuthology.orchestra.run.trial160.stdout:Total 31 MB/s | 84 MB 00:02 2026-02-22T20:19:42.191 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:19:42.210 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:19:42.211 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:19:42.237 INFO:teuthology.orchestra.run.trial060.stdout:(4/42): libradosstriper1-20.2.0-794.ga5c3084f.e 513 kB/s | 254 kB 00:00 2026-02-22T20:19:42.244 INFO:teuthology.orchestra.run.trial090.stdout:(5/42): librgw2-20.2.0-794.ga5c3084f.el10.x86_6 9.7 MB/s | 6.6 MB 00:00 2026-02-22T20:19:42.287 INFO:teuthology.orchestra.run.trial090.stdout:(6/42): python3-ceph-argparse-20.2.0-794.ga5c30 1.3 MB/s | 57 kB 00:00 2026-02-22T20:19:42.334 INFO:teuthology.orchestra.run.trial090.stdout:(7/42): python3-ceph-common-20.2.0-794.ga5c3084 4.8 MB/s | 232 kB 00:00 2026-02-22T20:19:42.380 INFO:teuthology.orchestra.run.trial090.stdout:(8/42): python3-cephfs-20.2.0-794.ga5c3084f.el1 4.3 MB/s | 206 kB 00:00 2026-02-22T20:19:42.431 INFO:teuthology.orchestra.run.trial090.stdout:(9/42): python3-rados-20.2.0-794.ga5c3084f.el10 6.7 MB/s | 350 kB 00:00 2026-02-22T20:19:42.483 INFO:teuthology.orchestra.run.trial090.stdout:(10/42): python3-rbd-20.2.0-794.ga5c3084f.el10. 6.9 MB/s | 367 kB 00:00 2026-02-22T20:19:42.509 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:19:42.509 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:19:42.532 INFO:teuthology.orchestra.run.trial090.stdout:(11/42): python3-rgw-20.2.0-794.ga5c3084f.el10. 2.6 MB/s | 130 kB 00:00 2026-02-22T20:19:42.569 INFO:teuthology.orchestra.run.trial090.stdout:(12/42): boost-program-options-1.83.0-5.el10.x8 2.9 MB/s | 109 kB 00:00 2026-02-22T20:19:42.585 INFO:teuthology.orchestra.run.trial090.stdout:(13/42): libnbd-1.22.2-3.el10_1.x86_64.rpm 10 MB/s | 175 kB 00:00 2026-02-22T20:19:42.597 INFO:teuthology.orchestra.run.trial090.stdout:(14/42): librabbitmq-0.14.0-3.el10.x86_64.rpm 3.4 MB/s | 43 kB 00:00 2026-02-22T20:19:42.624 INFO:teuthology.orchestra.run.trial090.stdout:(15/42): librdkafka-2.1.1-7.el10.x86_64.rpm 27 MB/s | 725 kB 00:00 2026-02-22T20:19:42.651 INFO:teuthology.orchestra.run.trial090.stdout:(16/42): protobuf-3.19.6-11.el10.x86_64.rpm 37 MB/s | 1.0 MB 00:00 2026-02-22T20:19:42.669 INFO:teuthology.orchestra.run.trial090.stdout:(17/42): python3-prettytable-3.6.0-10.el10.noar 3.8 MB/s | 70 kB 00:00 2026-02-22T20:19:42.687 INFO:teuthology.orchestra.run.trial090.stdout:(18/42): qatlib-24.09.0-2.el10.x86_64.rpm 13 MB/s | 229 kB 00:00 2026-02-22T20:19:42.700 INFO:teuthology.orchestra.run.trial090.stdout:(19/42): qatlib-service-24.09.0-2.el10.x86_64.r 2.7 MB/s | 37 kB 00:00 2026-02-22T20:19:42.717 INFO:teuthology.orchestra.run.trial090.stdout:(20/42): qatzip-libs-1.3.1-1.el10.x86_64.rpm 3.9 MB/s | 66 kB 00:00 2026-02-22T20:19:42.734 INFO:teuthology.orchestra.run.trial090.stdout:(21/42): utf8proc-2.7.0-9.el10.x86_64.rpm 4.5 MB/s | 80 kB 00:00 2026-02-22T20:19:42.747 INFO:teuthology.orchestra.run.trial090.stdout:(22/42): daxctl-libs-80-4.el10.x86_64.rpm 3.3 MB/s | 42 kB 00:00 2026-02-22T20:19:42.761 INFO:teuthology.orchestra.run.trial090.stdout:(23/42): mailcap-2.1.54-8.el10.noarch.rpm 2.3 MB/s | 34 kB 00:00 2026-02-22T20:19:42.777 INFO:teuthology.orchestra.run.trial090.stdout:(24/42): ndctl-libs-80-4.el10.x86_64.rpm 5.4 MB/s | 89 kB 00:00 2026-02-22T20:19:42.811 INFO:teuthology.orchestra.run.trial090.stdout:(25/42): ceph-radosgw-20.2.0-794.ga5c3084f.el10 10 MB/s | 24 MB 00:02 2026-02-22T20:19:42.844 INFO:teuthology.orchestra.run.trial090.stdout:(26/42): ceph-common-20.2.0-794.ga5c3084f.el10. 10 MB/s | 24 MB 00:02 2026-02-22T20:19:42.844 INFO:teuthology.orchestra.run.trial090.stdout:(27/42): pciutils-3.13.0-6.el10.x86_64.rpm 1.8 MB/s | 122 kB 00:00 2026-02-22T20:19:42.848 INFO:teuthology.orchestra.run.trial090.stdout:(28/42): lttng-ust-2.13.7-5.el10.x86_64.rpm 8.8 MB/s | 334 kB 00:00 2026-02-22T20:19:42.864 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:19:42.867 INFO:teuthology.orchestra.run.trial160.stdout: Installing : lttng-ust-2.13.7-5.el10.x86_64 1/44 2026-02-22T20:19:42.873 INFO:teuthology.orchestra.run.trial160.stdout: Installing : daxctl-libs-80-4.el10.x86_64 2/44 2026-02-22T20:19:42.875 INFO:teuthology.orchestra.run.trial160.stdout: Installing : librdkafka-2.1.1-7.el10.x86_64 3/44 2026-02-22T20:19:42.877 INFO:teuthology.orchestra.run.trial160.stdout: Installing : librabbitmq-0.14.0-3.el10.x86_64 4/44 2026-02-22T20:19:42.887 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ndctl-libs-80-4.el10.x86_64 5/44 2026-02-22T20:19:42.890 INFO:teuthology.orchestra.run.trial090.stdout:(29/42): gperftools-libs-2.15-4.el10_0.x86_64.r 6.4 MB/s | 303 kB 00:00 2026-02-22T20:19:42.898 INFO:teuthology.orchestra.run.trial090.stdout:(30/42): libarrow-doc-17.0.0-9.el10_2.noarch.rp 3.8 MB/s | 27 kB 00:00 2026-02-22T20:19:42.899 INFO:teuthology.orchestra.run.trial090.stdout:(31/42): abseil-cpp-20240722.1-1.el10_0.x86_64. 10 MB/s | 590 kB 00:00 2026-02-22T20:19:42.905 INFO:teuthology.orchestra.run.trial090.stdout:(32/42): liboath-2.6.12-1.el10_0.x86_64.rpm 6.7 MB/s | 48 kB 00:00 2026-02-22T20:19:42.909 INFO:teuthology.orchestra.run.trial090.stdout:(33/42): liborc2-2.0.7-1.el10_2.x86_64.rpm 50 MB/s | 515 kB 00:00 2026-02-22T20:19:42.912 INFO:teuthology.orchestra.run.trial090.stdout:(34/42): libpmem-2.1.0-2.el10_0.x86_64.rpm 14 MB/s | 112 kB 00:00 2026-02-22T20:19:42.919 INFO:teuthology.orchestra.run.trial090.stdout:(35/42): libpmemobj-2.1.0-2.el10_0.x86_64.rpm 16 MB/s | 161 kB 00:00 2026-02-22T20:19:42.921 INFO:teuthology.orchestra.run.trial090.stdout:(36/42): libunwind-1.8.0-4.el10_0.x86_64.rpm 8.8 MB/s | 73 kB 00:00 2026-02-22T20:19:42.927 INFO:teuthology.orchestra.run.trial090.stdout:(37/42): libarrow-17.0.0-9.el10_2.x86_64.rpm 72 MB/s | 5.7 MB 00:00 2026-02-22T20:19:42.930 INFO:teuthology.orchestra.run.trial090.stdout:(38/42): re2-20251105-1.el10_2.x86_64.rpm 24 MB/s | 221 kB 00:00 2026-02-22T20:19:42.931 INFO:teuthology.orchestra.run.trial090.stdout:(39/42): parquet-libs-17.0.0-9.el10_2.x86_64.rp 83 MB/s | 1.0 MB 00:00 2026-02-22T20:19:42.940 INFO:teuthology.orchestra.run.trial090.stdout:(40/42): thrift-0.20.0-4.el10_1.x86_64.rpm 134 MB/s | 1.7 MB 00:00 2026-02-22T20:19:43.002 INFO:teuthology.orchestra.run.trial160.stdout: Installing : thrift-0.20.0-4.el10_1.x86_64 6/44 2026-02-22T20:19:43.007 INFO:teuthology.orchestra.run.trial160.stdout: Upgrading : librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 7/44 2026-02-22T20:19:43.033 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 7/44 2026-02-22T20:19:43.061 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 8/44 2026-02-22T20:19:43.062 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 9/44 2026-02-22T20:19:43.073 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 9/44 2026-02-22T20:19:43.075 INFO:teuthology.orchestra.run.trial160.stdout: Installing : liboath-2.6.12-1.el10_0.x86_64 10/44 2026-02-22T20:19:43.078 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libarrow-doc-17.0.0-9.el10_2.noarch 11/44 2026-02-22T20:19:43.085 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-ceph-argparse-2:20.2.0-794.ga5c3084f.el10. 12/44 2026-02-22T20:19:43.094 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 13/44 2026-02-22T20:19:43.094 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_6 14/44 2026-02-22T20:19:43.102 INFO:teuthology.orchestra.run.trial060.stdout:(5/42): librgw2-20.2.0-794.ga5c3084f.el10.x86_6 7.6 MB/s | 6.6 MB 00:00 2026-02-22T20:19:43.107 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_6 14/44 2026-02-22T20:19:43.110 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libpmem-2.1.0-2.el10_0.x86_64 15/44 2026-02-22T20:19:43.112 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libpmemobj-2.1.0-2.el10_0.x86_64 16/44 2026-02-22T20:19:43.119 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libunwind-1.8.0-4.el10_0.x86_64 17/44 2026-02-22T20:19:43.145 INFO:teuthology.orchestra.run.trial160.stdout: Installing : gperftools-libs-2.15-4.el10_0.x86_64 18/44 2026-02-22T20:19:43.150 INFO:teuthology.orchestra.run.trial060.stdout:(6/42): python3-ceph-argparse-20.2.0-794.ga5c30 1.2 MB/s | 57 kB 00:00 2026-02-22T20:19:43.150 INFO:teuthology.orchestra.run.trial160.stdout: Installing : abseil-cpp-20240722.1-1.el10_0.x86_64 19/44 2026-02-22T20:19:43.154 INFO:teuthology.orchestra.run.trial160.stdout: Installing : re2-2:20251105-1.el10_2.x86_64 20/44 2026-02-22T20:19:43.156 INFO:teuthology.orchestra.run.trial160.stdout: Installing : pciutils-3.13.0-6.el10.x86_64 21/44 2026-02-22T20:19:43.157 INFO:teuthology.orchestra.run.trial160.stdout: Installing : qatlib-service-24.09.0-2.el10.x86_64 22/44 2026-02-22T20:19:43.165 INFO:teuthology.orchestra.run.trial090.stdout:(41/42): librbd1-20.2.0-794.ga5c3084f.el10.x86_ 12 MB/s | 2.9 MB 00:00 2026-02-22T20:19:43.174 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: qatlib-service-24.09.0-2.el10.x86_64 22/44 2026-02-22T20:19:43.190 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: qatlib-24.09.0-2.el10.x86_64 23/44 2026-02-22T20:19:43.191 INFO:teuthology.orchestra.run.trial060.stdout:(7/42): python3-ceph-common-20.2.0-794.ga5c3084 5.6 MB/s | 232 kB 00:00 2026-02-22T20:19:43.193 INFO:teuthology.orchestra.run.trial160.stdout: Installing : qatlib-24.09.0-2.el10.x86_64 23/44 2026-02-22T20:19:43.195 INFO:teuthology.orchestra.run.trial160.stdout: Installing : qatzip-libs-1.3.1-1.el10.x86_64 24/44 2026-02-22T20:19:43.197 INFO:teuthology.orchestra.run.trial160.stdout: Installing : mailcap-2.1.54-8.el10.noarch 25/44 2026-02-22T20:19:43.199 INFO:teuthology.orchestra.run.trial160.stdout: Installing : utf8proc-2.7.0-9.el10.x86_64 26/44 2026-02-22T20:19:43.207 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-prettytable-3.6.0-10.el10.noarch 27/44 2026-02-22T20:19:43.211 INFO:teuthology.orchestra.run.trial160.stdout: Installing : protobuf-3.19.6-11.el10.x86_64 28/44 2026-02-22T20:19:43.228 INFO:teuthology.orchestra.run.trial060.stdout:(8/42): python3-cephfs-20.2.0-794.ga5c3084f.el1 5.4 MB/s | 206 kB 00:00 2026-02-22T20:19:43.230 INFO:teuthology.orchestra.run.trial090.stdout:(42/42): librados2-20.2.0-794.ga5c3084f.el10.x8 12 MB/s | 3.7 MB 00:00 2026-02-22T20:19:43.230 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:43.230 INFO:teuthology.orchestra.run.trial090.stdout:Total 27 MB/s | 84 MB 00:03 2026-02-22T20:19:43.230 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:19:43.249 INFO:teuthology.orchestra.run.trial160.stdout: Installing : liborc2-2.0.7-1.el10_2.x86_64 29/44 2026-02-22T20:19:43.250 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:19:43.250 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:19:43.252 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libarrow-17.0.0-9.el10_2.x86_64 30/44 2026-02-22T20:19:43.284 INFO:teuthology.orchestra.run.trial060.stdout:(9/42): python3-rados-20.2.0-794.ga5c3084f.el10 6.1 MB/s | 350 kB 00:00 2026-02-22T20:19:43.344 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libnbd-1.22.2-3.el10_1.x86_64 31/44 2026-02-22T20:19:43.345 INFO:teuthology.orchestra.run.trial060.stdout:(10/42): python3-rbd-20.2.0-794.ga5c3084f.el10. 6.1 MB/s | 367 kB 00:00 2026-02-22T20:19:43.345 INFO:teuthology.orchestra.run.trial160.stdout: Upgrading : librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 32/44 2026-02-22T20:19:43.369 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 32/44 2026-02-22T20:19:43.371 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 33/44 2026-02-22T20:19:43.377 INFO:teuthology.orchestra.run.trial160.stdout: Installing : boost-program-options-1.83.0-5.el10.x86_64 34/44 2026-02-22T20:19:43.383 INFO:teuthology.orchestra.run.trial060.stdout:(11/42): ceph-radosgw-20.2.0-794.ga5c3084f.el10 6.8 MB/s | 24 MB 00:03 2026-02-22T20:19:43.416 INFO:teuthology.orchestra.run.trial060.stdout:(12/42): ceph-common-20.2.0-794.ga5c3084f.el10. 6.7 MB/s | 24 MB 00:03 2026-02-22T20:19:43.416 INFO:teuthology.orchestra.run.trial060.stdout:(13/42): python3-rgw-20.2.0-794.ga5c3084f.el10. 1.7 MB/s | 130 kB 00:00 2026-02-22T20:19:43.451 INFO:teuthology.orchestra.run.trial060.stdout:(14/42): boost-program-options-1.83.0-5.el10.x8 1.6 MB/s | 109 kB 00:00 2026-02-22T20:19:43.453 INFO:teuthology.orchestra.run.trial060.stdout:(15/42): librabbitmq-0.14.0-3.el10.x86_64.rpm 1.2 MB/s | 43 kB 00:00 2026-02-22T20:19:43.454 INFO:teuthology.orchestra.run.trial060.stdout:(16/42): libnbd-1.22.2-3.el10_1.x86_64.rpm 4.5 MB/s | 175 kB 00:00 2026-02-22T20:19:43.477 INFO:teuthology.orchestra.run.trial060.stdout:(17/42): python3-prettytable-3.6.0-10.el10.noar 3.1 MB/s | 70 kB 00:00 2026-02-22T20:19:43.480 INFO:teuthology.orchestra.run.trial060.stdout:(18/42): librdkafka-2.1.1-7.el10.x86_64.rpm 25 MB/s | 725 kB 00:00 2026-02-22T20:19:43.482 INFO:teuthology.orchestra.run.trial060.stdout:(19/42): protobuf-3.19.6-11.el10.x86_64.rpm 36 MB/s | 1.0 MB 00:00 2026-02-22T20:19:43.492 INFO:teuthology.orchestra.run.trial060.stdout:(20/42): qatlib-service-24.09.0-2.el10.x86_64.r 3.0 MB/s | 37 kB 00:00 2026-02-22T20:19:43.493 INFO:teuthology.orchestra.run.trial060.stdout:(21/42): qatlib-24.09.0-2.el10.x86_64.rpm 14 MB/s | 229 kB 00:00 2026-02-22T20:19:43.500 INFO:teuthology.orchestra.run.trial060.stdout:(22/42): qatzip-libs-1.3.1-1.el10.x86_64.rpm 3.6 MB/s | 66 kB 00:00 2026-02-22T20:19:43.508 INFO:teuthology.orchestra.run.trial060.stdout:(23/42): utf8proc-2.7.0-9.el10.x86_64.rpm 5.0 MB/s | 80 kB 00:00 2026-02-22T20:19:43.509 INFO:teuthology.orchestra.run.trial060.stdout:(24/42): daxctl-libs-80-4.el10.x86_64.rpm 2.7 MB/s | 42 kB 00:00 2026-02-22T20:19:43.512 INFO:teuthology.orchestra.run.trial060.stdout:(25/42): mailcap-2.1.54-8.el10.noarch.rpm 2.6 MB/s | 34 kB 00:00 2026-02-22T20:19:43.523 INFO:teuthology.orchestra.run.trial060.stdout:(26/42): ndctl-libs-80-4.el10.x86_64.rpm 5.5 MB/s | 89 kB 00:00 2026-02-22T20:19:43.525 INFO:teuthology.orchestra.run.trial060.stdout:(27/42): pciutils-3.13.0-6.el10.x86_64.rpm 7.2 MB/s | 122 kB 00:00 2026-02-22T20:19:43.530 INFO:teuthology.orchestra.run.trial060.stdout:(28/42): lttng-ust-2.13.7-5.el10.x86_64.rpm 19 MB/s | 334 kB 00:00 2026-02-22T20:19:43.547 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:19:43.547 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:19:43.585 INFO:teuthology.orchestra.run.trial160.stdout: Installing : parquet-libs-17.0.0-9.el10_2.x86_64 35/44 2026-02-22T20:19:43.586 INFO:teuthology.orchestra.run.trial160.stdout: Installing : librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 36/44 2026-02-22T20:19:43.603 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 36/44 2026-02-22T20:19:43.608 INFO:teuthology.orchestra.run.trial060.stdout:(29/42): gperftools-libs-2.15-4.el10_0.x86_64.r 3.6 MB/s | 303 kB 00:00 2026-02-22T20:19:43.620 INFO:teuthology.orchestra.run.trial060.stdout:(30/42): abseil-cpp-20240722.1-1.el10_0.x86_64. 6.0 MB/s | 590 kB 00:00 2026-02-22T20:19:43.621 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 37/44 2026-02-22T20:19:43.622 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-ceph-common-2:20.2.0-794.ga5c3084f.el10.x8 38/44 2026-02-22T20:19:43.624 INFO:teuthology.orchestra.run.trial060.stdout:(31/42): libarrow-doc-17.0.0-9.el10_2.noarch.rp 1.6 MB/s | 27 kB 00:00 2026-02-22T20:19:43.636 INFO:teuthology.orchestra.run.trial060.stdout:(32/42): liboath-2.6.12-1.el10_0.x86_64.rpm 3.0 MB/s | 48 kB 00:00 2026-02-22T20:19:43.648 INFO:teuthology.orchestra.run.trial060.stdout:(33/42): liborc2-2.0.7-1.el10_2.x86_64.rpm 21 MB/s | 515 kB 00:00 2026-02-22T20:19:43.655 INFO:teuthology.orchestra.run.trial060.stdout:(34/42): libarrow-17.0.0-9.el10_2.x86_64.rpm 45 MB/s | 5.7 MB 00:00 2026-02-22T20:19:43.656 INFO:teuthology.orchestra.run.trial060.stdout:(35/42): libpmem-2.1.0-2.el10_0.x86_64.rpm 5.6 MB/s | 112 kB 00:00 2026-02-22T20:19:43.662 INFO:teuthology.orchestra.run.trial060.stdout:(36/42): libpmemobj-2.1.0-2.el10_0.x86_64.rpm 11 MB/s | 161 kB 00:00 2026-02-22T20:19:43.669 INFO:teuthology.orchestra.run.trial060.stdout:(37/42): libunwind-1.8.0-4.el10_0.x86_64.rpm 5.1 MB/s | 73 kB 00:00 2026-02-22T20:19:43.677 INFO:teuthology.orchestra.run.trial060.stdout:(38/42): re2-20251105-1.el10_2.x86_64.rpm 15 MB/s | 221 kB 00:00 2026-02-22T20:19:43.682 INFO:teuthology.orchestra.run.trial060.stdout:(39/42): parquet-libs-17.0.0-9.el10_2.x86_64.rp 38 MB/s | 1.0 MB 00:00 2026-02-22T20:19:43.697 INFO:teuthology.orchestra.run.trial060.stdout:(40/42): thrift-0.20.0-4.el10_1.x86_64.rpm 60 MB/s | 1.7 MB 00:00 2026-02-22T20:19:43.899 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:19:43.903 INFO:teuthology.orchestra.run.trial090.stdout: Installing : lttng-ust-2.13.7-5.el10.x86_64 1/44 2026-02-22T20:19:43.909 INFO:teuthology.orchestra.run.trial090.stdout: Installing : daxctl-libs-80-4.el10.x86_64 2/44 2026-02-22T20:19:43.911 INFO:teuthology.orchestra.run.trial090.stdout: Installing : librdkafka-2.1.1-7.el10.x86_64 3/44 2026-02-22T20:19:43.913 INFO:teuthology.orchestra.run.trial090.stdout: Installing : librabbitmq-0.14.0-3.el10.x86_64 4/44 2026-02-22T20:19:43.923 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ndctl-libs-80-4.el10.x86_64 5/44 2026-02-22T20:19:43.996 INFO:teuthology.orchestra.run.trial060.stdout:(41/42): librbd1-20.2.0-794.ga5c3084f.el10.x86_ 9.1 MB/s | 2.9 MB 00:00 2026-02-22T20:19:44.038 INFO:teuthology.orchestra.run.trial090.stdout: Installing : thrift-0.20.0-4.el10_1.x86_64 6/44 2026-02-22T20:19:44.043 INFO:teuthology.orchestra.run.trial090.stdout: Upgrading : librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 7/44 2026-02-22T20:19:44.066 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 7/44 2026-02-22T20:19:44.092 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 8/44 2026-02-22T20:19:44.093 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 9/44 2026-02-22T20:19:44.103 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 9/44 2026-02-22T20:19:44.104 INFO:teuthology.orchestra.run.trial090.stdout: Installing : liboath-2.6.12-1.el10_0.x86_64 10/44 2026-02-22T20:19:44.107 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libarrow-doc-17.0.0-9.el10_2.noarch 11/44 2026-02-22T20:19:44.114 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-ceph-argparse-2:20.2.0-794.ga5c3084f.el10. 12/44 2026-02-22T20:19:44.123 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 13/44 2026-02-22T20:19:44.124 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_6 14/44 2026-02-22T20:19:44.134 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_6 14/44 2026-02-22T20:19:44.136 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libpmem-2.1.0-2.el10_0.x86_64 15/44 2026-02-22T20:19:44.139 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libpmemobj-2.1.0-2.el10_0.x86_64 16/44 2026-02-22T20:19:44.145 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libunwind-1.8.0-4.el10_0.x86_64 17/44 2026-02-22T20:19:44.164 INFO:teuthology.orchestra.run.trial060.stdout:(42/42): librados2-20.2.0-794.ga5c3084f.el10.x8 7.5 MB/s | 3.7 MB 00:00 2026-02-22T20:19:44.165 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:44.165 INFO:teuthology.orchestra.run.trial060.stdout:Total 19 MB/s | 84 MB 00:04 2026-02-22T20:19:44.165 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:19:44.170 INFO:teuthology.orchestra.run.trial090.stdout: Installing : gperftools-libs-2.15-4.el10_0.x86_64 18/44 2026-02-22T20:19:44.175 INFO:teuthology.orchestra.run.trial090.stdout: Installing : abseil-cpp-20240722.1-1.el10_0.x86_64 19/44 2026-02-22T20:19:44.178 INFO:teuthology.orchestra.run.trial090.stdout: Installing : re2-2:20251105-1.el10_2.x86_64 20/44 2026-02-22T20:19:44.180 INFO:teuthology.orchestra.run.trial090.stdout: Installing : pciutils-3.13.0-6.el10.x86_64 21/44 2026-02-22T20:19:44.181 INFO:teuthology.orchestra.run.trial090.stdout: Installing : qatlib-service-24.09.0-2.el10.x86_64 22/44 2026-02-22T20:19:44.184 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:19:44.184 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:19:44.196 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: qatlib-service-24.09.0-2.el10.x86_64 22/44 2026-02-22T20:19:44.213 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: qatlib-24.09.0-2.el10.x86_64 23/44 2026-02-22T20:19:44.215 INFO:teuthology.orchestra.run.trial090.stdout: Installing : qatlib-24.09.0-2.el10.x86_64 23/44 2026-02-22T20:19:44.217 INFO:teuthology.orchestra.run.trial090.stdout: Installing : qatzip-libs-1.3.1-1.el10.x86_64 24/44 2026-02-22T20:19:44.219 INFO:teuthology.orchestra.run.trial090.stdout: Installing : mailcap-2.1.54-8.el10.noarch 25/44 2026-02-22T20:19:44.222 INFO:teuthology.orchestra.run.trial090.stdout: Installing : utf8proc-2.7.0-9.el10.x86_64 26/44 2026-02-22T20:19:44.229 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-prettytable-3.6.0-10.el10.noarch 27/44 2026-02-22T20:19:44.233 INFO:teuthology.orchestra.run.trial090.stdout: Installing : protobuf-3.19.6-11.el10.x86_64 28/44 2026-02-22T20:19:44.272 INFO:teuthology.orchestra.run.trial090.stdout: Installing : liborc2-2.0.7-1.el10_2.x86_64 29/44 2026-02-22T20:19:44.275 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libarrow-17.0.0-9.el10_2.x86_64 30/44 2026-02-22T20:19:44.368 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libnbd-1.22.2-3.el10_1.x86_64 31/44 2026-02-22T20:19:44.369 INFO:teuthology.orchestra.run.trial090.stdout: Upgrading : librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 32/44 2026-02-22T20:19:44.394 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 32/44 2026-02-22T20:19:44.395 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 33/44 2026-02-22T20:19:44.402 INFO:teuthology.orchestra.run.trial090.stdout: Installing : boost-program-options-1.83.0-5.el10.x86_64 34/44 2026-02-22T20:19:44.406 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:44.408 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:44.482 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:19:44.482 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:19:44.611 INFO:teuthology.orchestra.run.trial090.stdout: Installing : parquet-libs-17.0.0-9.el10_2.x86_64 35/44 2026-02-22T20:19:44.613 INFO:teuthology.orchestra.run.trial090.stdout: Installing : librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 36/44 2026-02-22T20:19:44.628 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 36/44 2026-02-22T20:19:44.633 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:44.636 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 40/44 2026-02-22T20:19:44.645 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 37/44 2026-02-22T20:19:44.646 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-ceph-common-2:20.2.0-794.ga5c3084f.el10.x8 38/44 2026-02-22T20:19:44.668 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 40/44 2026-02-22T20:19:44.669 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph.target' → '/usr/lib/systemd/system/ceph.target'. 2026-02-22T20:19:44.669 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-crash.service' → '/usr/lib/systemd/system/ceph-crash.service'. 2026-02-22T20:19:44.669 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:44.671 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 41/44 2026-02-22T20:19:44.834 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:19:44.838 INFO:teuthology.orchestra.run.trial060.stdout: Installing : lttng-ust-2.13.7-5.el10.x86_64 1/44 2026-02-22T20:19:44.844 INFO:teuthology.orchestra.run.trial060.stdout: Installing : daxctl-libs-80-4.el10.x86_64 2/44 2026-02-22T20:19:44.846 INFO:teuthology.orchestra.run.trial060.stdout: Installing : librdkafka-2.1.1-7.el10.x86_64 3/44 2026-02-22T20:19:44.848 INFO:teuthology.orchestra.run.trial060.stdout: Installing : librabbitmq-0.14.0-3.el10.x86_64 4/44 2026-02-22T20:19:44.858 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ndctl-libs-80-4.el10.x86_64 5/44 2026-02-22T20:19:44.974 INFO:teuthology.orchestra.run.trial060.stdout: Installing : thrift-0.20.0-4.el10_1.x86_64 6/44 2026-02-22T20:19:44.979 INFO:teuthology.orchestra.run.trial060.stdout: Upgrading : librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 7/44 2026-02-22T20:19:45.004 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 7/44 2026-02-22T20:19:45.031 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 8/44 2026-02-22T20:19:45.032 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 9/44 2026-02-22T20:19:45.043 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 9/44 2026-02-22T20:19:45.045 INFO:teuthology.orchestra.run.trial060.stdout: Installing : liboath-2.6.12-1.el10_0.x86_64 10/44 2026-02-22T20:19:45.048 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libarrow-doc-17.0.0-9.el10_2.noarch 11/44 2026-02-22T20:19:45.055 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-ceph-argparse-2:20.2.0-794.ga5c3084f.el10. 12/44 2026-02-22T20:19:45.064 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 13/44 2026-02-22T20:19:45.064 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_6 14/44 2026-02-22T20:19:45.076 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_6 14/44 2026-02-22T20:19:45.078 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libpmem-2.1.0-2.el10_0.x86_64 15/44 2026-02-22T20:19:45.081 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libpmemobj-2.1.0-2.el10_0.x86_64 16/44 2026-02-22T20:19:45.086 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libunwind-1.8.0-4.el10_0.x86_64 17/44 2026-02-22T20:19:45.110 INFO:teuthology.orchestra.run.trial060.stdout: Installing : gperftools-libs-2.15-4.el10_0.x86_64 18/44 2026-02-22T20:19:45.116 INFO:teuthology.orchestra.run.trial060.stdout: Installing : abseil-cpp-20240722.1-1.el10_0.x86_64 19/44 2026-02-22T20:19:45.119 INFO:teuthology.orchestra.run.trial060.stdout: Installing : re2-2:20251105-1.el10_2.x86_64 20/44 2026-02-22T20:19:45.121 INFO:teuthology.orchestra.run.trial060.stdout: Installing : pciutils-3.13.0-6.el10.x86_64 21/44 2026-02-22T20:19:45.122 INFO:teuthology.orchestra.run.trial060.stdout: Installing : qatlib-service-24.09.0-2.el10.x86_64 22/44 2026-02-22T20:19:45.136 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: qatlib-service-24.09.0-2.el10.x86_64 22/44 2026-02-22T20:19:45.153 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: qatlib-24.09.0-2.el10.x86_64 23/44 2026-02-22T20:19:45.155 INFO:teuthology.orchestra.run.trial060.stdout: Installing : qatlib-24.09.0-2.el10.x86_64 23/44 2026-02-22T20:19:45.157 INFO:teuthology.orchestra.run.trial060.stdout: Installing : qatzip-libs-1.3.1-1.el10.x86_64 24/44 2026-02-22T20:19:45.159 INFO:teuthology.orchestra.run.trial060.stdout: Installing : mailcap-2.1.54-8.el10.noarch 25/44 2026-02-22T20:19:45.162 INFO:teuthology.orchestra.run.trial060.stdout: Installing : utf8proc-2.7.0-9.el10.x86_64 26/44 2026-02-22T20:19:45.169 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-prettytable-3.6.0-10.el10.noarch 27/44 2026-02-22T20:19:45.174 INFO:teuthology.orchestra.run.trial060.stdout: Installing : protobuf-3.19.6-11.el10.x86_64 28/44 2026-02-22T20:19:45.212 INFO:teuthology.orchestra.run.trial060.stdout: Installing : liborc2-2.0.7-1.el10_2.x86_64 29/44 2026-02-22T20:19:45.215 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libarrow-17.0.0-9.el10_2.x86_64 30/44 2026-02-22T20:19:45.306 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libnbd-1.22.2-3.el10_1.x86_64 31/44 2026-02-22T20:19:45.307 INFO:teuthology.orchestra.run.trial060.stdout: Upgrading : librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 32/44 2026-02-22T20:19:45.336 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 32/44 2026-02-22T20:19:45.338 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 33/44 2026-02-22T20:19:45.344 INFO:teuthology.orchestra.run.trial060.stdout: Installing : boost-program-options-1.83.0-5.el10.x86_64 34/44 2026-02-22T20:19:45.428 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:45.430 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:45.551 INFO:teuthology.orchestra.run.trial060.stdout: Installing : parquet-libs-17.0.0-9.el10_2.x86_64 35/44 2026-02-22T20:19:45.552 INFO:teuthology.orchestra.run.trial060.stdout: Installing : librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 36/44 2026-02-22T20:19:45.568 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 36/44 2026-02-22T20:19:45.585 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 37/44 2026-02-22T20:19:45.586 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-ceph-common-2:20.2.0-794.ga5c3084f.el10.x8 38/44 2026-02-22T20:19:45.659 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:45.663 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 40/44 2026-02-22T20:19:45.694 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 40/44 2026-02-22T20:19:45.694 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph.target' → '/usr/lib/systemd/system/ceph.target'. 2026-02-22T20:19:45.694 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-crash.service' → '/usr/lib/systemd/system/ceph-crash.service'. 2026-02-22T20:19:45.694 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:45.696 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 41/44 2026-02-22T20:19:46.375 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:46.377 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:46.602 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 39/44 2026-02-22T20:19:46.605 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 40/44 2026-02-22T20:19:46.637 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 40/44 2026-02-22T20:19:46.637 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph.target' → '/usr/lib/systemd/system/ceph.target'. 2026-02-22T20:19:46.637 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-crash.service' → '/usr/lib/systemd/system/ceph-crash.service'. 2026-02-22T20:19:46.637 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:46.639 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 41/44 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 41/44 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /sys 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /proc 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /mnt 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /var/tmp 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /home 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /root 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout:skipping the directory /tmp 2026-02-22T20:19:48.586 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:49.347 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 42/44 2026-02-22T20:19:49.370 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 42/44 2026-02-22T20:19:49.370 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:49.371 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-22T20:19:49.371 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target' → '/usr/lib/systemd/system/ceph-radosgw.target'. 2026-02-22T20:19:49.371 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-radosgw.target' → '/usr/lib/systemd/system/ceph-radosgw.target'. 2026-02-22T20:19:49.371 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:49.373 INFO:teuthology.orchestra.run.trial160.stdout: Cleanup : librbd1-2:18.2.1-4.el10.x86_64 43/44 2026-02-22T20:19:49.391 INFO:teuthology.orchestra.run.trial160.stdout: Cleanup : librados2-2:18.2.1-4.el10.x86_64 44/44 2026-02-22T20:19:49.618 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 41/44 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /sys 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /proc 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /mnt 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /var/tmp 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /home 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /root 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout:skipping the directory /tmp 2026-02-22T20:19:49.619 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:49.807 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: librados2-2:18.2.1-4.el10.x86_64 44/44 2026-02-22T20:19:49.807 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:49.807 INFO:teuthology.orchestra.run.trial160.stdout:Upgraded: 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: abseil-cpp-20240722.1-1.el10_0.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: boost-program-options-1.83.0-5.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: daxctl-libs-80-4.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: gperftools-libs-2.15-4.el10_0.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: libarrow-17.0.0-9.el10_2.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: libarrow-doc-17.0.0-9.el10_2.noarch 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: libnbd-1.22.2-3.el10_1.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: liboath-2.6.12-1.el10_0.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: liborc2-2.0.7-1.el10_2.x86_64 2026-02-22T20:19:49.808 INFO:teuthology.orchestra.run.trial160.stdout: libpmem-2.1.0-2.el10_0.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: libpmemobj-2.1.0-2.el10_0.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: librabbitmq-0.14.0-3.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: librdkafka-2.1.1-7.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: libunwind-1.8.0-4.el10_0.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: lttng-ust-2.13.7-5.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: mailcap-2.1.54-8.el10.noarch 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: ndctl-libs-80-4.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: parquet-libs-17.0.0-9.el10_2.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: pciutils-3.13.0-6.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: protobuf-3.19.6-11.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-ceph-argparse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-prettytable-3.6.0-10.el10.noarch 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:49.809 INFO:teuthology.orchestra.run.trial160.stdout: qatlib-24.09.0-2.el10.x86_64 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout: qatlib-service-24.09.0-2.el10.x86_64 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout: qatzip-libs-1.3.1-1.el10.x86_64 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout: re2-2:20251105-1.el10_2.x86_64 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout: thrift-0.20.0-4.el10_1.x86_64 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout: utf8proc-2.7.0-9.el10.x86_64 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:49.810 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:49.848 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-test 2026-02-22T20:19:50.138 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:12 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:19:50.174 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:50.175 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:50.175 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout: ceph-test x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 86 M 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout: libcephsqlite x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 172 k 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout: libxslt x86_64 1.1.39-8.el10_0 appstream 189 k 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout: socat x86_64 1.7.4.4-8.el10 appstream 303 k 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout: xmlstarlet x86_64 1.6.1-27.el10 appstream 63 k 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:19:50.176 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:50.177 INFO:teuthology.orchestra.run.trial160.stdout:Install 5 Packages 2026-02-22T20:19:50.177 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:50.177 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 87 M 2026-02-22T20:19:50.177 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 349 M 2026-02-22T20:19:50.177 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:19:50.220 INFO:teuthology.orchestra.run.trial160.stdout:(1/5): libxslt-1.1.39-8.el10_0.x86_64.rpm 4.2 MB/s | 189 kB 00:00 2026-02-22T20:19:50.241 INFO:teuthology.orchestra.run.trial160.stdout:(2/5): socat-1.7.4.4-8.el10.x86_64.rpm 14 MB/s | 303 kB 00:00 2026-02-22T20:19:50.258 INFO:teuthology.orchestra.run.trial160.stdout:(3/5): libcephsqlite-20.2.0-794.ga5c3084f.el10. 2.0 MB/s | 172 kB 00:00 2026-02-22T20:19:50.259 INFO:teuthology.orchestra.run.trial160.stdout:(4/5): xmlstarlet-1.6.1-27.el10.x86_64.rpm 3.5 MB/s | 63 kB 00:00 2026-02-22T20:19:50.378 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 42/44 2026-02-22T20:19:50.404 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 42/44 2026-02-22T20:19:50.404 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:50.404 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-22T20:19:50.404 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target' → '/usr/lib/systemd/system/ceph-radosgw.target'. 2026-02-22T20:19:50.404 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-radosgw.target' → '/usr/lib/systemd/system/ceph-radosgw.target'. 2026-02-22T20:19:50.404 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:50.407 INFO:teuthology.orchestra.run.trial090.stdout: Cleanup : librbd1-2:18.2.1-4.el10.x86_64 43/44 2026-02-22T20:19:50.425 INFO:teuthology.orchestra.run.trial090.stdout: Cleanup : librados2-2:18.2.1-4.el10.x86_64 44/44 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 41/44 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /sys 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /proc 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /mnt 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /var/tmp 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /home 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /root 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout:skipping the directory /tmp 2026-02-22T20:19:50.604 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:50.838 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: librados2-2:18.2.1-4.el10.x86_64 44/44 2026-02-22T20:19:50.838 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:50.838 INFO:teuthology.orchestra.run.trial090.stdout:Upgraded: 2026-02-22T20:19:50.838 INFO:teuthology.orchestra.run.trial090.stdout: librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: abseil-cpp-20240722.1-1.el10_0.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: boost-program-options-1.83.0-5.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: daxctl-libs-80-4.el10.x86_64 2026-02-22T20:19:50.839 INFO:teuthology.orchestra.run.trial090.stdout: gperftools-libs-2.15-4.el10_0.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libarrow-17.0.0-9.el10_2.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libarrow-doc-17.0.0-9.el10_2.noarch 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libnbd-1.22.2-3.el10_1.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: liboath-2.6.12-1.el10_0.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: liborc2-2.0.7-1.el10_2.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libpmem-2.1.0-2.el10_0.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libpmemobj-2.1.0-2.el10_0.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: librabbitmq-0.14.0-3.el10.x86_64 2026-02-22T20:19:50.840 INFO:teuthology.orchestra.run.trial090.stdout: libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: librdkafka-2.1.1-7.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: libunwind-1.8.0-4.el10_0.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: lttng-ust-2.13.7-5.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: mailcap-2.1.54-8.el10.noarch 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: ndctl-libs-80-4.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: parquet-libs-17.0.0-9.el10_2.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: pciutils-3.13.0-6.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: protobuf-3.19.6-11.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: python3-ceph-argparse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.841 INFO:teuthology.orchestra.run.trial090.stdout: python3-ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: python3-prettytable-3.6.0-10.el10.noarch 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: qatlib-24.09.0-2.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: qatlib-service-24.09.0-2.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: qatzip-libs-1.3.1-1.el10.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: re2-2:20251105-1.el10_2.x86_64 2026-02-22T20:19:50.842 INFO:teuthology.orchestra.run.trial090.stdout: thrift-0.20.0-4.el10_1.x86_64 2026-02-22T20:19:50.843 INFO:teuthology.orchestra.run.trial090.stdout: utf8proc-2.7.0-9.el10.x86_64 2026-02-22T20:19:50.843 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:50.843 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:19:50.879 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-test 2026-02-22T20:19:51.168 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:12 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:19:51.205 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:19:51.206 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout: ceph-test x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 86 M 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout: libcephsqlite x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 172 k 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout: libxslt x86_64 1.1.39-8.el10_0 appstream 189 k 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout: socat x86_64 1.7.4.4-8.el10 appstream 303 k 2026-02-22T20:19:51.207 INFO:teuthology.orchestra.run.trial090.stdout: xmlstarlet x86_64 1.6.1-27.el10 appstream 63 k 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout:Install 5 Packages 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 87 M 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 349 M 2026-02-22T20:19:51.208 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:19:51.249 INFO:teuthology.orchestra.run.trial090.stdout:(1/5): libxslt-1.1.39-8.el10_0.x86_64.rpm 4.4 MB/s | 189 kB 00:00 2026-02-22T20:19:51.271 INFO:teuthology.orchestra.run.trial090.stdout:(2/5): socat-1.7.4.4-8.el10.x86_64.rpm 14 MB/s | 303 kB 00:00 2026-02-22T20:19:51.288 INFO:teuthology.orchestra.run.trial090.stdout:(3/5): xmlstarlet-1.6.1-27.el10.x86_64.rpm 3.6 MB/s | 63 kB 00:00 2026-02-22T20:19:51.364 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 42/44 2026-02-22T20:19:51.388 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 42/44 2026-02-22T20:19:51.388 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:51.388 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-22T20:19:51.388 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target' → '/usr/lib/systemd/system/ceph-radosgw.target'. 2026-02-22T20:19:51.388 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-radosgw.target' → '/usr/lib/systemd/system/ceph-radosgw.target'. 2026-02-22T20:19:51.388 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:51.391 INFO:teuthology.orchestra.run.trial060.stdout: Cleanup : librbd1-2:18.2.1-4.el10.x86_64 43/44 2026-02-22T20:19:51.409 INFO:teuthology.orchestra.run.trial060.stdout: Cleanup : librados2-2:18.2.1-4.el10.x86_64 44/44 2026-02-22T20:19:51.643 INFO:teuthology.orchestra.run.trial090.stdout:(4/5): libcephsqlite-20.2.0-794.ga5c3084f.el10. 395 kB/s | 172 kB 00:00 2026-02-22T20:19:51.863 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: librados2-2:18.2.1-4.el10.x86_64 44/44 2026-02-22T20:19:51.863 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout:Upgraded: 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: abseil-cpp-20240722.1-1.el10_0.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: boost-program-options-1.83.0-5.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: ceph-radosgw-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: ceph-selinux-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.864 INFO:teuthology.orchestra.run.trial060.stdout: daxctl-libs-80-4.el10.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: gperftools-libs-2.15-4.el10_0.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libarrow-17.0.0-9.el10_2.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libarrow-doc-17.0.0-9.el10_2.noarch 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libnbd-1.22.2-3.el10_1.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: liboath-2.6.12-1.el10_0.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: liborc2-2.0.7-1.el10_2.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libpmem-2.1.0-2.el10_0.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libpmemobj-2.1.0-2.el10_0.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: librabbitmq-0.14.0-3.el10.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: libradosstriper1-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.865 INFO:teuthology.orchestra.run.trial060.stdout: librdkafka-2.1.1-7.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: librgw2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: libunwind-1.8.0-4.el10_0.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: lttng-ust-2.13.7-5.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: mailcap-2.1.54-8.el10.noarch 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: ndctl-libs-80-4.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: parquet-libs-17.0.0-9.el10_2.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: pciutils-3.13.0-6.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: protobuf-3.19.6-11.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: python3-ceph-argparse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: python3-ceph-common-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.866 INFO:teuthology.orchestra.run.trial060.stdout: python3-prettytable-3.6.0-10.el10.noarch 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: qatlib-24.09.0-2.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: qatlib-service-24.09.0-2.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: qatzip-libs-1.3.1-1.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: re2-2:20251105-1.el10_2.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: thrift-0.20.0-4.el10_1.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: utf8proc-2.7.0-9.el10.x86_64 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:51.867 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:19:51.892 INFO:teuthology.orchestra.run.trial160.stdout:(5/5): ceph-test-20.2.0-794.ga5c3084f.el10.x86_ 50 MB/s | 86 MB 00:01 2026-02-22T20:19:51.893 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:51.893 INFO:teuthology.orchestra.run.trial160.stdout:Total 50 MB/s | 87 MB 00:01 2026-02-22T20:19:51.893 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:19:51.903 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-test 2026-02-22T20:19:51.904 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:19:51.905 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:19:52.191 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:13 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:19:52.194 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:19:52.194 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:19:52.229 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout: ceph-test x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 86 M 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout: libcephsqlite x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 172 k 2026-02-22T20:19:52.230 INFO:teuthology.orchestra.run.trial060.stdout: libxslt x86_64 1.1.39-8.el10_0 appstream 189 k 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout: socat x86_64 1.7.4.4-8.el10 appstream 303 k 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout: xmlstarlet x86_64 1.6.1-27.el10 appstream 63 k 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout:Install 5 Packages 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 87 M 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 349 M 2026-02-22T20:19:52.231 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:19:52.274 INFO:teuthology.orchestra.run.trial060.stdout:(1/5): libxslt-1.1.39-8.el10_0.x86_64.rpm 4.3 MB/s | 189 kB 00:00 2026-02-22T20:19:52.307 INFO:teuthology.orchestra.run.trial060.stdout:(2/5): socat-1.7.4.4-8.el10.x86_64.rpm 9.0 MB/s | 303 kB 00:00 2026-02-22T20:19:52.320 INFO:teuthology.orchestra.run.trial060.stdout:(3/5): xmlstarlet-1.6.1-27.el10.x86_64.rpm 4.5 MB/s | 63 kB 00:00 2026-02-22T20:19:52.483 INFO:teuthology.orchestra.run.trial060.stdout:(4/5): libcephsqlite-20.2.0-794.ga5c3084f.el10. 681 kB/s | 172 kB 00:00 2026-02-22T20:19:52.509 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:19:52.513 INFO:teuthology.orchestra.run.trial160.stdout: Installing : socat-1.7.4.4-8.el10.x86_64 1/5 2026-02-22T20:19:52.515 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libxslt-1.1.39-8.el10_0.x86_64 2/5 2026-02-22T20:19:52.521 INFO:teuthology.orchestra.run.trial160.stdout: Installing : xmlstarlet-1.6.1-27.el10.x86_64 3/5 2026-02-22T20:19:52.522 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 4/5 2026-02-22T20:19:53.407 INFO:teuthology.orchestra.run.trial090.stdout:(5/5): ceph-test-20.2.0-794.ga5c3084f.el10.x86_ 39 MB/s | 86 MB 00:02 2026-02-22T20:19:53.408 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:53.408 INFO:teuthology.orchestra.run.trial090.stdout:Total 39 MB/s | 87 MB 00:02 2026-02-22T20:19:53.408 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:19:53.418 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:19:53.418 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:19:53.709 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:19:53.710 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:19:54.026 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:19:54.030 INFO:teuthology.orchestra.run.trial090.stdout: Installing : socat-1.7.4.4-8.el10.x86_64 1/5 2026-02-22T20:19:54.034 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libxslt-1.1.39-8.el10_0.x86_64 2/5 2026-02-22T20:19:54.040 INFO:teuthology.orchestra.run.trial090.stdout: Installing : xmlstarlet-1.6.1-27.el10.x86_64 3/5 2026-02-22T20:19:54.041 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 4/5 2026-02-22T20:19:55.276 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 4/5 2026-02-22T20:19:55.295 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 5/5 2026-02-22T20:19:55.661 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 5/5 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: libxslt-1.1.39-8.el10_0.x86_64 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: socat-1.7.4.4-8.el10.x86_64 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: xmlstarlet-1.6.1-27.el10.x86_64 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:55.662 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:55.671 INFO:teuthology.orchestra.run.trial060.stdout:(5/5): ceph-test-20.2.0-794.ga5c3084f.el10.x86_ 25 MB/s | 86 MB 00:03 2026-02-22T20:19:55.672 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:55.672 INFO:teuthology.orchestra.run.trial060.stdout:Total 25 MB/s | 87 MB 00:03 2026-02-22T20:19:55.672 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:19:55.682 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:19:55.683 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:19:55.697 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph 2026-02-22T20:19:55.972 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:19:55.972 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:19:56.015 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:18 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:19:56.055 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout: ceph x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.6 k 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:19:56.056 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mds x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.4 M 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 997 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-modules-core noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 295 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mon x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 5.2 M 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: ceph-osd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 18 M 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: ledmon-libs x86_64 1.1.0-2.el10 appstream 42 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: libconfig x86_64 1.7.3-10.el10 baseos 72 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: libstoragemgmt x86_64 1.10.1-4.el10 appstream 251 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: lua x86_64 5.4.6-7.el10 appstream 190 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: lua-devel x86_64 5.4.6-7.el10 crb 22 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: luarocks noarch 3.9.2-6.el10_0 epel 152 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: python3-autocommand noarch 2.2.2-9.el10_0 epel 32 k 2026-02-22T20:19:56.057 INFO:teuthology.orchestra.run.trial160.stdout: python3-bcrypt x86_64 4.3.0-3.el10_1 epel 238 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-cffi x86_64 1.16.0-7.el10 baseos 310 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-cheroot noarch 10.0.1-4.el10_0 epel 215 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-cherrypy noarch 18.10.0-4.el10_0 epel 359 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-cryptography x86_64 43.0.0-4.el10 baseos 1.3 M 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-collections 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: noarch 5.1.0-1.el10_0 epel 29 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-context noarch 6.0.1-4.el10_0 epel 21 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-functools noarch 4.0.2-4.el10_0 epel 23 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-text noarch 4.0.0-3.el10_0 epel 29 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-libstoragemgmt x86_64 1.10.1-4.el10 appstream 219 k 2026-02-22T20:19:56.058 INFO:teuthology.orchestra.run.trial160.stdout: python3-more-itertools noarch 10.1.0-8.el10_0 epel 100 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-packaging noarch 24.2-2.el10 baseos 155 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-ply noarch 3.11-25.el10 baseos 137 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-portend noarch 3.2.0-6.el10_0 epel 18 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyOpenSSL noarch 25.0.0-1.el10_1 epel 113 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-pycparser noarch 2.20-16.el10 baseos 160 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-requests noarch 2.32.4-1.el10_0 baseos 160 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-tempora noarch 5.7.0-1.el10_0 epel 37 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-urllib3 noarch 1.26.19-2.el10_1.1 baseos 285 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: python3-zc-lockfile noarch 3.0.post1-11.el10_0 epel 23 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: unzip x86_64 6.0-69.el10 baseos 188 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: zip x86_64 3.0-45.el10 baseos 271 k 2026-02-22T20:19:56.059 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:56.060 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:19:56.060 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:56.060 INFO:teuthology.orchestra.run.trial160.stdout:Install 35 Packages 2026-02-22T20:19:56.060 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:56.061 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 31 M 2026-02-22T20:19:56.061 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 102 M 2026-02-22T20:19:56.061 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:19:56.231 INFO:teuthology.orchestra.run.trial160.stdout:(1/35): ceph-20.2.0-794.ga5c3084f.el10.x86_64.r 70 kB/s | 6.6 kB 00:00 2026-02-22T20:19:56.287 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:19:56.292 INFO:teuthology.orchestra.run.trial060.stdout: Installing : socat-1.7.4.4-8.el10.x86_64 1/5 2026-02-22T20:19:56.295 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libxslt-1.1.39-8.el10_0.x86_64 2/5 2026-02-22T20:19:56.301 INFO:teuthology.orchestra.run.trial060.stdout: Installing : xmlstarlet-1.6.1-27.el10.x86_64 3/5 2026-02-22T20:19:56.302 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 4/5 2026-02-22T20:19:56.334 INFO:teuthology.orchestra.run.trial160.stdout:(2/35): ceph-mgr-20.2.0-794.ga5c3084f.el10.x86_ 4.9 MB/s | 997 kB 00:00 2026-02-22T20:19:56.355 INFO:teuthology.orchestra.run.trial160.stdout:(3/35): ceph-mds-20.2.0-794.ga5c3084f.el10.x86_ 11 MB/s | 2.4 MB 00:00 2026-02-22T20:19:56.392 INFO:teuthology.orchestra.run.trial160.stdout:(4/35): ceph-mgr-modules-core-20.2.0-794.ga5c30 7.9 MB/s | 295 kB 00:00 2026-02-22T20:19:56.430 INFO:teuthology.orchestra.run.trial160.stdout:(5/35): ledmon-libs-1.1.0-2.el10.x86_64.rpm 1.1 MB/s | 42 kB 00:00 2026-02-22T20:19:56.469 INFO:teuthology.orchestra.run.trial160.stdout:(6/35): libstoragemgmt-1.10.1-4.el10.x86_64.rpm 6.3 MB/s | 251 kB 00:00 2026-02-22T20:19:56.487 INFO:teuthology.orchestra.run.trial160.stdout:(7/35): lua-5.4.6-7.el10.x86_64.rpm 10 MB/s | 190 kB 00:00 2026-02-22T20:19:56.507 INFO:teuthology.orchestra.run.trial160.stdout:(8/35): python3-libstoragemgmt-1.10.1-4.el10.x8 11 MB/s | 219 kB 00:00 2026-02-22T20:19:56.523 INFO:teuthology.orchestra.run.trial160.stdout:(9/35): libconfig-1.7.3-10.el10.x86_64.rpm 4.4 MB/s | 72 kB 00:00 2026-02-22T20:19:56.562 INFO:teuthology.orchestra.run.trial160.stdout:(10/35): python3-cffi-1.16.0-7.el10.x86_64.rpm 7.8 MB/s | 310 kB 00:00 2026-02-22T20:19:56.590 INFO:teuthology.orchestra.run.trial160.stdout:(11/35): python3-cryptography-43.0.0-4.el10.x86 49 MB/s | 1.3 MB 00:00 2026-02-22T20:19:56.607 INFO:teuthology.orchestra.run.trial160.stdout:(12/35): python3-packaging-24.2-2.el10.noarch.r 9.2 MB/s | 155 kB 00:00 2026-02-22T20:19:56.624 INFO:teuthology.orchestra.run.trial160.stdout:(13/35): python3-ply-3.11-25.el10.noarch.rpm 7.9 MB/s | 137 kB 00:00 2026-02-22T20:19:56.637 INFO:teuthology.orchestra.run.trial160.stdout:(14/35): ceph-mon-20.2.0-794.ga5c3084f.el10.x86 13 MB/s | 5.2 MB 00:00 2026-02-22T20:19:56.657 INFO:teuthology.orchestra.run.trial160.stdout:(15/35): python3-requests-2.32.4-1.el10_0.noarc 7.9 MB/s | 160 kB 00:00 2026-02-22T20:19:56.660 INFO:teuthology.orchestra.run.trial160.stdout:(16/35): python3-pycparser-2.20-16.el10.noarch. 4.3 MB/s | 160 kB 00:00 2026-02-22T20:19:56.674 INFO:teuthology.orchestra.run.trial160.stdout:(17/35): python3-urllib3-1.26.19-2.el10_1.1.noa 16 MB/s | 285 kB 00:00 2026-02-22T20:19:56.678 INFO:teuthology.orchestra.run.trial160.stdout:(18/35): unzip-6.0-69.el10.x86_64.rpm 10 MB/s | 188 kB 00:00 2026-02-22T20:19:56.691 INFO:teuthology.orchestra.run.trial160.stdout:(19/35): lua-devel-5.4.6-7.el10.x86_64.rpm 1.8 MB/s | 22 kB 00:00 2026-02-22T20:19:56.692 INFO:teuthology.orchestra.run.trial160.stdout:(20/35): zip-3.0-45.el10.x86_64.rpm 15 MB/s | 271 kB 00:00 2026-02-22T20:19:56.774 INFO:teuthology.orchestra.run.trial160.stdout:(21/35): ceph-osd-20.2.0-794.ga5c3084f.el10.x86 40 MB/s | 18 MB 00:00 2026-02-22T20:19:56.789 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 4/5 2026-02-22T20:19:56.809 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 5/5 2026-02-22T20:19:56.813 INFO:teuthology.orchestra.run.trial160.stdout:(22/35): python3-autocommand-2.2.2-9.el10_0.noa 261 kB/s | 32 kB 00:00 2026-02-22T20:19:56.851 INFO:teuthology.orchestra.run.trial160.stdout:(23/35): luarocks-3.9.2-6.el10_0.noarch.rpm 944 kB/s | 152 kB 00:00 2026-02-22T20:19:56.871 INFO:teuthology.orchestra.run.trial160.stdout:(24/35): python3-cheroot-10.0.1-4.el10_0.noarch 3.6 MB/s | 215 kB 00:00 2026-02-22T20:19:56.891 INFO:teuthology.orchestra.run.trial160.stdout:(25/35): python3-cherrypy-18.10.0-4.el10_0.noar 8.9 MB/s | 359 kB 00:00 2026-02-22T20:19:56.892 INFO:teuthology.orchestra.run.trial160.stdout:(26/35): python3-jaraco-collections-5.1.0-1.el1 1.4 MB/s | 29 kB 00:00 2026-02-22T20:19:56.911 INFO:teuthology.orchestra.run.trial160.stdout:(27/35): python3-jaraco-context-6.0.1-4.el10_0. 1.1 MB/s | 21 kB 00:00 2026-02-22T20:19:56.911 INFO:teuthology.orchestra.run.trial160.stdout:(28/35): python3-jaraco-functools-4.0.2-4.el10_ 1.1 MB/s | 23 kB 00:00 2026-02-22T20:19:56.929 INFO:teuthology.orchestra.run.trial160.stdout:(29/35): python3-bcrypt-4.3.0-3.el10_1.x86_64.r 1.5 MB/s | 238 kB 00:00 2026-02-22T20:19:56.930 INFO:teuthology.orchestra.run.trial160.stdout:(30/35): python3-jaraco-text-4.0.0-3.el10_0.noa 1.4 MB/s | 29 kB 00:00 2026-02-22T20:19:56.931 INFO:teuthology.orchestra.run.trial160.stdout:(31/35): python3-more-itertools-10.1.0-8.el10_0 4.9 MB/s | 100 kB 00:00 2026-02-22T20:19:56.949 INFO:teuthology.orchestra.run.trial160.stdout:(32/35): python3-portend-3.2.0-6.el10_0.noarch. 894 kB/s | 18 kB 00:00 2026-02-22T20:19:56.950 INFO:teuthology.orchestra.run.trial160.stdout:(33/35): python3-pyOpenSSL-25.0.0-1.el10_1.noar 5.6 MB/s | 113 kB 00:00 2026-02-22T20:19:56.951 INFO:teuthology.orchestra.run.trial160.stdout:(34/35): python3-tempora-5.7.0-1.el10_0.noarch. 1.8 MB/s | 37 kB 00:00 2026-02-22T20:19:56.969 INFO:teuthology.orchestra.run.trial160.stdout:(35/35): python3-zc-lockfile-3.0.post1-11.el10_ 1.1 MB/s | 23 kB 00:00 2026-02-22T20:19:56.970 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:56.970 INFO:teuthology.orchestra.run.trial160.stdout:Total 34 MB/s | 31 MB 00:00 2026-02-22T20:19:56.970 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:19:56.989 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:19:56.989 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:19:57.132 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:19:57.132 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:19:57.156 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 5/5 2026-02-22T20:19:57.156 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:57.156 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:19:57.156 INFO:teuthology.orchestra.run.trial090.stdout: ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:57.157 INFO:teuthology.orchestra.run.trial090.stdout: libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:57.157 INFO:teuthology.orchestra.run.trial090.stdout: libxslt-1.1.39-8.el10_0.x86_64 2026-02-22T20:19:57.157 INFO:teuthology.orchestra.run.trial090.stdout: socat-1.7.4.4-8.el10.x86_64 2026-02-22T20:19:57.157 INFO:teuthology.orchestra.run.trial090.stdout: xmlstarlet-1.6.1-27.el10.x86_64 2026-02-22T20:19:57.157 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:57.157 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:19:57.193 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph 2026-02-22T20:19:57.301 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:19:57.303 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-more-itertools-10.1.0-8.el10_0.noarch 1/35 2026-02-22T20:19:57.307 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-jaraco-functools-4.0.2-4.el10_0.noarch 2/35 2026-02-22T20:19:57.310 INFO:teuthology.orchestra.run.trial160.stdout: Installing : unzip-6.0-69.el10.x86_64 3/35 2026-02-22T20:19:57.312 INFO:teuthology.orchestra.run.trial160.stdout: Installing : lua-5.4.6-7.el10.x86_64 4/35 2026-02-22T20:19:57.313 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ledmon-libs-1.1.0-2.el10.x86_64 5/35 2026-02-22T20:19:57.317 INFO:teuthology.orchestra.run.trial160.stdout: Installing : lua-devel-5.4.6-7.el10.x86_64 6/35 2026-02-22T20:19:57.326 INFO:teuthology.orchestra.run.trial160.stdout: Installing : zip-3.0-45.el10.x86_64 7/35 2026-02-22T20:19:57.330 INFO:teuthology.orchestra.run.trial160.stdout: Installing : luarocks-3.9.2-6.el10_0.noarch 8/35 2026-02-22T20:19:57.331 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-tempora-5.7.0-1.el10_0.noarch 9/35 2026-02-22T20:19:57.334 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-portend-3.2.0-6.el10_0.noarch 10/35 2026-02-22T20:19:57.336 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-zc-lockfile-3.0.post1-11.el10_0.noarch 11/35 2026-02-22T20:19:57.339 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-jaraco-context-6.0.1-4.el10_0.noarch 12/35 2026-02-22T20:19:57.341 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-bcrypt-4.3.0-3.el10_1.x86_64 13/35 2026-02-22T20:19:57.344 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-autocommand-2.2.2-9.el10_0.noarch 14/35 2026-02-22T20:19:57.346 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-jaraco-text-4.0.0-3.el10_0.noarch 15/35 2026-02-22T20:19:57.356 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-jaraco-collections-5.1.0-1.el10_0.noarch 16/35 2026-02-22T20:19:57.361 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-urllib3-1.26.19-2.el10_1.1.noarch 17/35 2026-02-22T20:19:57.364 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-requests-2.32.4-1.el10_0.noarch 18/35 2026-02-22T20:19:57.370 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-ply-3.11-25.el10.noarch 19/35 2026-02-22T20:19:57.377 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-pycparser-2.20-16.el10.noarch 20/35 2026-02-22T20:19:57.408 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-cffi-1.16.0-7.el10.x86_64 21/35 2026-02-22T20:19:57.414 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-cryptography-43.0.0-4.el10.x86_64 22/35 2026-02-22T20:19:57.422 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-pyOpenSSL-25.0.0-1.el10_1.noarch 23/35 2026-02-22T20:19:57.434 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-cheroot-10.0.1-4.el10_0.noarch 24/35 2026-02-22T20:19:57.440 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-cherrypy-18.10.0-4.el10_0.noarch 25/35 2026-02-22T20:19:57.463 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-packaging-24.2-2.el10.noarch 26/35 2026-02-22T20:19:57.483 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:18 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:19:57.496 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-794.ga5c3084f.el10. 27/35 2026-02-22T20:19:57.497 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 28/35 2026-02-22T20:19:57.521 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 28/35 2026-02-22T20:19:57.521 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:57.521 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-22T20:19:57.521 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mgr.target' → '/usr/lib/systemd/system/ceph-mgr.target'. 2026-02-22T20:19:57.521 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mgr.target' → '/usr/lib/systemd/system/ceph-mgr.target'. 2026-02-22T20:19:57.521 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:57.522 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:19:57.523 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ceph x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.6 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mds x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.4 M 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 997 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-modules-core noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 295 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mon x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 5.2 M 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ceph-osd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 18 M 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: ledmon-libs x86_64 1.1.0-2.el10 appstream 42 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: libconfig x86_64 1.7.3-10.el10 baseos 72 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: libstoragemgmt x86_64 1.10.1-4.el10 appstream 251 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: lua x86_64 5.4.6-7.el10 appstream 190 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: lua-devel x86_64 5.4.6-7.el10 crb 22 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: luarocks noarch 3.9.2-6.el10_0 epel 152 k 2026-02-22T20:19:57.524 INFO:teuthology.orchestra.run.trial090.stdout: python3-autocommand noarch 2.2.2-9.el10_0 epel 32 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-bcrypt x86_64 4.3.0-3.el10_1 epel 238 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-cffi x86_64 1.16.0-7.el10 baseos 310 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-cheroot noarch 10.0.1-4.el10_0 epel 215 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-cherrypy noarch 18.10.0-4.el10_0 epel 359 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-cryptography x86_64 43.0.0-4.el10 baseos 1.3 M 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-collections 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: noarch 5.1.0-1.el10_0 epel 29 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-context noarch 6.0.1-4.el10_0 epel 21 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-functools noarch 4.0.2-4.el10_0 epel 23 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-text noarch 4.0.0-3.el10_0 epel 29 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-libstoragemgmt x86_64 1.10.1-4.el10 appstream 219 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-more-itertools noarch 10.1.0-8.el10_0 epel 100 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-packaging noarch 24.2-2.el10 baseos 155 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-ply noarch 3.11-25.el10 baseos 137 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-portend noarch 3.2.0-6.el10_0 epel 18 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyOpenSSL noarch 25.0.0-1.el10_1 epel 113 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-pycparser noarch 2.20-16.el10 baseos 160 k 2026-02-22T20:19:57.525 INFO:teuthology.orchestra.run.trial090.stdout: python3-requests noarch 2.32.4-1.el10_0 baseos 160 k 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: python3-tempora noarch 5.7.0-1.el10_0 epel 37 k 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: python3-urllib3 noarch 1.26.19-2.el10_1.1 baseos 285 k 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: python3-zc-lockfile noarch 3.0.post1-11.el10_0 epel 23 k 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: unzip x86_64 6.0-69.el10 baseos 188 k 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: zip x86_64 3.0-45.el10 baseos 271 k 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout:Install 35 Packages 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:57.526 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libconfig-1.7.3-10.el10.x86_64 29/35 2026-02-22T20:19:57.527 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 31 M 2026-02-22T20:19:57.527 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 102 M 2026-02-22T20:19:57.527 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:19:57.544 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:19:57.544 INFO:teuthology.orchestra.run.trial160.stdout:Creating group 'libstoragemgmt' with GID 992. 2026-02-22T20:19:57.544 INFO:teuthology.orchestra.run.trial160.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 992 and GID 992. 2026-02-22T20:19:57.544 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:57.550 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:19:57.574 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:19:57.574 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service' → '/usr/lib/systemd/system/libstoragemgmt.service'. 2026-02-22T20:19:57.574 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:57.752 INFO:teuthology.orchestra.run.trial090.stdout:(1/35): ceph-20.2.0-794.ga5c3084f.el10.x86_64.r 44 kB/s | 6.6 kB 00:00 2026-02-22T20:19:58.082 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-libstoragemgmt-1.10.1-4.el10.x86_64 31/35 2026-02-22T20:19:58.083 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 32/35 2026-02-22T20:19:58.109 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 32/35 2026-02-22T20:19:58.109 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:58.110 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-22T20:19:58.110 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-osd.target' → '/usr/lib/systemd/system/ceph-osd.target'. 2026-02-22T20:19:58.110 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-osd.target' → '/usr/lib/systemd/system/ceph-osd.target'. 2026-02-22T20:19:58.110 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:58.270 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 33/35 2026-02-22T20:19:58.292 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 33/35 2026-02-22T20:19:58.293 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:58.293 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-22T20:19:58.293 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mon.target' → '/usr/lib/systemd/system/ceph-mon.target'. 2026-02-22T20:19:58.293 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mon.target' → '/usr/lib/systemd/system/ceph-mon.target'. 2026-02-22T20:19:58.293 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:58.363 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 34/35 2026-02-22T20:19:58.384 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 34/35 2026-02-22T20:19:58.384 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:58.384 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-22T20:19:58.384 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mds.target' → '/usr/lib/systemd/system/ceph-mds.target'. 2026-02-22T20:19:58.384 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mds.target' → '/usr/lib/systemd/system/ceph-mds.target'. 2026-02-22T20:19:58.384 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:58.403 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 35/35 2026-02-22T20:19:58.444 INFO:teuthology.orchestra.run.trial090.stdout:(2/35): ceph-mgr-20.2.0-794.ga5c3084f.el10.x86_ 1.2 MB/s | 997 kB 00:00 2026-02-22T20:19:58.586 INFO:teuthology.orchestra.run.trial090.stdout:(3/35): ceph-mon-20.2.0-794.ga5c3084f.el10.x86_ 6.2 MB/s | 5.2 MB 00:00 2026-02-22T20:19:58.590 INFO:teuthology.orchestra.run.trial090.stdout:(4/35): ceph-mds-20.2.0-794.ga5c3084f.el10.x86_ 2.4 MB/s | 2.4 MB 00:00 2026-02-22T20:19:58.599 INFO:teuthology.orchestra.run.trial090.stdout:(5/35): ceph-mgr-modules-core-20.2.0-794.ga5c30 23 MB/s | 295 kB 00:00 2026-02-22T20:19:58.625 INFO:teuthology.orchestra.run.trial090.stdout:(6/35): ledmon-libs-1.1.0-2.el10.x86_64.rpm 1.2 MB/s | 42 kB 00:00 2026-02-22T20:19:58.637 INFO:teuthology.orchestra.run.trial090.stdout:(7/35): libstoragemgmt-1.10.1-4.el10.x86_64.rpm 6.4 MB/s | 251 kB 00:00 2026-02-22T20:19:58.646 INFO:teuthology.orchestra.run.trial090.stdout:(8/35): lua-5.4.6-7.el10.x86_64.rpm 8.9 MB/s | 190 kB 00:00 2026-02-22T20:19:58.655 INFO:teuthology.orchestra.run.trial090.stdout:(9/35): python3-libstoragemgmt-1.10.1-4.el10.x8 12 MB/s | 219 kB 00:00 2026-02-22T20:19:58.669 INFO:teuthology.orchestra.run.trial090.stdout:(10/35): libconfig-1.7.3-10.el10.x86_64.rpm 3.1 MB/s | 72 kB 00:00 2026-02-22T20:19:58.676 INFO:teuthology.orchestra.run.trial090.stdout:(11/35): python3-cffi-1.16.0-7.el10.x86_64.rpm 15 MB/s | 310 kB 00:00 2026-02-22T20:19:58.696 INFO:teuthology.orchestra.run.trial090.stdout:(12/35): python3-packaging-24.2-2.el10.noarch.r 7.6 MB/s | 155 kB 00:00 2026-02-22T20:19:58.704 INFO:teuthology.orchestra.run.trial090.stdout:(13/35): python3-cryptography-43.0.0-4.el10.x86 39 MB/s | 1.3 MB 00:00 2026-02-22T20:19:58.713 INFO:teuthology.orchestra.run.trial090.stdout:(14/35): python3-ply-3.11-25.el10.noarch.rpm 8.1 MB/s | 137 kB 00:00 2026-02-22T20:19:58.720 INFO:teuthology.orchestra.run.trial090.stdout:(15/35): python3-pycparser-2.20-16.el10.noarch. 9.9 MB/s | 160 kB 00:00 2026-02-22T20:19:58.729 INFO:teuthology.orchestra.run.trial090.stdout:(16/35): python3-requests-2.32.4-1.el10_0.noarc 9.3 MB/s | 160 kB 00:00 2026-02-22T20:19:58.737 INFO:teuthology.orchestra.run.trial090.stdout:(17/35): python3-urllib3-1.26.19-2.el10_1.1.noa 16 MB/s | 285 kB 00:00 2026-02-22T20:19:58.747 INFO:teuthology.orchestra.run.trial090.stdout:(18/35): unzip-6.0-69.el10.x86_64.rpm 10 MB/s | 188 kB 00:00 2026-02-22T20:19:58.754 INFO:teuthology.orchestra.run.trial090.stdout:(19/35): zip-3.0-45.el10.x86_64.rpm 16 MB/s | 271 kB 00:00 2026-02-22T20:19:58.762 INFO:teuthology.orchestra.run.trial090.stdout:(20/35): lua-devel-5.4.6-7.el10.x86_64.rpm 1.5 MB/s | 22 kB 00:00 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 35/35 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-modules-core-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:19:58.819 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: ledmon-libs-1.1.0-2.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: libconfig-1.7.3-10.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: libstoragemgmt-1.10.1-4.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: lua-5.4.6-7.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: lua-devel-5.4.6-7.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: luarocks-3.9.2-6.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-autocommand-2.2.2-9.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-bcrypt-4.3.0-3.el10_1.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-cffi-1.16.0-7.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-cheroot-10.0.1-4.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-cherrypy-18.10.0-4.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-cryptography-43.0.0-4.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-collections-5.1.0-1.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-context-6.0.1-4.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-functools-4.0.2-4.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-jaraco-text-4.0.0-3.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-libstoragemgmt-1.10.1-4.el10.x86_64 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-more-itertools-10.1.0-8.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-packaging-24.2-2.el10.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-ply-3.11-25.el10.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-portend-3.2.0-6.el10_0.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyOpenSSL-25.0.0-1.el10_1.noarch 2026-02-22T20:19:58.820 INFO:teuthology.orchestra.run.trial160.stdout: python3-pycparser-2.20-16.el10.noarch 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: python3-requests-2.32.4-1.el10_0.noarch 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: python3-tempora-5.7.0-1.el10_0.noarch 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: python3-urllib3-1.26.19-2.el10_1.1.noarch 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: python3-zc-lockfile-3.0.post1-11.el10_0.noarch 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: unzip-6.0-69.el10.x86_64 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: zip-3.0-45.el10.x86_64 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:58.821 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:58.853 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-base 2026-02-22T20:19:58.900 INFO:teuthology.orchestra.run.trial090.stdout:(21/35): python3-autocommand-2.2.2-9.el10_0.noa 229 kB/s | 32 kB 00:00 2026-02-22T20:19:58.963 INFO:teuthology.orchestra.run.trial090.stdout:(22/35): luarocks-3.9.2-6.el10_0.noarch.rpm 727 kB/s | 152 kB 00:00 2026-02-22T20:19:59.020 INFO:teuthology.orchestra.run.trial090.stdout:(23/35): ceph-osd-20.2.0-794.ga5c3084f.el10.x86 30 MB/s | 18 MB 00:00 2026-02-22T20:19:59.021 INFO:teuthology.orchestra.run.trial090.stdout:(24/35): python3-bcrypt-4.3.0-3.el10_1.x86_64.r 1.9 MB/s | 238 kB 00:00 2026-02-22T20:19:59.028 INFO:teuthology.orchestra.run.trial090.stdout:(25/35): python3-cheroot-10.0.1-4.el10_0.noarch 3.2 MB/s | 215 kB 00:00 2026-02-22T20:19:59.051 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 4/5 2026-02-22T20:19:59.059 INFO:teuthology.orchestra.run.trial090.stdout:(26/35): python3-jaraco-context-6.0.1-4.el10_0. 696 kB/s | 21 kB 00:00 2026-02-22T20:19:59.070 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 5/5 2026-02-22T20:19:59.086 INFO:teuthology.orchestra.run.trial090.stdout:(27/35): python3-cherrypy-18.10.0-4.el10_0.noar 5.3 MB/s | 359 kB 00:00 2026-02-22T20:19:59.090 INFO:teuthology.orchestra.run.trial090.stdout:(28/35): python3-jaraco-functools-4.0.2-4.el10_ 746 kB/s | 23 kB 00:00 2026-02-22T20:19:59.117 INFO:teuthology.orchestra.run.trial090.stdout:(29/35): python3-jaraco-text-4.0.0-3.el10_0.noa 960 kB/s | 29 kB 00:00 2026-02-22T20:19:59.125 INFO:teuthology.orchestra.run.trial090.stdout:(30/35): python3-more-itertools-10.1.0-8.el10_0 2.8 MB/s | 100 kB 00:00 2026-02-22T20:19:59.140 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:21 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:19:59.147 INFO:teuthology.orchestra.run.trial090.stdout:(31/35): python3-portend-3.2.0-6.el10_0.noarch. 588 kB/s | 18 kB 00:00 2026-02-22T20:19:59.150 INFO:teuthology.orchestra.run.trial090.stdout:(32/35): python3-jaraco-collections-5.1.0-1.el1 224 kB/s | 29 kB 00:00 2026-02-22T20:19:59.161 INFO:teuthology.orchestra.run.trial090.stdout:(33/35): python3-pyOpenSSL-25.0.0-1.el10_1.noar 3.1 MB/s | 113 kB 00:00 2026-02-22T20:19:59.168 INFO:teuthology.orchestra.run.trial160.stdout:Package ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:19:59.177 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:59.177 INFO:teuthology.orchestra.run.trial090.stdout:(34/35): python3-tempora-5.7.0-1.el10_0.noarch. 1.2 MB/s | 37 kB 00:00 2026-02-22T20:19:59.178 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:19:59.178 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:59.196 INFO:teuthology.orchestra.run.trial090.stdout:(35/35): python3-zc-lockfile-3.0.post1-11.el10_ 502 kB/s | 23 kB 00:00 2026-02-22T20:19:59.197 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install cephadm 2026-02-22T20:19:59.197 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:59.197 INFO:teuthology.orchestra.run.trial090.stdout:Total 19 MB/s | 31 MB 00:01 2026-02-22T20:19:59.197 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:19:59.216 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:19:59.216 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:19:59.361 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:19:59.361 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:19:59.419 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 5/5 2026-02-22T20:19:59.419 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout: ceph-test-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout: libcephsqlite-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout: libxslt-1.1.39-8.el10_0.x86_64 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout: socat-1.7.4.4-8.el10.x86_64 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout: xmlstarlet-1.6.1-27.el10.x86_64 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:59.420 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:19:59.456 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph 2026-02-22T20:19:59.487 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:21 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:19:59.524 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:19:59.525 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:59.525 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:19:59.525 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:59.525 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout: cephadm noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 1.3 M 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 1.3 M 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 1.3 M 2026-02-22T20:19:59.526 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:19:59.530 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:19:59.533 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-more-itertools-10.1.0-8.el10_0.noarch 1/35 2026-02-22T20:19:59.536 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-jaraco-functools-4.0.2-4.el10_0.noarch 2/35 2026-02-22T20:19:59.539 INFO:teuthology.orchestra.run.trial090.stdout: Installing : unzip-6.0-69.el10.x86_64 3/35 2026-02-22T20:19:59.541 INFO:teuthology.orchestra.run.trial090.stdout: Installing : lua-5.4.6-7.el10.x86_64 4/35 2026-02-22T20:19:59.542 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ledmon-libs-1.1.0-2.el10.x86_64 5/35 2026-02-22T20:19:59.546 INFO:teuthology.orchestra.run.trial090.stdout: Installing : lua-devel-5.4.6-7.el10.x86_64 6/35 2026-02-22T20:19:59.555 INFO:teuthology.orchestra.run.trial090.stdout: Installing : zip-3.0-45.el10.x86_64 7/35 2026-02-22T20:19:59.559 INFO:teuthology.orchestra.run.trial090.stdout: Installing : luarocks-3.9.2-6.el10_0.noarch 8/35 2026-02-22T20:19:59.561 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-tempora-5.7.0-1.el10_0.noarch 9/35 2026-02-22T20:19:59.563 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-portend-3.2.0-6.el10_0.noarch 10/35 2026-02-22T20:19:59.565 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-zc-lockfile-3.0.post1-11.el10_0.noarch 11/35 2026-02-22T20:19:59.568 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-jaraco-context-6.0.1-4.el10_0.noarch 12/35 2026-02-22T20:19:59.571 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-bcrypt-4.3.0-3.el10_1.x86_64 13/35 2026-02-22T20:19:59.573 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-autocommand-2.2.2-9.el10_0.noarch 14/35 2026-02-22T20:19:59.575 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-jaraco-text-4.0.0-3.el10_0.noarch 15/35 2026-02-22T20:19:59.585 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-jaraco-collections-5.1.0-1.el10_0.noarch 16/35 2026-02-22T20:19:59.590 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-urllib3-1.26.19-2.el10_1.1.noarch 17/35 2026-02-22T20:19:59.593 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-requests-2.32.4-1.el10_0.noarch 18/35 2026-02-22T20:19:59.599 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-ply-3.11-25.el10.noarch 19/35 2026-02-22T20:19:59.606 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-pycparser-2.20-16.el10.noarch 20/35 2026-02-22T20:19:59.637 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-cffi-1.16.0-7.el10.x86_64 21/35 2026-02-22T20:19:59.643 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-cryptography-43.0.0-4.el10.x86_64 22/35 2026-02-22T20:19:59.644 INFO:teuthology.orchestra.run.trial160.stdout:cephadm-20.2.0-794.ga5c3084f.el10.noarch.rpm 11 MB/s | 1.3 MB 00:00 2026-02-22T20:19:59.644 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:19:59.644 INFO:teuthology.orchestra.run.trial160.stdout:Total 11 MB/s | 1.3 MB 00:00 2026-02-22T20:19:59.644 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:19:59.647 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:19:59.647 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:19:59.652 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-pyOpenSSL-25.0.0-1.el10_1.noarch 23/35 2026-02-22T20:19:59.652 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:19:59.652 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:19:59.663 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-cheroot-10.0.1-4.el10_0.noarch 24/35 2026-02-22T20:19:59.669 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-cherrypy-18.10.0-4.el10_0.noarch 25/35 2026-02-22T20:19:59.673 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:19:59.693 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-packaging-24.2-2.el10.noarch 26/35 2026-02-22T20:19:59.711 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:19:59.725 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-794.ga5c3084f.el10. 27/35 2026-02-22T20:19:59.726 INFO:teuthology.orchestra.run.trial160.stdout: Installing : cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:19:59.727 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 28/35 2026-02-22T20:19:59.747 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:20 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:19:59.750 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 28/35 2026-02-22T20:19:59.751 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:19:59.751 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-22T20:19:59.751 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mgr.target' → '/usr/lib/systemd/system/ceph-mgr.target'. 2026-02-22T20:19:59.751 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mgr.target' → '/usr/lib/systemd/system/ceph-mgr.target'. 2026-02-22T20:19:59.751 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:59.755 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libconfig-1.7.3-10.el10.x86_64 29/35 2026-02-22T20:19:59.774 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:19:59.774 INFO:teuthology.orchestra.run.trial090.stdout:Creating group 'libstoragemgmt' with GID 992. 2026-02-22T20:19:59.774 INFO:teuthology.orchestra.run.trial090.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 992 and GID 992. 2026-02-22T20:19:59.774 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:59.780 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:19:59.783 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: ceph x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 6.6 k 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mds x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.4 M 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 997 k 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-modules-core noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 295 k 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mon x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 5.2 M 2026-02-22T20:19:59.785 INFO:teuthology.orchestra.run.trial060.stdout: ceph-osd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 18 M 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: ledmon-libs x86_64 1.1.0-2.el10 appstream 42 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: libconfig x86_64 1.7.3-10.el10 baseos 72 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: libstoragemgmt x86_64 1.10.1-4.el10 appstream 251 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: lua x86_64 5.4.6-7.el10 appstream 190 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: lua-devel x86_64 5.4.6-7.el10 crb 22 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: luarocks noarch 3.9.2-6.el10_0 epel 152 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: python3-autocommand noarch 2.2.2-9.el10_0 epel 32 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: python3-bcrypt x86_64 4.3.0-3.el10_1 epel 238 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: python3-cffi x86_64 1.16.0-7.el10 baseos 310 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: python3-cheroot noarch 10.0.1-4.el10_0 epel 215 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: python3-cherrypy noarch 18.10.0-4.el10_0 epel 359 k 2026-02-22T20:19:59.786 INFO:teuthology.orchestra.run.trial060.stdout: python3-cryptography x86_64 43.0.0-4.el10 baseos 1.3 M 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-collections 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: noarch 5.1.0-1.el10_0 epel 29 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-context noarch 6.0.1-4.el10_0 epel 21 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-functools noarch 4.0.2-4.el10_0 epel 23 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-text noarch 4.0.0-3.el10_0 epel 29 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-libstoragemgmt x86_64 1.10.1-4.el10 appstream 219 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-more-itertools noarch 10.1.0-8.el10_0 epel 100 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-packaging noarch 24.2-2.el10 baseos 155 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-ply noarch 3.11-25.el10 baseos 137 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-portend noarch 3.2.0-6.el10_0 epel 18 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyOpenSSL noarch 25.0.0-1.el10_1 epel 113 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-pycparser noarch 2.20-16.el10 baseos 160 k 2026-02-22T20:19:59.787 INFO:teuthology.orchestra.run.trial060.stdout: python3-requests noarch 2.32.4-1.el10_0 baseos 160 k 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: python3-tempora noarch 5.7.0-1.el10_0 epel 37 k 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: python3-urllib3 noarch 1.26.19-2.el10_1.1 baseos 285 k 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: python3-zc-lockfile noarch 3.0.post1-11.el10_0 epel 23 k 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: unzip x86_64 6.0-69.el10 baseos 188 k 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: zip x86_64 3.0-45.el10 baseos 271 k 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout:Install 35 Packages 2026-02-22T20:19:59.788 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:19:59.789 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 31 M 2026-02-22T20:19:59.789 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 102 M 2026-02-22T20:19:59.789 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:19:59.803 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:19:59.803 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service' → '/usr/lib/systemd/system/libstoragemgmt.service'. 2026-02-22T20:19:59.803 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:19:59.825 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:19:59.825 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:59.825 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:19:59.825 INFO:teuthology.orchestra.run.trial160.stdout: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:19:59.825 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:19:59.825 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:19:59.851 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-immutable-object-cache 2026-02-22T20:19:59.915 INFO:teuthology.orchestra.run.trial060.stdout:(1/35): ceph-20.2.0-794.ga5c3084f.el10.x86_64.r 138 kB/s | 6.6 kB 00:00 2026-02-22T20:19:59.998 INFO:teuthology.orchestra.run.trial060.stdout:(2/35): ceph-mgr-20.2.0-794.ga5c3084f.el10.x86_ 7.5 MB/s | 997 kB 00:00 2026-02-22T20:20:00.063 INFO:teuthology.orchestra.run.trial060.stdout:(3/35): ceph-mds-20.2.0-794.ga5c3084f.el10.x86_ 12 MB/s | 2.4 MB 00:00 2026-02-22T20:20:00.089 INFO:teuthology.orchestra.run.trial060.stdout:(4/35): ceph-mgr-modules-core-20.2.0-794.ga5c30 11 MB/s | 295 kB 00:00 2026-02-22T20:20:00.121 INFO:teuthology.orchestra.run.trial060.stdout:(5/35): ledmon-libs-1.1.0-2.el10.x86_64.rpm 1.3 MB/s | 42 kB 00:00 2026-02-22T20:20:00.145 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:22 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:00.152 INFO:teuthology.orchestra.run.trial060.stdout:(6/35): libstoragemgmt-1.10.1-4.el10.x86_64.rpm 7.9 MB/s | 251 kB 00:00 2026-02-22T20:20:00.173 INFO:teuthology.orchestra.run.trial060.stdout:(7/35): ceph-mon-20.2.0-794.ga5c3084f.el10.x86_ 20 MB/s | 5.2 MB 00:00 2026-02-22T20:20:00.176 INFO:teuthology.orchestra.run.trial060.stdout:(8/35): lua-5.4.6-7.el10.x86_64.rpm 7.8 MB/s | 190 kB 00:00 2026-02-22T20:20:00.185 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repo Size 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 155 k 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:00.186 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:00.187 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:20:00.187 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:00.187 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 155 k 2026-02-22T20:20:00.187 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 441 k 2026-02-22T20:20:00.187 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:00.193 INFO:teuthology.orchestra.run.trial060.stdout:(9/35): libconfig-1.7.3-10.el10.x86_64.rpm 4.3 MB/s | 72 kB 00:00 2026-02-22T20:20:00.207 INFO:teuthology.orchestra.run.trial060.stdout:(10/35): python3-libstoragemgmt-1.10.1-4.el10.x 6.2 MB/s | 219 kB 00:00 2026-02-22T20:20:00.214 INFO:teuthology.orchestra.run.trial060.stdout:(11/35): python3-cffi-1.16.0-7.el10.x86_64.rpm 14 MB/s | 310 kB 00:00 2026-02-22T20:20:00.287 INFO:teuthology.orchestra.run.trial060.stdout:(12/35): python3-packaging-24.2-2.el10.noarch.r 2.1 MB/s | 155 kB 00:00 2026-02-22T20:20:00.296 INFO:teuthology.orchestra.run.trial160.stdout:ceph-immutable-object-cache-20.2.0-794.ga5c3084 1.4 MB/s | 155 kB 00:00 2026-02-22T20:20:00.297 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:00.297 INFO:teuthology.orchestra.run.trial160.stdout:Total 1.4 MB/s | 155 kB 00:00 2026-02-22T20:20:00.297 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:00.301 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:00.301 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:00.304 INFO:teuthology.orchestra.run.trial060.stdout:(13/35): python3-ply-3.11-25.el10.noarch.rpm 8.0 MB/s | 137 kB 00:00 2026-02-22T20:20:00.313 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-libstoragemgmt-1.10.1-4.el10.x86_64 31/35 2026-02-22T20:20:00.315 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 32/35 2026-02-22T20:20:00.320 INFO:teuthology.orchestra.run.trial060.stdout:(14/35): python3-pycparser-2.20-16.el10.noarch. 9.7 MB/s | 160 kB 00:00 2026-02-22T20:20:00.327 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:00.327 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:00.337 INFO:teuthology.orchestra.run.trial060.stdout:(15/35): python3-requests-2.32.4-1.el10_0.noarc 9.3 MB/s | 160 kB 00:00 2026-02-22T20:20:00.342 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 32/35 2026-02-22T20:20:00.342 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:00.342 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-22T20:20:00.342 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-osd.target' → '/usr/lib/systemd/system/ceph-osd.target'. 2026-02-22T20:20:00.342 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-osd.target' → '/usr/lib/systemd/system/ceph-osd.target'. 2026-02-22T20:20:00.343 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:00.354 INFO:teuthology.orchestra.run.trial060.stdout:(16/35): python3-cryptography-43.0.0-4.el10.x86 9.2 MB/s | 1.3 MB 00:00 2026-02-22T20:20:00.359 INFO:teuthology.orchestra.run.trial060.stdout:(17/35): python3-urllib3-1.26.19-2.el10_1.1.noa 13 MB/s | 285 kB 00:00 2026-02-22T20:20:00.372 INFO:teuthology.orchestra.run.trial060.stdout:(18/35): unzip-6.0-69.el10.x86_64.rpm 9.8 MB/s | 188 kB 00:00 2026-02-22T20:20:00.375 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:00.376 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.e 1/1 2026-02-22T20:20:00.377 INFO:teuthology.orchestra.run.trial060.stdout:(19/35): zip-3.0-45.el10.x86_64.rpm 15 MB/s | 271 kB 00:00 2026-02-22T20:20:00.386 INFO:teuthology.orchestra.run.trial060.stdout:(20/35): lua-devel-5.4.6-7.el10.x86_64.rpm 1.6 MB/s | 22 kB 00:00 2026-02-22T20:20:00.401 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.e 1/1 2026-02-22T20:20:00.401 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:00.401 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-22T20:20:00.402 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:00.424 INFO:teuthology.orchestra.run.trial060.stdout:(21/35): ceph-osd-20.2.0-794.ga5c3084f.el10.x86 41 MB/s | 18 MB 00:00 2026-02-22T20:20:00.494 INFO:teuthology.orchestra.run.trial060.stdout:(22/35): python3-autocommand-2.2.2-9.el10_0.noa 293 kB/s | 32 kB 00:00 2026-02-22T20:20:00.505 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 33/35 2026-02-22T20:20:00.529 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 33/35 2026-02-22T20:20:00.529 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:00.529 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-22T20:20:00.529 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mon.target' → '/usr/lib/systemd/system/ceph-mon.target'. 2026-02-22T20:20:00.529 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mon.target' → '/usr/lib/systemd/system/ceph-mon.target'. 2026-02-22T20:20:00.529 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:00.543 INFO:teuthology.orchestra.run.trial060.stdout:(23/35): luarocks-3.9.2-6.el10_0.noarch.rpm 919 kB/s | 152 kB 00:00 2026-02-22T20:20:00.570 INFO:teuthology.orchestra.run.trial060.stdout:(24/35): python3-cheroot-10.0.1-4.el10_0.noarch 2.8 MB/s | 215 kB 00:00 2026-02-22T20:20:00.580 INFO:teuthology.orchestra.run.trial060.stdout:(25/35): python3-bcrypt-4.3.0-3.el10_1.x86_64.r 1.5 MB/s | 238 kB 00:00 2026-02-22T20:20:00.590 INFO:teuthology.orchestra.run.trial060.stdout:(26/35): python3-jaraco-collections-5.1.0-1.el1 1.4 MB/s | 29 kB 00:00 2026-02-22T20:20:00.599 INFO:teuthology.orchestra.run.trial060.stdout:(27/35): python3-cherrypy-18.10.0-4.el10_0.noar 6.2 MB/s | 359 kB 00:00 2026-02-22T20:20:00.601 INFO:teuthology.orchestra.run.trial060.stdout:(28/35): python3-jaraco-context-6.0.1-4.el10_0. 1.0 MB/s | 21 kB 00:00 2026-02-22T20:20:00.603 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 34/35 2026-02-22T20:20:00.610 INFO:teuthology.orchestra.run.trial060.stdout:(29/35): python3-jaraco-functools-4.0.2-4.el10_ 1.1 MB/s | 23 kB 00:00 2026-02-22T20:20:00.619 INFO:teuthology.orchestra.run.trial060.stdout:(30/35): python3-jaraco-text-4.0.0-3.el10_0.noa 1.4 MB/s | 29 kB 00:00 2026-02-22T20:20:00.626 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 34/35 2026-02-22T20:20:00.626 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:00.626 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-22T20:20:00.626 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mds.target' → '/usr/lib/systemd/system/ceph-mds.target'. 2026-02-22T20:20:00.626 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mds.target' → '/usr/lib/systemd/system/ceph-mds.target'. 2026-02-22T20:20:00.626 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:00.627 INFO:teuthology.orchestra.run.trial060.stdout:(31/35): python3-more-itertools-10.1.0-8.el10_0 3.8 MB/s | 100 kB 00:00 2026-02-22T20:20:00.630 INFO:teuthology.orchestra.run.trial060.stdout:(32/35): python3-portend-3.2.0-6.el10_0.noarch. 899 kB/s | 18 kB 00:00 2026-02-22T20:20:00.645 INFO:teuthology.orchestra.run.trial060.stdout:(33/35): python3-pyOpenSSL-25.0.0-1.el10_1.noar 4.3 MB/s | 113 kB 00:00 2026-02-22T20:20:00.646 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 35/35 2026-02-22T20:20:00.648 INFO:teuthology.orchestra.run.trial060.stdout:(34/35): python3-tempora-5.7.0-1.el10_0.noarch. 1.7 MB/s | 37 kB 00:00 2026-02-22T20:20:00.650 INFO:teuthology.orchestra.run.trial060.stdout:(35/35): python3-zc-lockfile-3.0.post1-11.el10_ 1.1 MB/s | 23 kB 00:00 2026-02-22T20:20:00.651 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:00.651 INFO:teuthology.orchestra.run.trial060.stdout:Total 36 MB/s | 31 MB 00:00 2026-02-22T20:20:00.651 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:00.670 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:00.670 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:00.670 INFO:teuthology.orchestra.run.trial160.stdout: ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:00.670 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:00.671 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:00.671 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:00.671 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:00.695 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-mgr 2026-02-22T20:20:00.815 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:00.815 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:00.984 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:00.986 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-more-itertools-10.1.0-8.el10_0.noarch 1/35 2026-02-22T20:20:00.987 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:22 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:00.991 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-jaraco-functools-4.0.2-4.el10_0.noarch 2/35 2026-02-22T20:20:00.995 INFO:teuthology.orchestra.run.trial060.stdout: Installing : unzip-6.0-69.el10.x86_64 3/35 2026-02-22T20:20:00.997 INFO:teuthology.orchestra.run.trial060.stdout: Installing : lua-5.4.6-7.el10.x86_64 4/35 2026-02-22T20:20:00.999 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ledmon-libs-1.1.0-2.el10.x86_64 5/35 2026-02-22T20:20:01.002 INFO:teuthology.orchestra.run.trial060.stdout: Installing : lua-devel-5.4.6-7.el10.x86_64 6/35 2026-02-22T20:20:01.011 INFO:teuthology.orchestra.run.trial060.stdout: Installing : zip-3.0-45.el10.x86_64 7/35 2026-02-22T20:20:01.014 INFO:teuthology.orchestra.run.trial160.stdout:Package ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:01.015 INFO:teuthology.orchestra.run.trial060.stdout: Installing : luarocks-3.9.2-6.el10_0.noarch 8/35 2026-02-22T20:20:01.017 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-tempora-5.7.0-1.el10_0.noarch 9/35 2026-02-22T20:20:01.019 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-portend-3.2.0-6.el10_0.noarch 10/35 2026-02-22T20:20:01.021 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-zc-lockfile-3.0.post1-11.el10_0.noarch 11/35 2026-02-22T20:20:01.024 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:01.024 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-jaraco-context-6.0.1-4.el10_0.noarch 12/35 2026-02-22T20:20:01.025 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:01.025 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:01.027 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-bcrypt-4.3.0-3.el10_1.x86_64 13/35 2026-02-22T20:20:01.030 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-autocommand-2.2.2-9.el10_0.noarch 14/35 2026-02-22T20:20:01.032 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-jaraco-text-4.0.0-3.el10_0.noarch 15/35 2026-02-22T20:20:01.036 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 35/35 2026-02-22T20:20:01.036 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:01.036 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:01.036 INFO:teuthology.orchestra.run.trial090.stdout: ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:01.036 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-modules-core-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: ledmon-libs-1.1.0-2.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: libconfig-1.7.3-10.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: libstoragemgmt-1.10.1-4.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: lua-5.4.6-7.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: lua-devel-5.4.6-7.el10.x86_64 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: luarocks-3.9.2-6.el10_0.noarch 2026-02-22T20:20:01.037 INFO:teuthology.orchestra.run.trial090.stdout: python3-autocommand-2.2.2-9.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-bcrypt-4.3.0-3.el10_1.x86_64 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-cffi-1.16.0-7.el10.x86_64 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-cheroot-10.0.1-4.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-cherrypy-18.10.0-4.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-cryptography-43.0.0-4.el10.x86_64 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-collections-5.1.0-1.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-context-6.0.1-4.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-functools-4.0.2-4.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-jaraco-text-4.0.0-3.el10_0.noarch 2026-02-22T20:20:01.038 INFO:teuthology.orchestra.run.trial090.stdout: python3-libstoragemgmt-1.10.1-4.el10.x86_64 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-more-itertools-10.1.0-8.el10_0.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-packaging-24.2-2.el10.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-ply-3.11-25.el10.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-portend-3.2.0-6.el10_0.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyOpenSSL-25.0.0-1.el10_1.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-pycparser-2.20-16.el10.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-requests-2.32.4-1.el10_0.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-tempora-5.7.0-1.el10_0.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-urllib3-1.26.19-2.el10_1.1.noarch 2026-02-22T20:20:01.039 INFO:teuthology.orchestra.run.trial090.stdout: python3-zc-lockfile-3.0.post1-11.el10_0.noarch 2026-02-22T20:20:01.040 INFO:teuthology.orchestra.run.trial090.stdout: unzip-6.0-69.el10.x86_64 2026-02-22T20:20:01.040 INFO:teuthology.orchestra.run.trial090.stdout: zip-3.0-45.el10.x86_64 2026-02-22T20:20:01.040 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:01.040 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:01.041 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-jaraco-collections-5.1.0-1.el10_0.noarch 16/35 2026-02-22T20:20:01.045 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-mgr-dashboard 2026-02-22T20:20:01.046 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-urllib3-1.26.19-2.el10_1.1.noarch 17/35 2026-02-22T20:20:01.050 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-requests-2.32.4-1.el10_0.noarch 18/35 2026-02-22T20:20:01.055 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-ply-3.11-25.el10.noarch 19/35 2026-02-22T20:20:01.062 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-pycparser-2.20-16.el10.noarch 20/35 2026-02-22T20:20:01.070 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-base 2026-02-22T20:20:01.094 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-cffi-1.16.0-7.el10.x86_64 21/35 2026-02-22T20:20:01.099 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-cryptography-43.0.0-4.el10.x86_64 22/35 2026-02-22T20:20:01.108 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-pyOpenSSL-25.0.0-1.el10_1.noarch 23/35 2026-02-22T20:20:01.119 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-cheroot-10.0.1-4.el10_0.noarch 24/35 2026-02-22T20:20:01.125 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-cherrypy-18.10.0-4.el10_0.noarch 25/35 2026-02-22T20:20:01.148 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-packaging-24.2-2.el10.noarch 26/35 2026-02-22T20:20:01.181 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-794.ga5c3084f.el10. 27/35 2026-02-22T20:20:01.182 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 28/35 2026-02-22T20:20:01.209 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 28/35 2026-02-22T20:20:01.209 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:01.209 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-22T20:20:01.209 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mgr.target' → '/usr/lib/systemd/system/ceph-mgr.target'. 2026-02-22T20:20:01.209 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mgr.target' → '/usr/lib/systemd/system/ceph-mgr.target'. 2026-02-22T20:20:01.209 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:01.213 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libconfig-1.7.3-10.el10.x86_64 29/35 2026-02-22T20:20:01.233 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:20:01.233 INFO:teuthology.orchestra.run.trial060.stdout:Creating group 'libstoragemgmt' with GID 992. 2026-02-22T20:20:01.233 INFO:teuthology.orchestra.run.trial060.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 992 and GID 992. 2026-02-22T20:20:01.233 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:01.238 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:20:01.261 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libstoragemgmt-1.10.1-4.el10.x86_64 30/35 2026-02-22T20:20:01.261 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service' → '/usr/lib/systemd/system/libstoragemgmt.service'. 2026-02-22T20:20:01.261 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:01.338 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:23 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:01.362 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:22 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:01.374 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:01.374 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-dashboard noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 11 M 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout: ceph-grafana-dashboards noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 43 k 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout: ceph-prometheus-alerts noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 17 k 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout: grpc-data noarch 1.48.4-44.el10_0 epel 21 k 2026-02-22T20:20:01.375 INFO:teuthology.orchestra.run.trial160.stdout: protobuf-compiler x86_64 3.19.6-11.el10 crb 787 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-grpcio x86_64 1.48.4-44.el10_0 epel 2.3 M 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-grpcio-tools x86_64 1.48.4-44.el10_0 epel 157 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-jmespath noarch 1.0.1-8.el10 appstream 60 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-protobuf x86_64 3.19.6-11.el10 appstream 419 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-repoze-lru noarch 0.7-23.el10_0 epel 36 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-routes noarch 2.5.1-11.el10_0 epel 201 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: python3-xmltodict noarch 0.13.0-5.el10_0 epel 26 k 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:01.376 INFO:teuthology.orchestra.run.trial160.stdout:Install 12 Packages 2026-02-22T20:20:01.377 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:01.377 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 15 M 2026-02-22T20:20:01.377 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 154 M 2026-02-22T20:20:01.378 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:01.389 INFO:teuthology.orchestra.run.trial090.stdout:Package ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:01.399 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:01.399 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:01.399 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:01.419 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install cephadm 2026-02-22T20:20:01.518 INFO:teuthology.orchestra.run.trial160.stdout:(1/12): ceph-prometheus-alerts-20.2.0-794.ga5c3 264 kB/s | 17 kB 00:00 2026-02-22T20:20:01.522 INFO:teuthology.orchestra.run.trial160.stdout:(2/12): ceph-grafana-dashboards-20.2.0-794.ga5c 614 kB/s | 43 kB 00:00 2026-02-22T20:20:01.553 INFO:teuthology.orchestra.run.trial160.stdout:(3/12): python3-jmespath-1.0.1-8.el10.noarch.rp 1.7 MB/s | 60 kB 00:00 2026-02-22T20:20:01.567 INFO:teuthology.orchestra.run.trial160.stdout:(4/12): python3-protobuf-3.19.6-11.el10.x86_64. 9.1 MB/s | 419 kB 00:00 2026-02-22T20:20:01.582 INFO:teuthology.orchestra.run.trial160.stdout:(5/12): protobuf-compiler-3.19.6-11.el10.x86_64 27 MB/s | 787 kB 00:00 2026-02-22T20:20:01.707 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:22 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:01.737 INFO:teuthology.orchestra.run.trial160.stdout:(6/12): ceph-mgr-dashboard-20.2.0-794.ga5c3084f 37 MB/s | 11 MB 00:00 2026-02-22T20:20:01.743 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:01.744 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:01.744 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:20:01.744 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:01.744 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:01.744 INFO:teuthology.orchestra.run.trial090.stdout: cephadm noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 1.3 M 2026-02-22T20:20:01.744 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 1.3 M 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 1.3 M 2026-02-22T20:20:01.745 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:01.768 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-libstoragemgmt-1.10.1-4.el10.x86_64 31/35 2026-02-22T20:20:01.770 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 32/35 2026-02-22T20:20:01.782 INFO:teuthology.orchestra.run.trial160.stdout:(7/12): grpc-data-1.48.4-44.el10_0.noarch.rpm 97 kB/s | 21 kB 00:00 2026-02-22T20:20:01.795 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 32/35 2026-02-22T20:20:01.796 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:01.796 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-22T20:20:01.796 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-osd.target' → '/usr/lib/systemd/system/ceph-osd.target'. 2026-02-22T20:20:01.796 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-osd.target' → '/usr/lib/systemd/system/ceph-osd.target'. 2026-02-22T20:20:01.796 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:01.862 INFO:teuthology.orchestra.run.trial090.stdout:cephadm-20.2.0-794.ga5c3084f.el10.noarch.rpm 11 MB/s | 1.3 MB 00:00 2026-02-22T20:20:01.863 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:01.863 INFO:teuthology.orchestra.run.trial090.stdout:Total 11 MB/s | 1.3 MB 00:00 2026-02-22T20:20:01.863 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:01.865 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:01.865 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:01.870 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:01.870 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:01.891 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:01.928 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:20:01.943 INFO:teuthology.orchestra.run.trial090.stdout: Installing : cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:20:01.959 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 33/35 2026-02-22T20:20:01.983 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 33/35 2026-02-22T20:20:01.983 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:01.984 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-22T20:20:01.984 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mon.target' → '/usr/lib/systemd/system/ceph-mon.target'. 2026-02-22T20:20:01.984 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mon.target' → '/usr/lib/systemd/system/ceph-mon.target'. 2026-02-22T20:20:01.984 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:02.000 INFO:teuthology.orchestra.run.trial160.stdout:(8/12): python3-repoze-lru-0.7-23.el10_0.noarch 165 kB/s | 36 kB 00:00 2026-02-22T20:20:02.043 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:20:02.043 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.043 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:02.043 INFO:teuthology.orchestra.run.trial090.stdout: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:02.043 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.043 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:02.054 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 34/35 2026-02-22T20:20:02.067 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-immutable-object-cache 2026-02-22T20:20:02.077 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 34/35 2026-02-22T20:20:02.078 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:02.078 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-22T20:20:02.078 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-mds.target' → '/usr/lib/systemd/system/ceph-mds.target'. 2026-02-22T20:20:02.078 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-mds.target' → '/usr/lib/systemd/system/ceph-mds.target'. 2026-02-22T20:20:02.078 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:02.095 INFO:teuthology.orchestra.run.trial160.stdout:(9/12): python3-grpcio-tools-1.48.4-44.el10_0.x 439 kB/s | 157 kB 00:00 2026-02-22T20:20:02.096 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 35/35 2026-02-22T20:20:02.305 INFO:teuthology.orchestra.run.trial160.stdout:(10/12): python3-xmltodict-0.13.0-5.el10_0.noar 124 kB/s | 26 kB 00:00 2026-02-22T20:20:02.351 INFO:teuthology.orchestra.run.trial160.stdout:(11/12): python3-routes-2.5.1-11.el10_0.noarch. 573 kB/s | 201 kB 00:00 2026-02-22T20:20:02.361 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:23 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:02.398 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:02.398 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repo Size 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 155 k 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:02.399 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.400 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 155 k 2026-02-22T20:20:02.400 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 441 k 2026-02-22T20:20:02.400 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:02.438 INFO:teuthology.orchestra.run.trial160.stdout:(12/12): python3-grpcio-1.48.4-44.el10_0.x86_64 2.7 MB/s | 2.3 MB 00:00 2026-02-22T20:20:02.439 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:02.440 INFO:teuthology.orchestra.run.trial160.stdout:Total 14 MB/s | 15 MB 00:01 2026-02-22T20:20:02.440 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:02.453 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:02.453 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:02.481 INFO:teuthology.orchestra.run.trial090.stdout:ceph-immutable-object-cache-20.2.0-794.ga5c3084 1.8 MB/s | 155 kB 00:00 2026-02-22T20:20:02.482 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:02.482 INFO:teuthology.orchestra.run.trial090.stdout:Total 1.8 MB/s | 155 kB 00:00 2026-02-22T20:20:02.482 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:02.486 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:02.486 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:02.512 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:02.512 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:02.542 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:02.542 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:02.549 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 35/35 2026-02-22T20:20:02.549 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ceph-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mds-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-modules-core-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mon-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ceph-osd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: ledmon-libs-1.1.0-2.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: libconfig-1.7.3-10.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: libstoragemgmt-1.10.1-4.el10.x86_64 2026-02-22T20:20:02.550 INFO:teuthology.orchestra.run.trial060.stdout: lua-5.4.6-7.el10.x86_64 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: lua-devel-5.4.6-7.el10.x86_64 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: luarocks-3.9.2-6.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-autocommand-2.2.2-9.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-bcrypt-4.3.0-3.el10_1.x86_64 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-cffi-1.16.0-7.el10.x86_64 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-cheroot-10.0.1-4.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-cherrypy-18.10.0-4.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-cryptography-43.0.0-4.el10.x86_64 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-collections-5.1.0-1.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-context-6.0.1-4.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-functools-4.0.2-4.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-jaraco-text-4.0.0-3.el10_0.noarch 2026-02-22T20:20:02.551 INFO:teuthology.orchestra.run.trial060.stdout: python3-libstoragemgmt-1.10.1-4.el10.x86_64 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-more-itertools-10.1.0-8.el10_0.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-packaging-24.2-2.el10.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-ply-3.11-25.el10.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-portend-3.2.0-6.el10_0.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyOpenSSL-25.0.0-1.el10_1.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-pycparser-2.20-16.el10.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-requests-2.32.4-1.el10_0.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-tempora-5.7.0-1.el10_0.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-urllib3-1.26.19-2.el10_1.1.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: python3-zc-lockfile-3.0.post1-11.el10_0.noarch 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: unzip-6.0-69.el10.x86_64 2026-02-22T20:20:02.552 INFO:teuthology.orchestra.run.trial060.stdout: zip-3.0-45.el10.x86_64 2026-02-22T20:20:02.553 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:02.553 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:02.559 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:02.560 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.e 1/1 2026-02-22T20:20:02.583 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-base 2026-02-22T20:20:02.586 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.e 1/1 2026-02-22T20:20:02.586 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:02.586 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-22T20:20:02.586 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.646 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:02.648 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-xmltodict-0.13.0-5.el10_0.noarch 1/12 2026-02-22T20:20:02.653 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-repoze-lru-0.7-23.el10_0.noarch 2/12 2026-02-22T20:20:02.655 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-routes-2.5.1-11.el10_0.noarch 3/12 2026-02-22T20:20:02.678 INFO:teuthology.orchestra.run.trial160.stdout: Installing : grpc-data-1.48.4-44.el10_0.noarch 4/12 2026-02-22T20:20:02.686 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-grpcio-1.48.4-44.el10_0.x86_64 5/12 2026-02-22T20:20:02.698 INFO:teuthology.orchestra.run.trial160.stdout: Installing : protobuf-compiler-3.19.6-11.el10.x86_64 6/12 2026-02-22T20:20:02.704 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-protobuf-3.19.6-11.el10.x86_64 7/12 2026-02-22T20:20:02.707 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-grpcio-tools-1.48.4-44.el10_0.x86_64 8/12 2026-02-22T20:20:02.710 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-jmespath-1.0.1-8.el10.noarch 9/12 2026-02-22T20:20:02.715 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-794.ga5c3084f.el10 10/12 2026-02-22T20:20:02.851 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.851 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:02.851 INFO:teuthology.orchestra.run.trial090.stdout: ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:02.851 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:02.852 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:02.871 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:23 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:02.877 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-mgr 2026-02-22T20:20:02.899 INFO:teuthology.orchestra.run.trial060.stdout:Package ceph-base-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:02.908 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:02.908 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:02.908 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:02.928 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install cephadm 2026-02-22T20:20:03.167 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:24 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:03.194 INFO:teuthology.orchestra.run.trial090.stdout:Package ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:03.203 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:03.204 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:03.204 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:03.217 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:24 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:03.224 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-mgr-dashboard 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout: cephadm noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 1.3 M 2026-02-22T20:20:03.255 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 1.3 M 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 1.3 M 2026-02-22T20:20:03.256 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:03.401 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-794.ga5c3084f.el1 11/12 2026-02-22T20:20:03.406 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noa 12/12 2026-02-22T20:20:03.448 INFO:teuthology.orchestra.run.trial060.stdout:cephadm-20.2.0-794.ga5c3084f.el10.noarch.rpm 6.8 MB/s | 1.3 MB 00:00 2026-02-22T20:20:03.449 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:03.449 INFO:teuthology.orchestra.run.trial060.stdout:Total 6.8 MB/s | 1.3 MB 00:00 2026-02-22T20:20:03.450 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:03.453 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:03.453 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:03.458 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:03.458 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:03.478 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:03.512 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:24 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:03.515 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:20:03.530 INFO:teuthology.orchestra.run.trial060.stdout: Installing : cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:20:03.549 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:03.550 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:03.550 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:20:03.550 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-dashboard noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 11 M 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: ceph-grafana-dashboards noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 43 k 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: ceph-prometheus-alerts noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 17 k 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: grpc-data noarch 1.48.4-44.el10_0 epel 21 k 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: protobuf-compiler x86_64 3.19.6-11.el10 crb 787 k 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: python3-grpcio x86_64 1.48.4-44.el10_0 epel 2.3 M 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: python3-grpcio-tools x86_64 1.48.4-44.el10_0 epel 157 k 2026-02-22T20:20:03.551 INFO:teuthology.orchestra.run.trial090.stdout: python3-jmespath noarch 1.0.1-8.el10 appstream 60 k 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout: python3-protobuf x86_64 3.19.6-11.el10 appstream 419 k 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout: python3-repoze-lru noarch 0.7-23.el10_0 epel 36 k 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout: python3-routes noarch 2.5.1-11.el10_0 epel 201 k 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout: python3-xmltodict noarch 0.13.0-5.el10_0 epel 26 k 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout:Install 12 Packages 2026-02-22T20:20:03.552 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:03.553 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 15 M 2026-02-22T20:20:03.553 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 154 M 2026-02-22T20:20:03.553 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:03.627 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 1/1 2026-02-22T20:20:03.627 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:03.627 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:03.628 INFO:teuthology.orchestra.run.trial060.stdout: cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:03.628 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:03.628 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:03.649 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noa 12/12 2026-02-22T20:20:03.649 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:03.649 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:03.649 INFO:teuthology.orchestra.run.trial160.stdout: ceph-grafana-dashboards-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:03.650 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:03.650 INFO:teuthology.orchestra.run.trial160.stdout: ceph-prometheus-alerts-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:03.650 INFO:teuthology.orchestra.run.trial160.stdout: grpc-data-1.48.4-44.el10_0.noarch 2026-02-22T20:20:03.650 INFO:teuthology.orchestra.run.trial160.stdout: protobuf-compiler-3.19.6-11.el10.x86_64 2026-02-22T20:20:03.650 INFO:teuthology.orchestra.run.trial160.stdout: python3-grpcio-1.48.4-44.el10_0.x86_64 2026-02-22T20:20:03.650 INFO:teuthology.orchestra.run.trial160.stdout: python3-grpcio-tools-1.48.4-44.el10_0.x86_64 2026-02-22T20:20:03.651 INFO:teuthology.orchestra.run.trial160.stdout: python3-jmespath-1.0.1-8.el10.noarch 2026-02-22T20:20:03.651 INFO:teuthology.orchestra.run.trial160.stdout: python3-protobuf-3.19.6-11.el10.x86_64 2026-02-22T20:20:03.651 INFO:teuthology.orchestra.run.trial160.stdout: python3-repoze-lru-0.7-23.el10_0.noarch 2026-02-22T20:20:03.651 INFO:teuthology.orchestra.run.trial160.stdout: python3-routes-2.5.1-11.el10_0.noarch 2026-02-22T20:20:03.651 INFO:teuthology.orchestra.run.trial160.stdout: python3-xmltodict-0.13.0-5.el10_0.noarch 2026-02-22T20:20:03.651 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:03.652 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:03.654 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-immutable-object-cache 2026-02-22T20:20:03.677 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-22T20:20:03.939 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:24 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:03.962 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:25 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:03.975 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repo Size 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 155 k 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:03.976 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:03.977 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:03.977 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 155 k 2026-02-22T20:20:03.977 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 441 k 2026-02-22T20:20:03.977 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:03.999 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout:======================================================================================= 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout:======================================================================================= 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 7.4 M 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout: flexiblas x86_64 3.4.2-3.el10 appstream 25 k 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout: flexiblas-netlib x86_64 3.4.2-3.el10 appstream 3.2 M 2026-02-22T20:20:04.000 INFO:teuthology.orchestra.run.trial160.stdout: flexiblas-openblas-openmp x86_64 3.4.2-3.el10 appstream 17 k 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: libgfortran x86_64 14.3.1-2.1.el10 baseos 827 k 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: libquadmath x86_64 14.3.1-2.1.el10 baseos 215 k 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: openblas x86_64 0.3.29-2.el10 appstream 43 k 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: openblas-openmp x86_64 0.3.29-2.el10 appstream 5.3 M 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: python3-devel x86_64 3.12.12-3.el10_1 appstream 329 k 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: python3-numpy x86_64 1:1.26.4-5.el10 appstream 6.7 M 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: python3-numpy-f2py x86_64 1:1.26.4-5.el10 appstream 490 k 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: python3-scipy x86_64 1.11.3-17.el10 appstream 16 M 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout:======================================================================================= 2026-02-22T20:20:04.001 INFO:teuthology.orchestra.run.trial160.stdout:Install 12 Packages 2026-02-22T20:20:04.002 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:04.002 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 41 M 2026-02-22T20:20:04.002 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 226 M 2026-02-22T20:20:04.002 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:04.017 INFO:teuthology.orchestra.run.trial090.stdout:(1/12): ceph-prometheus-alerts-20.2.0-794.ga5c3 268 kB/s | 17 kB 00:00 2026-02-22T20:20:04.028 INFO:teuthology.orchestra.run.trial090.stdout:(2/12): ceph-grafana-dashboards-20.2.0-794.ga5c 566 kB/s | 43 kB 00:00 2026-02-22T20:20:04.040 INFO:teuthology.orchestra.run.trial160.stdout:(1/12): flexiblas-3.4.2-3.el10.x86_64.rpm 623 kB/s | 25 kB 00:00 2026-02-22T20:20:04.053 INFO:teuthology.orchestra.run.trial090.stdout:(3/12): python3-jmespath-1.0.1-8.el10.noarch.rp 1.7 MB/s | 60 kB 00:00 2026-02-22T20:20:04.056 INFO:teuthology.orchestra.run.trial160.stdout:(2/12): flexiblas-openblas-openmp-3.4.2-3.el10. 1.1 MB/s | 17 kB 00:00 2026-02-22T20:20:04.061 INFO:teuthology.orchestra.run.trial060.stdout:ceph-immutable-object-cache-20.2.0-794.ga5c3084 1.8 MB/s | 155 kB 00:00 2026-02-22T20:20:04.062 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:04.062 INFO:teuthology.orchestra.run.trial060.stdout:Total 1.8 MB/s | 155 kB 00:00 2026-02-22T20:20:04.062 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:04.066 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:04.067 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:04.070 INFO:teuthology.orchestra.run.trial090.stdout:(4/12): python3-protobuf-3.19.6-11.el10.x86_64. 9.8 MB/s | 419 kB 00:00 2026-02-22T20:20:04.073 INFO:teuthology.orchestra.run.trial160.stdout:(3/12): flexiblas-netlib-3.4.2-3.el10.x86_64.rp 45 MB/s | 3.2 MB 00:00 2026-02-22T20:20:04.073 INFO:teuthology.orchestra.run.trial160.stdout:(4/12): openblas-0.3.29-2.el10.x86_64.rpm 2.4 MB/s | 43 kB 00:00 2026-02-22T20:20:04.084 INFO:teuthology.orchestra.run.trial090.stdout:(5/12): protobuf-compiler-3.19.6-11.el10.x86_64 24 MB/s | 787 kB 00:00 2026-02-22T20:20:04.093 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:04.093 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:04.100 INFO:teuthology.orchestra.run.trial160.stdout:(5/12): python3-devel-3.12.12-3.el10_1.x86_64.r 12 MB/s | 329 kB 00:00 2026-02-22T20:20:04.141 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:04.142 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.e 1/1 2026-02-22T20:20:04.144 INFO:teuthology.orchestra.run.trial090.stdout:(6/12): grpc-data-1.48.4-44.el10_0.noarch.rpm 283 kB/s | 21 kB 00:00 2026-02-22T20:20:04.165 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.e 1/1 2026-02-22T20:20:04.165 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:04.165 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-22T20:20:04.165 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:04.166 INFO:teuthology.orchestra.run.trial160.stdout:(6/12): openblas-openmp-0.3.29-2.el10.x86_64.rp 58 MB/s | 5.3 MB 00:00 2026-02-22T20:20:04.193 INFO:teuthology.orchestra.run.trial160.stdout:(7/12): python3-numpy-f2py-1.26.4-5.el10.x86_64 18 MB/s | 490 kB 00:00 2026-02-22T20:20:04.220 INFO:teuthology.orchestra.run.trial090.stdout:(7/12): python3-grpcio-tools-1.48.4-44.el10_0.x 2.2 MB/s | 157 kB 00:00 2026-02-22T20:20:04.223 INFO:teuthology.orchestra.run.trial160.stdout:(8/12): python3-numpy-1.26.4-5.el10.x86_64.rpm 54 MB/s | 6.7 MB 00:00 2026-02-22T20:20:04.242 INFO:teuthology.orchestra.run.trial090.stdout:(8/12): python3-repoze-lru-0.7-23.el10_0.noarch 1.4 MB/s | 36 kB 00:00 2026-02-22T20:20:04.249 INFO:teuthology.orchestra.run.trial160.stdout:(9/12): libgfortran-14.3.1-2.1.el10.x86_64.rpm 31 MB/s | 827 kB 00:00 2026-02-22T20:20:04.317 INFO:teuthology.orchestra.run.trial160.stdout:(10/12): libquadmath-14.3.1-2.1.el10.x86_64.rpm 9.8 MB/s | 215 kB 00:00 2026-02-22T20:20:04.317 INFO:teuthology.orchestra.run.trial090.stdout:(9/12): ceph-mgr-dashboard-20.2.0-794.ga5c3084f 34 MB/s | 11 MB 00:00 2026-02-22T20:20:04.318 INFO:teuthology.orchestra.run.trial090.stdout:(10/12): python3-routes-2.5.1-11.el10_0.noarch. 4.0 MB/s | 201 kB 00:00 2026-02-22T20:20:04.318 INFO:teuthology.orchestra.run.trial090.stdout:(11/12): python3-grpcio-1.48.4-44.el10_0.x86_64 10 MB/s | 2.3 MB 00:00 2026-02-22T20:20:04.336 INFO:teuthology.orchestra.run.trial090.stdout:(12/12): python3-xmltodict-0.13.0-5.el10_0.noar 362 kB/s | 26 kB 00:00 2026-02-22T20:20:04.337 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:04.338 INFO:teuthology.orchestra.run.trial090.stdout:Total 19 MB/s | 15 MB 00:00 2026-02-22T20:20:04.338 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:04.350 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:04.350 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:04.425 INFO:teuthology.orchestra.run.trial160.stdout:(11/12): python3-scipy-1.11.3-17.el10.x86_64.rp 70 MB/s | 16 MB 00:00 2026-02-22T20:20:04.429 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:04.429 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:04.429 INFO:teuthology.orchestra.run.trial060.stdout: ceph-immutable-object-cache-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:04.429 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:04.429 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:04.439 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:04.440 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:04.454 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-mgr 2026-02-22T20:20:04.477 INFO:teuthology.orchestra.run.trial160.stdout:(12/12): ceph-mgr-diskprediction-local-20.2.0-7 16 MB/s | 7.4 MB 00:00 2026-02-22T20:20:04.478 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:04.478 INFO:teuthology.orchestra.run.trial160.stdout:Total 85 MB/s | 41 MB 00:00 2026-02-22T20:20:04.478 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:04.491 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:04.491 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:04.543 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:04.545 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-xmltodict-0.13.0-5.el10_0.noarch 1/12 2026-02-22T20:20:04.550 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-repoze-lru-0.7-23.el10_0.noarch 2/12 2026-02-22T20:20:04.552 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-routes-2.5.1-11.el10_0.noarch 3/12 2026-02-22T20:20:04.576 INFO:teuthology.orchestra.run.trial090.stdout: Installing : grpc-data-1.48.4-44.el10_0.noarch 4/12 2026-02-22T20:20:04.584 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-grpcio-1.48.4-44.el10_0.x86_64 5/12 2026-02-22T20:20:04.596 INFO:teuthology.orchestra.run.trial090.stdout: Installing : protobuf-compiler-3.19.6-11.el10.x86_64 6/12 2026-02-22T20:20:04.602 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-protobuf-3.19.6-11.el10.x86_64 7/12 2026-02-22T20:20:04.605 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-grpcio-tools-1.48.4-44.el10_0.x86_64 8/12 2026-02-22T20:20:04.607 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-jmespath-1.0.1-8.el10.noarch 9/12 2026-02-22T20:20:04.612 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-794.ga5c3084f.el10 10/12 2026-02-22T20:20:04.669 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:04.669 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:04.741 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:25 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:04.768 INFO:teuthology.orchestra.run.trial060.stdout:Package ceph-mgr-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:04.777 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:04.778 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:04.778 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:04.798 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-mgr-dashboard 2026-02-22T20:20:04.864 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:04.867 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libgfortran-14.3.1-2.1.el10.x86_64 1/12 2026-02-22T20:20:04.881 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libquadmath-14.3.1-2.1.el10.x86_64 2/12 2026-02-22T20:20:04.884 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-devel-3.12.12-3.el10_1.x86_64 3/12 2026-02-22T20:20:04.940 INFO:teuthology.orchestra.run.trial160.stdout: Installing : openblas-0.3.29-2.el10.x86_64 4/12 2026-02-22T20:20:04.960 INFO:teuthology.orchestra.run.trial160.stdout: Installing : openblas-openmp-0.3.29-2.el10.x86_64 5/12 2026-02-22T20:20:04.962 INFO:teuthology.orchestra.run.trial160.stdout: Installing : flexiblas-netlib-3.4.2-3.el10.x86_64 6/12 2026-02-22T20:20:04.964 INFO:teuthology.orchestra.run.trial160.stdout: Installing : flexiblas-openblas-openmp-3.4.2-3.el10.x86_64 7/12 2026-02-22T20:20:05.085 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:26 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:05.089 INFO:teuthology.orchestra.run.trial160.stdout: Installing : flexiblas-3.4.2-3.el10.x86_64 8/12 2026-02-22T20:20:05.116 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-numpy-1:1.26.4-5.el10.x86_64 9/12 2026-02-22T20:20:05.122 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:05.123 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:05.123 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:20:05.123 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:05.123 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:05.123 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-dashboard noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 11 M 2026-02-22T20:20:05.123 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: ceph-grafana-dashboards noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 43 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: ceph-prometheus-alerts noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 17 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: grpc-data noarch 1.48.4-44.el10_0 epel 21 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: protobuf-compiler x86_64 3.19.6-11.el10 crb 787 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-grpcio x86_64 1.48.4-44.el10_0 epel 2.3 M 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-grpcio-tools x86_64 1.48.4-44.el10_0 epel 157 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-jmespath noarch 1.0.1-8.el10 appstream 60 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-protobuf x86_64 3.19.6-11.el10 appstream 419 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-repoze-lru noarch 0.7-23.el10_0 epel 36 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-routes noarch 2.5.1-11.el10_0 epel 201 k 2026-02-22T20:20:05.124 INFO:teuthology.orchestra.run.trial060.stdout: python3-xmltodict noarch 0.13.0-5.el10_0 epel 26 k 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout:Install 12 Packages 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 15 M 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 154 M 2026-02-22T20:20:05.125 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:05.297 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-794.ga5c3084f.el1 11/12 2026-02-22T20:20:05.302 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noa 12/12 2026-02-22T20:20:05.306 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-numpy-f2py-1:1.26.4-5.el10.x86_64 10/12 2026-02-22T20:20:05.525 INFO:teuthology.orchestra.run.trial060.stdout:(1/12): ceph-prometheus-alerts-20.2.0-794.ga5c3 298 kB/s | 17 kB 00:00 2026-02-22T20:20:05.540 INFO:teuthology.orchestra.run.trial060.stdout:(2/12): ceph-grafana-dashboards-20.2.0-794.ga5c 591 kB/s | 43 kB 00:00 2026-02-22T20:20:05.547 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noa 12/12 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: ceph-grafana-dashboards-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: ceph-prometheus-alerts-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: grpc-data-1.48.4-44.el10_0.noarch 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: protobuf-compiler-3.19.6-11.el10.x86_64 2026-02-22T20:20:05.548 INFO:teuthology.orchestra.run.trial090.stdout: python3-grpcio-1.48.4-44.el10_0.x86_64 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: python3-grpcio-tools-1.48.4-44.el10_0.x86_64 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: python3-jmespath-1.0.1-8.el10.noarch 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: python3-protobuf-3.19.6-11.el10.x86_64 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: python3-repoze-lru-0.7-23.el10_0.noarch 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: python3-routes-2.5.1-11.el10_0.noarch 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: python3-xmltodict-0.13.0-5.el10_0.noarch 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:05.549 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:05.558 INFO:teuthology.orchestra.run.trial060.stdout:(3/12): python3-jmespath-1.0.1-8.el10.noarch.rp 1.8 MB/s | 60 kB 00:00 2026-02-22T20:20:05.576 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-22T20:20:05.590 INFO:teuthology.orchestra.run.trial060.stdout:(4/12): protobuf-compiler-3.19.6-11.el10.x86_64 24 MB/s | 787 kB 00:00 2026-02-22T20:20:05.591 INFO:teuthology.orchestra.run.trial060.stdout:(5/12): python3-protobuf-3.19.6-11.el10.x86_64. 7.9 MB/s | 419 kB 00:00 2026-02-22T20:20:05.625 INFO:teuthology.orchestra.run.trial060.stdout:(6/12): grpc-data-1.48.4-44.el10_0.noarch.rpm 614 kB/s | 21 kB 00:00 2026-02-22T20:20:05.638 INFO:teuthology.orchestra.run.trial060.stdout:(7/12): python3-grpcio-1.48.4-44.el10_0.x86_64. 49 MB/s | 2.3 MB 00:00 2026-02-22T20:20:05.641 INFO:teuthology.orchestra.run.trial060.stdout:(8/12): python3-grpcio-tools-1.48.4-44.el10_0.x 9.4 MB/s | 157 kB 00:00 2026-02-22T20:20:05.643 INFO:teuthology.orchestra.run.trial060.stdout:(9/12): python3-repoze-lru-0.7-23.el10_0.noarch 8.5 MB/s | 36 kB 00:00 2026-02-22T20:20:05.647 INFO:teuthology.orchestra.run.trial060.stdout:(10/12): python3-xmltodict-0.13.0-5.el10_0.noar 6.3 MB/s | 26 kB 00:00 2026-02-22T20:20:05.650 INFO:teuthology.orchestra.run.trial060.stdout:(11/12): python3-routes-2.5.1-11.el10_0.noarch. 23 MB/s | 201 kB 00:00 2026-02-22T20:20:05.658 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-scipy-1.11.3-17.el10.x86_64 11/12 2026-02-22T20:20:05.659 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c308 12/12 2026-02-22T20:20:05.831 INFO:teuthology.orchestra.run.trial060.stdout:(12/12): ceph-mgr-dashboard-20.2.0-794.ga5c3084 29 MB/s | 11 MB 00:00 2026-02-22T20:20:05.832 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:05.832 INFO:teuthology.orchestra.run.trial060.stdout:Total 21 MB/s | 15 MB 00:00 2026-02-22T20:20:05.832 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:05.844 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:05.844 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:05.866 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:26 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:05.905 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:05.906 INFO:teuthology.orchestra.run.trial090.stdout:======================================================================================= 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout:======================================================================================= 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 7.4 M 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: flexiblas x86_64 3.4.2-3.el10 appstream 25 k 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: flexiblas-netlib x86_64 3.4.2-3.el10 appstream 3.2 M 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: flexiblas-openblas-openmp x86_64 3.4.2-3.el10 appstream 17 k 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: libgfortran x86_64 14.3.1-2.1.el10 baseos 827 k 2026-02-22T20:20:05.907 INFO:teuthology.orchestra.run.trial090.stdout: libquadmath x86_64 14.3.1-2.1.el10 baseos 215 k 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: openblas x86_64 0.3.29-2.el10 appstream 43 k 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: openblas-openmp x86_64 0.3.29-2.el10 appstream 5.3 M 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: python3-devel x86_64 3.12.12-3.el10_1 appstream 329 k 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: python3-numpy x86_64 1:1.26.4-5.el10 appstream 6.7 M 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: python3-numpy-f2py x86_64 1:1.26.4-5.el10 appstream 490 k 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: python3-scipy x86_64 1.11.3-17.el10 appstream 16 M 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout:======================================================================================= 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout:Install 12 Packages 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:05.908 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 41 M 2026-02-22T20:20:05.909 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 226 M 2026-02-22T20:20:05.909 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:05.933 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:05.933 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:05.945 INFO:teuthology.orchestra.run.trial090.stdout:(1/12): flexiblas-3.4.2-3.el10.x86_64.rpm 650 kB/s | 25 kB 00:00 2026-02-22T20:20:05.958 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c308 12/12 2026-02-22T20:20:05.958 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: flexiblas-3.4.2-3.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: flexiblas-netlib-3.4.2-3.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: flexiblas-openblas-openmp-3.4.2-3.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: libgfortran-14.3.1-2.1.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: libquadmath-14.3.1-2.1.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: openblas-0.3.29-2.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: openblas-openmp-0.3.29-2.el10.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: python3-devel-3.12.12-3.el10_1.x86_64 2026-02-22T20:20:05.959 INFO:teuthology.orchestra.run.trial160.stdout: python3-numpy-1:1.26.4-5.el10.x86_64 2026-02-22T20:20:05.960 INFO:teuthology.orchestra.run.trial160.stdout: python3-numpy-f2py-1:1.26.4-5.el10.x86_64 2026-02-22T20:20:05.960 INFO:teuthology.orchestra.run.trial160.stdout: python3-scipy-1.11.3-17.el10.x86_64 2026-02-22T20:20:05.960 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:05.960 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:05.964 INFO:teuthology.orchestra.run.trial090.stdout:(2/12): flexiblas-openblas-openmp-3.4.2-3.el10. 934 kB/s | 17 kB 00:00 2026-02-22T20:20:05.983 INFO:teuthology.orchestra.run.trial090.stdout:(3/12): openblas-0.3.29-2.el10.x86_64.rpm 2.2 MB/s | 43 kB 00:00 2026-02-22T20:20:05.987 INFO:teuthology.orchestra.run.trial090.stdout:(4/12): flexiblas-netlib-3.4.2-3.el10.x86_64.rp 40 MB/s | 3.2 MB 00:00 2026-02-22T20:20:05.993 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-mgr-rook 2026-02-22T20:20:06.022 INFO:teuthology.orchestra.run.trial090.stdout:(5/12): python3-devel-3.12.12-3.el10_1.x86_64.r 9.3 MB/s | 329 kB 00:00 2026-02-22T20:20:06.036 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:06.039 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-xmltodict-0.13.0-5.el10_0.noarch 1/12 2026-02-22T20:20:06.044 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-repoze-lru-0.7-23.el10_0.noarch 2/12 2026-02-22T20:20:06.045 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-routes-2.5.1-11.el10_0.noarch 3/12 2026-02-22T20:20:06.069 INFO:teuthology.orchestra.run.trial060.stdout: Installing : grpc-data-1.48.4-44.el10_0.noarch 4/12 2026-02-22T20:20:06.077 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-grpcio-1.48.4-44.el10_0.x86_64 5/12 2026-02-22T20:20:06.089 INFO:teuthology.orchestra.run.trial060.stdout: Installing : protobuf-compiler-3.19.6-11.el10.x86_64 6/12 2026-02-22T20:20:06.089 INFO:teuthology.orchestra.run.trial090.stdout:(6/12): openblas-openmp-0.3.29-2.el10.x86_64.rp 50 MB/s | 5.3 MB 00:00 2026-02-22T20:20:06.094 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-protobuf-3.19.6-11.el10.x86_64 7/12 2026-02-22T20:20:06.098 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-grpcio-tools-1.48.4-44.el10_0.x86_64 8/12 2026-02-22T20:20:06.100 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-jmespath-1.0.1-8.el10.noarch 9/12 2026-02-22T20:20:06.105 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-794.ga5c3084f.el10 10/12 2026-02-22T20:20:06.117 INFO:teuthology.orchestra.run.trial090.stdout:(7/12): python3-numpy-f2py-1.26.4-5.el10.x86_64 18 MB/s | 490 kB 00:00 2026-02-22T20:20:06.135 INFO:teuthology.orchestra.run.trial090.stdout:(8/12): python3-numpy-1.26.4-5.el10.x86_64.rpm 59 MB/s | 6.7 MB 00:00 2026-02-22T20:20:06.167 INFO:teuthology.orchestra.run.trial090.stdout:(9/12): libgfortran-14.3.1-2.1.el10.x86_64.rpm 25 MB/s | 827 kB 00:00 2026-02-22T20:20:06.195 INFO:teuthology.orchestra.run.trial090.stdout:(10/12): libquadmath-14.3.1-2.1.el10.x86_64.rpm 7.6 MB/s | 215 kB 00:00 2026-02-22T20:20:06.249 INFO:teuthology.orchestra.run.trial090.stdout:(11/12): ceph-mgr-diskprediction-local-20.2.0-7 22 MB/s | 7.4 MB 00:00 2026-02-22T20:20:06.283 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:28 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:06.323 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-rook noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 50 k 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout: python3-cachetools noarch 5.4.0-6.el10_0 epel 37 k 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout: python3-certifi noarch 2023.05.07-6.el10_0 epel 14 k 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout: python3-durationpy noarch 0.9-2.el10_0 epel 15 k 2026-02-22T20:20:06.324 INFO:teuthology.orchestra.run.trial160.stdout: python3-google-auth noarch 1:2.40.3-1.el10_1 epel 286 k 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: python3-kubernetes noarch 1:32.0.1-1.el10_1 epel 1.3 M 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyasn1 noarch 0.6.1-1.el10 appstream 198 k 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyasn1-modules noarch 0.6.1-1.el10 appstream 402 k 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: python3-requests-oauthlib noarch 1.3.1-11.el10 appstream 60 k 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: python3-rsa noarch 4.9-7.el10_0 epel 70 k 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: python3-websocket-client noarch 1.8.0-2.el10_0 epel 124 k 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout:Install 11 Packages 2026-02-22T20:20:06.325 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:06.326 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 2.6 M 2026-02-22T20:20:06.326 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 33 M 2026-02-22T20:20:06.326 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:06.398 INFO:teuthology.orchestra.run.trial090.stdout:(12/12): python3-scipy-1.11.3-17.el10.x86_64.rp 58 MB/s | 16 MB 00:00 2026-02-22T20:20:06.399 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:06.399 INFO:teuthology.orchestra.run.trial090.stdout:Total 83 MB/s | 41 MB 00:00 2026-02-22T20:20:06.399 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:06.412 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:06.412 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:06.484 INFO:teuthology.orchestra.run.trial160.stdout:(1/11): python3-pyasn1-0.6.1-1.el10.noarch.rpm 4.4 MB/s | 198 kB 00:00 2026-02-22T20:20:06.500 INFO:teuthology.orchestra.run.trial160.stdout:(2/11): python3-requests-oauthlib-1.3.1-11.el10 3.7 MB/s | 60 kB 00:00 2026-02-22T20:20:06.511 INFO:teuthology.orchestra.run.trial160.stdout:(3/11): ceph-mgr-rook-20.2.0-794.ga5c3084f.el10 713 kB/s | 50 kB 00:00 2026-02-22T20:20:06.512 INFO:teuthology.orchestra.run.trial160.stdout:(4/11): python3-pyasn1-modules-0.6.1-1.el10.noa 5.5 MB/s | 402 kB 00:00 2026-02-22T20:20:06.592 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:06.592 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:06.609 INFO:teuthology.orchestra.run.trial160.stdout:(5/11): python3-certifi-2023.05.07-6.el10_0.noa 147 kB/s | 14 kB 00:00 2026-02-22T20:20:06.610 INFO:teuthology.orchestra.run.trial160.stdout:(6/11): python3-durationpy-0.9-2.el10_0.noarch. 150 kB/s | 15 kB 00:00 2026-02-22T20:20:06.611 INFO:teuthology.orchestra.run.trial160.stdout:(7/11): python3-cachetools-5.4.0-6.el10_0.noarc 335 kB/s | 37 kB 00:00 2026-02-22T20:20:06.720 INFO:teuthology.orchestra.run.trial160.stdout:(8/11): python3-google-auth-2.40.3-1.el10_1.noa 2.5 MB/s | 286 kB 00:00 2026-02-22T20:20:06.769 INFO:teuthology.orchestra.run.trial160.stdout:(9/11): python3-kubernetes-32.0.1-1.el10_1.noar 8.4 MB/s | 1.3 MB 00:00 2026-02-22T20:20:06.769 INFO:teuthology.orchestra.run.trial160.stdout:(10/11): python3-rsa-4.9-7.el10_0.noarch.rpm 440 kB/s | 70 kB 00:00 2026-02-22T20:20:06.787 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-794.ga5c3084f.el1 11/12 2026-02-22T20:20:06.789 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:06.791 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libgfortran-14.3.1-2.1.el10.x86_64 1/12 2026-02-22T20:20:06.792 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noa 12/12 2026-02-22T20:20:06.793 INFO:teuthology.orchestra.run.trial160.stdout:(11/11): python3-websocket-client-1.8.0-2.el10_ 1.6 MB/s | 124 kB 00:00 2026-02-22T20:20:06.794 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:06.794 INFO:teuthology.orchestra.run.trial160.stdout:Total 5.4 MB/s | 2.6 MB 00:00 2026-02-22T20:20:06.794 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:06.802 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:06.803 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:06.805 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libquadmath-14.3.1-2.1.el10.x86_64 2/12 2026-02-22T20:20:06.809 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-devel-3.12.12-3.el10_1.x86_64 3/12 2026-02-22T20:20:06.844 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:06.844 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:06.865 INFO:teuthology.orchestra.run.trial090.stdout: Installing : openblas-0.3.29-2.el10.x86_64 4/12 2026-02-22T20:20:06.885 INFO:teuthology.orchestra.run.trial090.stdout: Installing : openblas-openmp-0.3.29-2.el10.x86_64 5/12 2026-02-22T20:20:06.887 INFO:teuthology.orchestra.run.trial090.stdout: Installing : flexiblas-netlib-3.4.2-3.el10.x86_64 6/12 2026-02-22T20:20:06.888 INFO:teuthology.orchestra.run.trial090.stdout: Installing : flexiblas-openblas-openmp-3.4.2-3.el10.x86_64 7/12 2026-02-22T20:20:06.907 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:06.930 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-pyasn1-0.6.1-1.el10.noarch 1/11 2026-02-22T20:20:06.935 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-pyasn1-modules-0.6.1-1.el10.noarch 2/11 2026-02-22T20:20:06.941 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-rsa-4.9-7.el10_0.noarch 3/11 2026-02-22T20:20:06.944 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-websocket-client-1.8.0-2.el10_0.noarch 4/11 2026-02-22T20:20:06.946 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-durationpy-0.9-2.el10_0.noarch 5/11 2026-02-22T20:20:06.948 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-certifi-2023.05.07-6.el10_0.noarch 6/11 2026-02-22T20:20:06.962 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-cachetools-5.4.0-6.el10_0.noarch 7/11 2026-02-22T20:20:06.968 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-google-auth-1:2.40.3-1.el10_1.noarch 8/11 2026-02-22T20:20:07.014 INFO:teuthology.orchestra.run.trial090.stdout: Installing : flexiblas-3.4.2-3.el10.x86_64 8/12 2026-02-22T20:20:07.041 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-numpy-1:1.26.4-5.el10.x86_64 9/12 2026-02-22T20:20:07.058 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noa 12/12 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: ceph-grafana-dashboards-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-dashboard-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: ceph-prometheus-alerts-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: grpc-data-1.48.4-44.el10_0.noarch 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: protobuf-compiler-3.19.6-11.el10.x86_64 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: python3-grpcio-1.48.4-44.el10_0.x86_64 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: python3-grpcio-tools-1.48.4-44.el10_0.x86_64 2026-02-22T20:20:07.059 INFO:teuthology.orchestra.run.trial060.stdout: python3-jmespath-1.0.1-8.el10.noarch 2026-02-22T20:20:07.060 INFO:teuthology.orchestra.run.trial060.stdout: python3-protobuf-3.19.6-11.el10.x86_64 2026-02-22T20:20:07.060 INFO:teuthology.orchestra.run.trial060.stdout: python3-repoze-lru-0.7-23.el10_0.noarch 2026-02-22T20:20:07.060 INFO:teuthology.orchestra.run.trial060.stdout: python3-routes-2.5.1-11.el10_0.noarch 2026-02-22T20:20:07.060 INFO:teuthology.orchestra.run.trial060.stdout: python3-xmltodict-0.13.0-5.el10_0.noarch 2026-02-22T20:20:07.060 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:07.060 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:07.088 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-22T20:20:07.103 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-requests-oauthlib-1.3.1-11.el10.noarch 9/11 2026-02-22T20:20:07.113 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-kubernetes-1:32.0.1-1.el10_1.noarch 10/11 2026-02-22T20:20:07.114 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 11/11 2026-02-22T20:20:07.230 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-numpy-f2py-1:1.26.4-5.el10.x86_64 10/12 2026-02-22T20:20:07.268 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 11/11 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: python3-cachetools-5.4.0-6.el10_0.noarch 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: python3-certifi-2023.05.07-6.el10_0.noarch 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: python3-durationpy-0.9-2.el10_0.noarch 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: python3-google-auth-1:2.40.3-1.el10_1.noarch 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: python3-kubernetes-1:32.0.1-1.el10_1.noarch 2026-02-22T20:20:07.269 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyasn1-0.6.1-1.el10.noarch 2026-02-22T20:20:07.270 INFO:teuthology.orchestra.run.trial160.stdout: python3-pyasn1-modules-0.6.1-1.el10.noarch 2026-02-22T20:20:07.270 INFO:teuthology.orchestra.run.trial160.stdout: python3-requests-oauthlib-1.3.1-11.el10.noarch 2026-02-22T20:20:07.270 INFO:teuthology.orchestra.run.trial160.stdout: python3-rsa-4.9-7.el10_0.noarch 2026-02-22T20:20:07.270 INFO:teuthology.orchestra.run.trial160.stdout: python3-websocket-client-1.8.0-2.el10_0.noarch 2026-02-22T20:20:07.270 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:07.270 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:07.299 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-mgr-cephadm 2026-02-22T20:20:07.380 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:28 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:07.418 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:07.419 INFO:teuthology.orchestra.run.trial060.stdout:======================================================================================= 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout:======================================================================================= 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 7.4 M 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: flexiblas x86_64 3.4.2-3.el10 appstream 25 k 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: flexiblas-netlib x86_64 3.4.2-3.el10 appstream 3.2 M 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: flexiblas-openblas-openmp x86_64 3.4.2-3.el10 appstream 17 k 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: libgfortran x86_64 14.3.1-2.1.el10 baseos 827 k 2026-02-22T20:20:07.420 INFO:teuthology.orchestra.run.trial060.stdout: libquadmath x86_64 14.3.1-2.1.el10 baseos 215 k 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: openblas x86_64 0.3.29-2.el10 appstream 43 k 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: openblas-openmp x86_64 0.3.29-2.el10 appstream 5.3 M 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: python3-devel x86_64 3.12.12-3.el10_1 appstream 329 k 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: python3-numpy x86_64 1:1.26.4-5.el10 appstream 6.7 M 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: python3-numpy-f2py x86_64 1:1.26.4-5.el10 appstream 490 k 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: python3-scipy x86_64 1.11.3-17.el10 appstream 16 M 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout:======================================================================================= 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout:Install 12 Packages 2026-02-22T20:20:07.421 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:07.422 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 41 M 2026-02-22T20:20:07.422 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 226 M 2026-02-22T20:20:07.422 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:07.460 INFO:teuthology.orchestra.run.trial060.stdout:(1/12): flexiblas-3.4.2-3.el10.x86_64.rpm 621 kB/s | 25 kB 00:00 2026-02-22T20:20:07.476 INFO:teuthology.orchestra.run.trial060.stdout:(2/12): flexiblas-openblas-openmp-3.4.2-3.el10. 1.1 MB/s | 17 kB 00:00 2026-02-22T20:20:07.492 INFO:teuthology.orchestra.run.trial060.stdout:(3/12): openblas-0.3.29-2.el10.x86_64.rpm 2.5 MB/s | 43 kB 00:00 2026-02-22T20:20:07.500 INFO:teuthology.orchestra.run.trial060.stdout:(4/12): flexiblas-netlib-3.4.2-3.el10.x86_64.rp 40 MB/s | 3.2 MB 00:00 2026-02-22T20:20:07.524 INFO:teuthology.orchestra.run.trial060.stdout:(5/12): python3-devel-3.12.12-3.el10_1.x86_64.r 13 MB/s | 329 kB 00:00 2026-02-22T20:20:07.582 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-scipy-1.11.3-17.el10.x86_64 11/12 2026-02-22T20:20:07.583 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c308 12/12 2026-02-22T20:20:07.588 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:29 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:07.599 INFO:teuthology.orchestra.run.trial060.stdout:(6/12): openblas-openmp-0.3.29-2.el10.x86_64.rp 50 MB/s | 5.3 MB 00:00 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-cephadm noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 179 k 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: python3-asyncssh noarch 2.17.0-1.el10_0 epel 756 k 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: python3-jinja2 noarch 3.1.6-1.el10_0 appstream 330 k 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: python3-markupsafe x86_64 2.1.3-6.el10 appstream 34 k 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: python3-natsort noarch 8.4.0-2.el10_0 epel 72 k 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:07.626 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:07.627 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:07.627 INFO:teuthology.orchestra.run.trial160.stdout:Install 5 Packages 2026-02-22T20:20:07.627 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:07.627 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 1.3 M 2026-02-22T20:20:07.627 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 7.9 M 2026-02-22T20:20:07.627 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:07.643 INFO:teuthology.orchestra.run.trial060.stdout:(7/12): python3-numpy-f2py-1.26.4-5.el10.x86_64 11 MB/s | 490 kB 00:00 2026-02-22T20:20:07.664 INFO:teuthology.orchestra.run.trial060.stdout:(8/12): python3-numpy-1.26.4-5.el10.x86_64.rpm 48 MB/s | 6.7 MB 00:00 2026-02-22T20:20:07.684 INFO:teuthology.orchestra.run.trial060.stdout:(9/12): ceph-mgr-diskprediction-local-20.2.0-79 28 MB/s | 7.4 MB 00:00 2026-02-22T20:20:07.696 INFO:teuthology.orchestra.run.trial060.stdout:(10/12): libgfortran-14.3.1-2.1.el10.x86_64.rpm 25 MB/s | 827 kB 00:00 2026-02-22T20:20:07.702 INFO:teuthology.orchestra.run.trial060.stdout:(11/12): libquadmath-14.3.1-2.1.el10.x86_64.rpm 11 MB/s | 215 kB 00:00 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c308 12/12 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout: flexiblas-3.4.2-3.el10.x86_64 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout: flexiblas-netlib-3.4.2-3.el10.x86_64 2026-02-22T20:20:07.895 INFO:teuthology.orchestra.run.trial090.stdout: flexiblas-openblas-openmp-3.4.2-3.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: libgfortran-14.3.1-2.1.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: libquadmath-14.3.1-2.1.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: openblas-0.3.29-2.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: openblas-openmp-0.3.29-2.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: python3-devel-3.12.12-3.el10_1.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: python3-numpy-1:1.26.4-5.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: python3-numpy-f2py-1:1.26.4-5.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: python3-scipy-1.11.3-17.el10.x86_64 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:07.896 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:07.905 INFO:teuthology.orchestra.run.trial060.stdout:(12/12): python3-scipy-1.11.3-17.el10.x86_64.rp 62 MB/s | 16 MB 00:00 2026-02-22T20:20:07.906 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:07.906 INFO:teuthology.orchestra.run.trial060.stdout:Total 84 MB/s | 41 MB 00:00 2026-02-22T20:20:07.907 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:07.919 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:07.920 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:07.929 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-mgr-rook 2026-02-22T20:20:08.062 INFO:teuthology.orchestra.run.trial160.stdout:(1/5): python3-markupsafe-2.1.3-6.el10.x86_64.r 1.0 MB/s | 34 kB 00:00 2026-02-22T20:20:08.076 INFO:teuthology.orchestra.run.trial160.stdout:(2/5): python3-jinja2-3.1.6-1.el10_0.noarch.rpm 7.0 MB/s | 330 kB 00:00 2026-02-22T20:20:08.098 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:08.098 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:08.112 INFO:teuthology.orchestra.run.trial160.stdout:(3/5): ceph-mgr-cephadm-20.2.0-794.ga5c3084f.el 2.1 MB/s | 179 kB 00:00 2026-02-22T20:20:08.156 INFO:teuthology.orchestra.run.trial160.stdout:(4/5): python3-natsort-8.4.0-2.el10_0.noarch.rp 897 kB/s | 72 kB 00:00 2026-02-22T20:20:08.202 INFO:teuthology.orchestra.run.trial160.stdout:(5/5): python3-asyncssh-2.17.0-1.el10_0.noarch. 5.3 MB/s | 756 kB 00:00 2026-02-22T20:20:08.203 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:08.203 INFO:teuthology.orchestra.run.trial160.stdout:Total 2.3 MB/s | 1.3 MB 00:00 2026-02-22T20:20:08.203 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:08.207 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:08.207 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:08.227 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:29 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:08.253 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:08.253 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:08.265 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:08.265 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:08.265 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-rook noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 50 k 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-cachetools noarch 5.4.0-6.el10_0 epel 37 k 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-certifi noarch 2023.05.07-6.el10_0 epel 14 k 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-durationpy noarch 0.9-2.el10_0 epel 15 k 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-google-auth noarch 1:2.40.3-1.el10_1 epel 286 k 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-kubernetes noarch 1:32.0.1-1.el10_1 epel 1.3 M 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyasn1 noarch 0.6.1-1.el10 appstream 198 k 2026-02-22T20:20:08.266 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyasn1-modules noarch 0.6.1-1.el10 appstream 402 k 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout: python3-requests-oauthlib noarch 1.3.1-11.el10 appstream 60 k 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout: python3-rsa noarch 4.9-7.el10_0 epel 70 k 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout: python3-websocket-client noarch 1.8.0-2.el10_0 epel 124 k 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout:Install 11 Packages 2026-02-22T20:20:08.267 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:08.268 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 2.6 M 2026-02-22T20:20:08.268 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 33 M 2026-02-22T20:20:08.268 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:08.294 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:08.297 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libgfortran-14.3.1-2.1.el10.x86_64 1/12 2026-02-22T20:20:08.312 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libquadmath-14.3.1-2.1.el10.x86_64 2/12 2026-02-22T20:20:08.315 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-devel-3.12.12-3.el10_1.x86_64 3/12 2026-02-22T20:20:08.318 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:08.339 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-natsort-8.4.0-2.el10_0.noarch 1/5 2026-02-22T20:20:08.344 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-asyncssh-2.17.0-1.el10_0.noarch 2/5 2026-02-22T20:20:08.352 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-markupsafe-2.1.3-6.el10.x86_64 3/5 2026-02-22T20:20:08.364 INFO:teuthology.orchestra.run.trial160.stdout: Installing : python3-jinja2-3.1.6-1.el10_0.noarch 4/5 2026-02-22T20:20:08.366 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 5/5 2026-02-22T20:20:08.370 INFO:teuthology.orchestra.run.trial060.stdout: Installing : openblas-0.3.29-2.el10.x86_64 4/12 2026-02-22T20:20:08.390 INFO:teuthology.orchestra.run.trial060.stdout: Installing : openblas-openmp-0.3.29-2.el10.x86_64 5/12 2026-02-22T20:20:08.392 INFO:teuthology.orchestra.run.trial060.stdout: Installing : flexiblas-netlib-3.4.2-3.el10.x86_64 6/12 2026-02-22T20:20:08.393 INFO:teuthology.orchestra.run.trial060.stdout: Installing : flexiblas-openblas-openmp-3.4.2-3.el10.x86_64 7/12 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 5/5 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: python3-asyncssh-2.17.0-1.el10_0.noarch 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: python3-jinja2-3.1.6-1.el10_0.noarch 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: python3-markupsafe-2.1.3-6.el10.x86_64 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: python3-natsort-8.4.0-2.el10_0.noarch 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:08.496 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:08.519 INFO:teuthology.orchestra.run.trial060.stdout: Installing : flexiblas-3.4.2-3.el10.x86_64 8/12 2026-02-22T20:20:08.523 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-fuse 2026-02-22T20:20:08.546 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-numpy-1:1.26.4-5.el10.x86_64 9/12 2026-02-22T20:20:08.649 INFO:teuthology.orchestra.run.trial090.stdout:(1/11): python3-pyasn1-modules-0.6.1-1.el10.noa 9.4 MB/s | 402 kB 00:00 2026-02-22T20:20:08.650 INFO:teuthology.orchestra.run.trial090.stdout:(2/11): python3-pyasn1-0.6.1-1.el10.noarch.rpm 4.5 MB/s | 198 kB 00:00 2026-02-22T20:20:08.661 INFO:teuthology.orchestra.run.trial090.stdout:(3/11): python3-requests-oauthlib-1.3.1-11.el10 5.0 MB/s | 60 kB 00:00 2026-02-22T20:20:08.677 INFO:teuthology.orchestra.run.trial090.stdout:(4/11): ceph-mgr-rook-20.2.0-794.ga5c3084f.el10 717 kB/s | 50 kB 00:00 2026-02-22T20:20:08.709 INFO:teuthology.orchestra.run.trial090.stdout:(5/11): python3-certifi-2023.05.07-6.el10_0.noa 301 kB/s | 14 kB 00:00 2026-02-22T20:20:08.715 INFO:teuthology.orchestra.run.trial090.stdout:(6/11): python3-cachetools-5.4.0-6.el10_0.noarc 566 kB/s | 37 kB 00:00 2026-02-22T20:20:08.727 INFO:teuthology.orchestra.run.trial090.stdout:(7/11): python3-durationpy-0.9-2.el10_0.noarch. 297 kB/s | 15 kB 00:00 2026-02-22T20:20:08.733 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-numpy-f2py-1:1.26.4-5.el10.x86_64 10/12 2026-02-22T20:20:08.774 INFO:teuthology.orchestra.run.trial090.stdout:(8/11): python3-rsa-4.9-7.el10_0.noarch.rpm 1.4 MB/s | 70 kB 00:00 2026-02-22T20:20:08.784 INFO:teuthology.orchestra.run.trial090.stdout:(9/11): python3-google-auth-2.40.3-1.el10_1.noa 3.7 MB/s | 286 kB 00:00 2026-02-22T20:20:08.807 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:30 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:08.811 INFO:teuthology.orchestra.run.trial090.stdout:(10/11): python3-websocket-client-1.8.0-2.el10_ 3.3 MB/s | 124 kB 00:00 2026-02-22T20:20:08.824 INFO:teuthology.orchestra.run.trial090.stdout:(11/11): python3-kubernetes-32.0.1-1.el10_1.noa 12 MB/s | 1.3 MB 00:00 2026-02-22T20:20:08.825 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:08.825 INFO:teuthology.orchestra.run.trial090.stdout:Total 4.6 MB/s | 2.6 MB 00:00 2026-02-22T20:20:08.825 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:08.832 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:08.832 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:08.843 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:08.844 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:08.844 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repo Size 2026-02-22T20:20:08.844 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout: ceph-fuse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 1.0 M 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 1.0 M 2026-02-22T20:20:08.845 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 2.9 M 2026-02-22T20:20:08.846 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:08.874 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:08.875 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:08.937 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:08.960 INFO:teuthology.orchestra.run.trial160.stdout:ceph-fuse-20.2.0-794.ga5c3084f.el10.x86_64.rpm 8.6 MB/s | 1.0 MB 00:00 2026-02-22T20:20:08.960 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:08.961 INFO:teuthology.orchestra.run.trial160.stdout:Total 8.5 MB/s | 1.0 MB 00:00 2026-02-22T20:20:08.961 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:08.961 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-pyasn1-0.6.1-1.el10.noarch 1/11 2026-02-22T20:20:08.965 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:08.965 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:08.966 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-pyasn1-modules-0.6.1-1.el10.noarch 2/11 2026-02-22T20:20:08.972 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-rsa-4.9-7.el10_0.noarch 3/11 2026-02-22T20:20:08.974 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-websocket-client-1.8.0-2.el10_0.noarch 4/11 2026-02-22T20:20:08.976 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-durationpy-0.9-2.el10_0.noarch 5/11 2026-02-22T20:20:08.979 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-certifi-2023.05.07-6.el10_0.noarch 6/11 2026-02-22T20:20:08.993 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-cachetools-5.4.0-6.el10_0.noarch 7/11 2026-02-22T20:20:08.996 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:08.997 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:08.998 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-google-auth-1:2.40.3-1.el10_1.noarch 8/11 2026-02-22T20:20:09.075 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:09.086 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-scipy-1.11.3-17.el10.x86_64 11/12 2026-02-22T20:20:09.087 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c308 12/12 2026-02-22T20:20:09.094 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:09.134 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-requests-oauthlib-1.3.1-11.el10.noarch 9/11 2026-02-22T20:20:09.144 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-kubernetes-1:32.0.1-1.el10_1.noarch 10/11 2026-02-22T20:20:09.145 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 11/11 2026-02-22T20:20:09.305 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 11/11 2026-02-22T20:20:09.305 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:09.305 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:09.305 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:09.305 INFO:teuthology.orchestra.run.trial090.stdout: python3-cachetools-5.4.0-6.el10_0.noarch 2026-02-22T20:20:09.305 INFO:teuthology.orchestra.run.trial090.stdout: python3-certifi-2023.05.07-6.el10_0.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-durationpy-0.9-2.el10_0.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-google-auth-1:2.40.3-1.el10_1.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-kubernetes-1:32.0.1-1.el10_1.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyasn1-0.6.1-1.el10.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-pyasn1-modules-0.6.1-1.el10.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-requests-oauthlib-1.3.1-11.el10.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-rsa-4.9-7.el10_0.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: python3-websocket-client-1.8.0-2.el10_0.noarch 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:09.306 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:09.333 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-mgr-cephadm 2026-02-22T20:20:09.351 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:09.351 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:09.351 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:09.351 INFO:teuthology.orchestra.run.trial160.stdout: ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:09.352 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:09.352 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:09.377 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install ceph-volume 2026-02-22T20:20:09.379 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c308 12/12 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-diskprediction-local-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: flexiblas-3.4.2-3.el10.x86_64 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: flexiblas-netlib-3.4.2-3.el10.x86_64 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: flexiblas-openblas-openmp-3.4.2-3.el10.x86_64 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: libgfortran-14.3.1-2.1.el10.x86_64 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: libquadmath-14.3.1-2.1.el10.x86_64 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: openblas-0.3.29-2.el10.x86_64 2026-02-22T20:20:09.380 INFO:teuthology.orchestra.run.trial060.stdout: openblas-openmp-0.3.29-2.el10.x86_64 2026-02-22T20:20:09.381 INFO:teuthology.orchestra.run.trial060.stdout: python3-devel-3.12.12-3.el10_1.x86_64 2026-02-22T20:20:09.381 INFO:teuthology.orchestra.run.trial060.stdout: python3-numpy-1:1.26.4-5.el10.x86_64 2026-02-22T20:20:09.381 INFO:teuthology.orchestra.run.trial060.stdout: python3-numpy-f2py-1:1.26.4-5.el10.x86_64 2026-02-22T20:20:09.381 INFO:teuthology.orchestra.run.trial060.stdout: python3-scipy-1.11.3-17.el10.x86_64 2026-02-22T20:20:09.381 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:09.381 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:09.413 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-mgr-rook 2026-02-22T20:20:09.622 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:30 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:09.659 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-cephadm noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 179 k 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout: python3-asyncssh noarch 2.17.0-1.el10_0 epel 756 k 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout: python3-jinja2 noarch 3.1.6-1.el10_0 appstream 330 k 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout: python3-markupsafe x86_64 2.1.3-6.el10 appstream 34 k 2026-02-22T20:20:09.660 INFO:teuthology.orchestra.run.trial090.stdout: python3-natsort noarch 8.4.0-2.el10_0 epel 72 k 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout:Install 5 Packages 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 1.3 M 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 7.9 M 2026-02-22T20:20:09.661 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:09.669 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:31 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:09.703 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:30 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:09.708 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:09.709 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:09.709 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repository Size 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout: ceph-volume noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 375 k 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout: cryptsetup x86_64 2.7.5-2.el10 baseos 335 k 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout:Install 2 Packages 2026-02-22T20:20:09.710 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:09.711 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 710 k 2026-02-22T20:20:09.711 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 2.5 M 2026-02-22T20:20:09.711 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:09.740 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-rook noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 50 k 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout: python3-cachetools noarch 5.4.0-6.el10_0 epel 37 k 2026-02-22T20:20:09.742 INFO:teuthology.orchestra.run.trial060.stdout: python3-certifi noarch 2023.05.07-6.el10_0 epel 14 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-durationpy noarch 0.9-2.el10_0 epel 15 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-google-auth noarch 1:2.40.3-1.el10_1 epel 286 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-kubernetes noarch 1:32.0.1-1.el10_1 epel 1.3 M 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyasn1 noarch 0.6.1-1.el10 appstream 198 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyasn1-modules noarch 0.6.1-1.el10 appstream 402 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-requests-oauthlib noarch 1.3.1-11.el10 appstream 60 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-rsa noarch 4.9-7.el10_0 epel 70 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: python3-websocket-client noarch 1.8.0-2.el10_0 epel 124 k 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:09.743 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:09.744 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:09.744 INFO:teuthology.orchestra.run.trial060.stdout:Install 11 Packages 2026-02-22T20:20:09.744 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:09.744 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 2.6 M 2026-02-22T20:20:09.744 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 33 M 2026-02-22T20:20:09.744 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:09.756 INFO:teuthology.orchestra.run.trial160.stdout:(1/2): cryptsetup-2.7.5-2.el10.x86_64.rpm 7.1 MB/s | 335 kB 00:00 2026-02-22T20:20:09.766 INFO:teuthology.orchestra.run.trial090.stdout:(1/5): python3-markupsafe-2.1.3-6.el10.x86_64.r 1.0 MB/s | 34 kB 00:00 2026-02-22T20:20:09.778 INFO:teuthology.orchestra.run.trial090.stdout:(2/5): python3-jinja2-3.1.6-1.el10_0.noarch.rpm 7.2 MB/s | 330 kB 00:00 2026-02-22T20:20:09.802 INFO:teuthology.orchestra.run.trial160.stdout:(2/2): ceph-volume-20.2.0-794.ga5c3084f.el10.no 4.0 MB/s | 375 kB 00:00 2026-02-22T20:20:09.802 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:09.802 INFO:teuthology.orchestra.run.trial160.stdout:Total 7.4 MB/s | 710 kB 00:00 2026-02-22T20:20:09.802 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:09.809 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:09.809 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:09.813 INFO:teuthology.orchestra.run.trial090.stdout:(3/5): ceph-mgr-cephadm-20.2.0-794.ga5c3084f.el 2.2 MB/s | 179 kB 00:00 2026-02-22T20:20:09.822 INFO:teuthology.orchestra.run.trial090.stdout:(4/5): python3-natsort-8.4.0-2.el10_0.noarch.rp 1.6 MB/s | 72 kB 00:00 2026-02-22T20:20:09.846 INFO:teuthology.orchestra.run.trial090.stdout:(5/5): python3-asyncssh-2.17.0-1.el10_0.noarch. 9.3 MB/s | 756 kB 00:00 2026-02-22T20:20:09.847 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:09.847 INFO:teuthology.orchestra.run.trial090.stdout:Total 7.2 MB/s | 1.3 MB 00:00 2026-02-22T20:20:09.847 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:09.851 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:09.851 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:09.852 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:09.852 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:09.859 INFO:teuthology.orchestra.run.trial060.stdout:(1/11): python3-pyasn1-0.6.1-1.el10.noarch.rpm 4.7 MB/s | 198 kB 00:00 2026-02-22T20:20:09.867 INFO:teuthology.orchestra.run.trial060.stdout:(2/11): python3-pyasn1-modules-0.6.1-1.el10.noa 7.9 MB/s | 402 kB 00:00 2026-02-22T20:20:09.872 INFO:teuthology.orchestra.run.trial060.stdout:(3/11): python3-requests-oauthlib-1.3.1-11.el10 4.5 MB/s | 60 kB 00:00 2026-02-22T20:20:09.889 INFO:teuthology.orchestra.run.trial060.stdout:(4/11): ceph-mgr-rook-20.2.0-794.ga5c3084f.el10 714 kB/s | 50 kB 00:00 2026-02-22T20:20:09.896 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:09.896 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:09.917 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:09.933 INFO:teuthology.orchestra.run.trial060.stdout:(5/11): python3-durationpy-0.9-2.el10_0.noarch. 335 kB/s | 15 kB 00:00 2026-02-22T20:20:09.935 INFO:teuthology.orchestra.run.trial060.stdout:(6/11): python3-certifi-2023.05.07-6.el10_0.noa 229 kB/s | 14 kB 00:00 2026-02-22T20:20:09.942 INFO:teuthology.orchestra.run.trial060.stdout:(7/11): python3-cachetools-5.4.0-6.el10_0.noarc 499 kB/s | 37 kB 00:00 2026-02-22T20:20:09.948 INFO:teuthology.orchestra.run.trial160.stdout: Installing : cryptsetup-2.7.5-2.el10.x86_64 1/2 2026-02-22T20:20:09.950 INFO:teuthology.orchestra.run.trial160.stdout: Installing : ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch 2/2 2026-02-22T20:20:09.961 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:09.967 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch 2/2 2026-02-22T20:20:09.967 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:09.967 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-22T20:20:09.967 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:09.978 INFO:teuthology.orchestra.run.trial060.stdout:(8/11): python3-rsa-4.9-7.el10_0.noarch.rpm 1.9 MB/s | 70 kB 00:00 2026-02-22T20:20:09.982 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-natsort-8.4.0-2.el10_0.noarch 1/5 2026-02-22T20:20:09.986 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-asyncssh-2.17.0-1.el10_0.noarch 2/5 2026-02-22T20:20:09.994 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-markupsafe-2.1.3-6.el10.x86_64 3/5 2026-02-22T20:20:10.001 INFO:teuthology.orchestra.run.trial060.stdout:(9/11): python3-google-auth-2.40.3-1.el10_1.noa 4.1 MB/s | 286 kB 00:00 2026-02-22T20:20:10.006 INFO:teuthology.orchestra.run.trial090.stdout: Installing : python3-jinja2-3.1.6-1.el10_0.noarch 4/5 2026-02-22T20:20:10.008 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 5/5 2026-02-22T20:20:10.008 INFO:teuthology.orchestra.run.trial060.stdout:(10/11): python3-websocket-client-1.8.0-2.el10_ 4.0 MB/s | 124 kB 00:00 2026-02-22T20:20:10.041 INFO:teuthology.orchestra.run.trial060.stdout:(11/11): python3-kubernetes-32.0.1-1.el10_1.noa 13 MB/s | 1.3 MB 00:00 2026-02-22T20:20:10.042 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:10.042 INFO:teuthology.orchestra.run.trial060.stdout:Total 8.5 MB/s | 2.6 MB 00:00 2026-02-22T20:20:10.042 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:10.049 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:10.050 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:10.092 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:10.092 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 5/5 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: python3-asyncssh-2.17.0-1.el10_0.noarch 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: python3-jinja2-3.1.6-1.el10_0.noarch 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: python3-markupsafe-2.1.3-6.el10.x86_64 2026-02-22T20:20:10.137 INFO:teuthology.orchestra.run.trial090.stdout: python3-natsort-8.4.0-2.el10_0.noarch 2026-02-22T20:20:10.138 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:10.138 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:10.155 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:10.163 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-fuse 2026-02-22T20:20:10.178 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-pyasn1-0.6.1-1.el10.noarch 1/11 2026-02-22T20:20:10.184 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-pyasn1-modules-0.6.1-1.el10.noarch 2/11 2026-02-22T20:20:10.190 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-rsa-4.9-7.el10_0.noarch 3/11 2026-02-22T20:20:10.192 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-websocket-client-1.8.0-2.el10_0.noarch 4/11 2026-02-22T20:20:10.194 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-durationpy-0.9-2.el10_0.noarch 5/11 2026-02-22T20:20:10.196 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-certifi-2023.05.07-6.el10_0.noarch 6/11 2026-02-22T20:20:10.211 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-cachetools-5.4.0-6.el10_0.noarch 7/11 2026-02-22T20:20:10.216 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-google-auth-1:2.40.3-1.el10_1.noarch 8/11 2026-02-22T20:20:10.239 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:10.239 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:10.239 INFO:teuthology.orchestra.run.trial160.stdout: ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch cryptsetup-2.7.5-2.el10.x86_64 2026-02-22T20:20:10.239 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:10.239 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:10.265 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install librados-devel 2026-02-22T20:20:10.351 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-requests-oauthlib-1.3.1-11.el10.noarch 9/11 2026-02-22T20:20:10.361 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-kubernetes-1:32.0.1-1.el10_1.noarch 10/11 2026-02-22T20:20:10.362 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 11/11 2026-02-22T20:20:10.453 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:31 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:10.491 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:10.492 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:10.492 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repo Size 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout: ceph-fuse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 1.0 M 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 1.0 M 2026-02-22T20:20:10.493 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 2.9 M 2026-02-22T20:20:10.494 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:10.518 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 11/11 2026-02-22T20:20:10.518 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:10.518 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:10.518 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-rook-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:10.518 INFO:teuthology.orchestra.run.trial060.stdout: python3-cachetools-5.4.0-6.el10_0.noarch 2026-02-22T20:20:10.518 INFO:teuthology.orchestra.run.trial060.stdout: python3-certifi-2023.05.07-6.el10_0.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-durationpy-0.9-2.el10_0.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-google-auth-1:2.40.3-1.el10_1.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-kubernetes-1:32.0.1-1.el10_1.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyasn1-0.6.1-1.el10.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-pyasn1-modules-0.6.1-1.el10.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-requests-oauthlib-1.3.1-11.el10.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-rsa-4.9-7.el10_0.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: python3-websocket-client-1.8.0-2.el10_0.noarch 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:10.519 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:10.546 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-mgr-cephadm 2026-02-22T20:20:10.563 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:32 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:10.602 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:10.602 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:10.602 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repo Size 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout: librados-devel x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 128 k 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 128 k 2026-02-22T20:20:10.603 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 448 k 2026-02-22T20:20:10.604 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:10.608 INFO:teuthology.orchestra.run.trial090.stdout:ceph-fuse-20.2.0-794.ga5c3084f.el10.x86_64.rpm 8.6 MB/s | 1.0 MB 00:00 2026-02-22T20:20:10.609 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:10.609 INFO:teuthology.orchestra.run.trial090.stdout:Total 8.5 MB/s | 1.0 MB 00:00 2026-02-22T20:20:10.609 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:10.613 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:10.613 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:10.645 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:10.646 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:10.685 INFO:teuthology.orchestra.run.trial160.stdout:librados-devel-20.2.0-794.ga5c3084f.el10.x86_64 1.5 MB/s | 128 kB 00:00 2026-02-22T20:20:10.686 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:10.686 INFO:teuthology.orchestra.run.trial160.stdout:Total 1.5 MB/s | 128 kB 00:00 2026-02-22T20:20:10.686 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:10.689 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:10.690 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:10.718 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:10.718 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:10.723 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:10.743 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:10.769 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:10.787 INFO:teuthology.orchestra.run.trial160.stdout: Installing : librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:10.832 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:31 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:10.869 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:10.870 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-cephadm noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 179 k 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: python3-asyncssh noarch 2.17.0-1.el10_0 epel 756 k 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: python3-jinja2 noarch 3.1.6-1.el10_0 appstream 330 k 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: python3-markupsafe x86_64 2.1.3-6.el10 appstream 34 k 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: python3-natsort noarch 8.4.0-2.el10_0 epel 72 k 2026-02-22T20:20:10.871 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout:Install 5 Packages 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 1.3 M 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 7.9 M 2026-02-22T20:20:10.872 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:10.900 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:10.900 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:10.901 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:10.901 INFO:teuthology.orchestra.run.trial160.stdout: librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:10.901 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:10.901 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:10.926 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install libcephfs2 2026-02-22T20:20:11.022 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:11.022 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.022 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:11.022 INFO:teuthology.orchestra.run.trial090.stdout: ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:11.022 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.022 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:11.046 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install ceph-volume 2026-02-22T20:20:11.213 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:33 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:11.238 INFO:teuthology.orchestra.run.trial160.stdout:Package libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:11.248 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:11.249 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:11.249 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:11.268 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install libcephfs-devel 2026-02-22T20:20:11.311 INFO:teuthology.orchestra.run.trial060.stdout:(1/5): python3-markupsafe-2.1.3-6.el10.x86_64.r 942 kB/s | 34 kB 00:00 2026-02-22T20:20:11.320 INFO:teuthology.orchestra.run.trial060.stdout:(2/5): python3-jinja2-3.1.6-1.el10_0.noarch.rpm 7.2 MB/s | 330 kB 00:00 2026-02-22T20:20:11.339 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:32 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:11.357 INFO:teuthology.orchestra.run.trial060.stdout:(3/5): ceph-mgr-cephadm-20.2.0-794.ga5c3084f.el 2.1 MB/s | 179 kB 00:00 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repository Size 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout: ceph-volume noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 375 k 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout: cryptsetup x86_64 2.7.5-2.el10 baseos 335 k 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout:Install 2 Packages 2026-02-22T20:20:11.377 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.378 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 710 k 2026-02-22T20:20:11.378 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 2.5 M 2026-02-22T20:20:11.378 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:11.422 INFO:teuthology.orchestra.run.trial090.stdout:(1/2): cryptsetup-2.7.5-2.el10.x86_64.rpm 7.5 MB/s | 335 kB 00:00 2026-02-22T20:20:11.472 INFO:teuthology.orchestra.run.trial090.stdout:(2/2): ceph-volume-20.2.0-794.ga5c3084f.el10.no 3.9 MB/s | 375 kB 00:00 2026-02-22T20:20:11.473 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:11.473 INFO:teuthology.orchestra.run.trial090.stdout:Total 7.3 MB/s | 710 kB 00:00 2026-02-22T20:20:11.473 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:11.479 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:11.479 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:11.523 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:11.523 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:11.559 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:33 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:11.590 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:11.596 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repo Size 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout: libcephfs-devel x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 34 k 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout:Installing dependencies: 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout: libcephfs-proxy2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 25 k 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:11.597 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:11.598 INFO:teuthology.orchestra.run.trial160.stdout:Install 2 Packages 2026-02-22T20:20:11.598 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:11.598 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 59 k 2026-02-22T20:20:11.598 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 208 k 2026-02-22T20:20:11.598 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:11.600 INFO:teuthology.orchestra.run.trial060.stdout:(4/5): python3-natsort-8.4.0-2.el10_0.noarch.rp 256 kB/s | 72 kB 00:00 2026-02-22T20:20:11.622 INFO:teuthology.orchestra.run.trial090.stdout: Installing : cryptsetup-2.7.5-2.el10.x86_64 1/2 2026-02-22T20:20:11.623 INFO:teuthology.orchestra.run.trial090.stdout: Installing : ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch 2/2 2026-02-22T20:20:11.640 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch 2/2 2026-02-22T20:20:11.640 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:11.640 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-22T20:20:11.641 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.657 INFO:teuthology.orchestra.run.trial160.stdout:(1/2): libcephfs-devel-20.2.0-794.ga5c3084f.el1 572 kB/s | 34 kB 00:00 2026-02-22T20:20:11.659 INFO:teuthology.orchestra.run.trial160.stdout:(2/2): libcephfs-proxy2-20.2.0-794.ga5c3084f.el 400 kB/s | 25 kB 00:00 2026-02-22T20:20:11.659 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:11.660 INFO:teuthology.orchestra.run.trial160.stdout:Total 945 kB/s | 59 kB 00:00 2026-02-22T20:20:11.660 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:11.662 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:11.662 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:11.693 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:11.693 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:11.740 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:11.741 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 1/2 2026-02-22T20:20:11.756 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 1/2 2026-02-22T20:20:11.775 INFO:teuthology.orchestra.run.trial160.stdout: Installing : libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2/2 2026-02-22T20:20:11.811 INFO:teuthology.orchestra.run.trial060.stdout:(5/5): python3-asyncssh-2.17.0-1.el10_0.noarch. 1.5 MB/s | 756 kB 00:00 2026-02-22T20:20:11.811 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:11.811 INFO:teuthology.orchestra.run.trial060.stdout:Total 1.4 MB/s | 1.3 MB 00:00 2026-02-22T20:20:11.811 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:11.815 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:11.815 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:11.860 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:11.860 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:11.869 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2/2 2026-02-22T20:20:11.869 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:11.869 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:11.869 INFO:teuthology.orchestra.run.trial160.stdout: libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:11.869 INFO:teuthology.orchestra.run.trial160.stdout: libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:11.870 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:11.870 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:11.893 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install librados2 2026-02-22T20:20:11.923 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:11.944 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-natsort-8.4.0-2.el10_0.noarch 1/5 2026-02-22T20:20:11.947 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-asyncssh-2.17.0-1.el10_0.noarch 2/5 2026-02-22T20:20:11.949 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.949 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:11.949 INFO:teuthology.orchestra.run.trial090.stdout: ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch cryptsetup-2.7.5-2.el10.x86_64 2026-02-22T20:20:11.950 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:11.950 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:11.955 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-markupsafe-2.1.3-6.el10.x86_64 3/5 2026-02-22T20:20:11.967 INFO:teuthology.orchestra.run.trial060.stdout: Installing : python3-jinja2-3.1.6-1.el10_0.noarch 4/5 2026-02-22T20:20:11.968 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 5/5 2026-02-22T20:20:11.976 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install librados-devel 2026-02-22T20:20:12.096 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 5/5 2026-02-22T20:20:12.096 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:12.096 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:12.097 INFO:teuthology.orchestra.run.trial060.stdout: ceph-mgr-cephadm-2:20.2.0-794.ga5c3084f.el10.noarch 2026-02-22T20:20:12.097 INFO:teuthology.orchestra.run.trial060.stdout: python3-asyncssh-2.17.0-1.el10_0.noarch 2026-02-22T20:20:12.097 INFO:teuthology.orchestra.run.trial060.stdout: python3-jinja2-3.1.6-1.el10_0.noarch 2026-02-22T20:20:12.097 INFO:teuthology.orchestra.run.trial060.stdout: python3-markupsafe-2.1.3-6.el10.x86_64 2026-02-22T20:20:12.097 INFO:teuthology.orchestra.run.trial060.stdout: python3-natsort-8.4.0-2.el10_0.noarch 2026-02-22T20:20:12.098 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:12.098 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:12.123 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-fuse 2026-02-22T20:20:12.180 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:34 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:12.206 INFO:teuthology.orchestra.run.trial160.stdout:Package librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:12.216 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:12.216 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:12.216 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:12.237 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install librbd1 2026-02-22T20:20:12.270 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:33 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repo Size 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout: librados-devel x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 128 k 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:12.310 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:12.311 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:12.311 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:12.311 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 128 k 2026-02-22T20:20:12.311 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 448 k 2026-02-22T20:20:12.311 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:12.394 INFO:teuthology.orchestra.run.trial090.stdout:librados-devel-20.2.0-794.ga5c3084f.el10.x86_64 1.5 MB/s | 128 kB 00:00 2026-02-22T20:20:12.394 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:12.394 INFO:teuthology.orchestra.run.trial090.stdout:Total 1.5 MB/s | 128 kB 00:00 2026-02-22T20:20:12.395 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:12.398 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:12.398 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:12.404 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:33 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:12.426 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:12.426 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:12.439 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:12.440 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:12.440 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repo Size 2026-02-22T20:20:12.440 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:12.440 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:12.440 INFO:teuthology.orchestra.run.trial060.stdout: ceph-fuse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 1.0 M 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 1.0 M 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 2.9 M 2026-02-22T20:20:12.441 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:12.477 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:12.495 INFO:teuthology.orchestra.run.trial090.stdout: Installing : librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:12.525 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:34 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:12.551 INFO:teuthology.orchestra.run.trial160.stdout:Package librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:12.557 INFO:teuthology.orchestra.run.trial060.stdout:ceph-fuse-20.2.0-794.ga5c3084f.el10.x86_64.rpm 8.5 MB/s | 1.0 MB 00:00 2026-02-22T20:20:12.557 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:12.558 INFO:teuthology.orchestra.run.trial060.stdout:Total 8.4 MB/s | 1.0 MB 00:00 2026-02-22T20:20:12.558 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:12.561 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:12.561 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:12.562 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:12.562 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:12.562 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:12.582 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install python3-rados 2026-02-22T20:20:12.593 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:12.594 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:12.612 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:12.612 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:12.612 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:12.612 INFO:teuthology.orchestra.run.trial090.stdout: librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:12.612 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:12.612 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:12.637 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install libcephfs2 2026-02-22T20:20:12.672 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:12.691 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:12.877 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:34 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:12.904 INFO:teuthology.orchestra.run.trial160.stdout:Package python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:12.914 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:12.914 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:12.914 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:12.926 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:33 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:12.935 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install python3-rgw 2026-02-22T20:20:12.942 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:12.943 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:12.943 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:12.943 INFO:teuthology.orchestra.run.trial060.stdout: ceph-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:12.943 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:12.943 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:12.953 INFO:teuthology.orchestra.run.trial090.stdout:Package libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:12.963 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:12.964 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:12.964 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:12.968 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install ceph-volume 2026-02-22T20:20:12.984 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install libcephfs-devel 2026-02-22T20:20:13.227 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:13.255 INFO:teuthology.orchestra.run.trial160.stdout:Package python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:13.260 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:34 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:13.265 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:13.265 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:13.265 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:13.274 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:34 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:13.285 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install python3-cephfs 2026-02-22T20:20:13.296 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:13.297 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:13.297 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repository Size 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout: ceph-volume noarch 2:20.2.0-794.ga5c3084f.el10 ceph-noarch 375 k 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout: cryptsetup x86_64 2.7.5-2.el10 baseos 335 k 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout:Install 2 Packages 2026-02-22T20:20:13.298 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:13.299 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 710 k 2026-02-22T20:20:13.299 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 2.5 M 2026-02-22T20:20:13.299 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:13.312 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:13.313 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:13.313 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repo Size 2026-02-22T20:20:13.313 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:13.314 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:13.314 INFO:teuthology.orchestra.run.trial090.stdout: libcephfs-devel x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 34 k 2026-02-22T20:20:13.314 INFO:teuthology.orchestra.run.trial090.stdout:Installing dependencies: 2026-02-22T20:20:13.314 INFO:teuthology.orchestra.run.trial090.stdout: libcephfs-proxy2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 25 k 2026-02-22T20:20:13.314 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout:Install 2 Packages 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 59 k 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 208 k 2026-02-22T20:20:13.315 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:13.343 INFO:teuthology.orchestra.run.trial060.stdout:(1/2): cryptsetup-2.7.5-2.el10.x86_64.rpm 7.3 MB/s | 335 kB 00:00 2026-02-22T20:20:13.373 INFO:teuthology.orchestra.run.trial090.stdout:(1/2): libcephfs-devel-20.2.0-794.ga5c3084f.el1 569 kB/s | 34 kB 00:00 2026-02-22T20:20:13.376 INFO:teuthology.orchestra.run.trial090.stdout:(2/2): libcephfs-proxy2-20.2.0-794.ga5c3084f.el 388 kB/s | 25 kB 00:00 2026-02-22T20:20:13.377 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:13.377 INFO:teuthology.orchestra.run.trial090.stdout:Total 917 kB/s | 59 kB 00:00 2026-02-22T20:20:13.377 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:13.380 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:13.381 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:13.392 INFO:teuthology.orchestra.run.trial060.stdout:(2/2): ceph-volume-20.2.0-794.ga5c3084f.el10.no 3.9 MB/s | 375 kB 00:00 2026-02-22T20:20:13.393 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:13.393 INFO:teuthology.orchestra.run.trial060.stdout:Total 7.2 MB/s | 710 kB 00:00 2026-02-22T20:20:13.393 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:13.400 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:13.400 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:13.411 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:13.411 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:13.442 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:13.442 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:13.458 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:13.459 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 1/2 2026-02-22T20:20:13.473 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 1/2 2026-02-22T20:20:13.491 INFO:teuthology.orchestra.run.trial090.stdout: Installing : libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2/2 2026-02-22T20:20:13.506 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:13.536 INFO:teuthology.orchestra.run.trial060.stdout: Installing : cryptsetup-2.7.5-2.el10.x86_64 1/2 2026-02-22T20:20:13.537 INFO:teuthology.orchestra.run.trial060.stdout: Installing : ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch 2/2 2026-02-22T20:20:13.554 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch 2/2 2026-02-22T20:20:13.554 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:13.554 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-22T20:20:13.554 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:13.569 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2/2 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout: libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout: libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:13.586 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:13.596 INFO:teuthology.orchestra.run.trial160.stdout:Package python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:13.606 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:13.607 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:13.607 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:13.611 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install librados2 2026-02-22T20:20:13.628 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install python3-rbd 2026-02-22T20:20:13.873 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:13.873 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:13.873 INFO:teuthology.orchestra.run.trial060.stdout: ceph-volume-2:20.2.0-794.ga5c3084f.el10.noarch cryptsetup-2.7.5-2.el10.x86_64 2026-02-22T20:20:13.874 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:13.874 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:13.899 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install librados-devel 2026-02-22T20:20:13.905 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:34 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:13.919 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:13.933 INFO:teuthology.orchestra.run.trial090.stdout:Package librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:13.943 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:13.943 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:13.944 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:13.945 INFO:teuthology.orchestra.run.trial160.stdout:Package python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:13.954 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:13.955 INFO:teuthology.orchestra.run.trial160.stdout:Nothing to do. 2026-02-22T20:20:13.955 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:13.964 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install librbd1 2026-02-22T20:20:13.975 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install rbd-fuse 2026-02-22T20:20:14.190 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:14.229 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:14.229 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:14.229 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repo Size 2026-02-22T20:20:14.229 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:14.229 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:14.229 INFO:teuthology.orchestra.run.trial060.stdout: librados-devel x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 128 k 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 128 k 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 448 k 2026-02-22T20:20:14.230 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:14.248 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:14.268 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:36 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:14.275 INFO:teuthology.orchestra.run.trial090.stdout:Package librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:14.285 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:14.286 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:14.286 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:14.306 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install python3-rados 2026-02-22T20:20:14.307 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:14.307 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:14.307 INFO:teuthology.orchestra.run.trial160.stdout: Package Architecture Version Repository Size 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout: rbd-fuse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 93 k 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 93 k 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 228 k 2026-02-22T20:20:14.308 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:14.313 INFO:teuthology.orchestra.run.trial060.stdout:librados-devel-20.2.0-794.ga5c3084f.el10.x86_64 1.5 MB/s | 128 kB 00:00 2026-02-22T20:20:14.314 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:14.314 INFO:teuthology.orchestra.run.trial060.stdout:Total 1.5 MB/s | 128 kB 00:00 2026-02-22T20:20:14.314 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:14.317 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:14.317 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:14.346 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:14.346 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:14.389 INFO:teuthology.orchestra.run.trial160.stdout:rbd-fuse-20.2.0-794.ga5c3084f.el10.x86_64.rpm 1.1 MB/s | 93 kB 00:00 2026-02-22T20:20:14.390 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:14.390 INFO:teuthology.orchestra.run.trial160.stdout:Total 1.1 MB/s | 93 kB 00:00 2026-02-22T20:20:14.390 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:14.394 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:14.394 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:14.397 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:14.415 INFO:teuthology.orchestra.run.trial060.stdout: Installing : librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:14.423 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:14.423 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:14.472 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:14.490 INFO:teuthology.orchestra.run.trial160.stdout: Installing : rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:14.529 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:14.529 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:14.529 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:14.529 INFO:teuthology.orchestra.run.trial060.stdout: librados-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:14.529 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:14.529 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:14.555 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install libcephfs2 2026-02-22T20:20:14.602 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:14.605 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:14.605 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:14.605 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:14.605 INFO:teuthology.orchestra.run.trial160.stdout: rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:14.605 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:14.605 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:14.630 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install rbd-mirror 2026-02-22T20:20:14.631 INFO:teuthology.orchestra.run.trial090.stdout:Package python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:14.640 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:14.640 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:14.641 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:14.661 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install python3-rgw 2026-02-22T20:20:14.845 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:14.870 INFO:teuthology.orchestra.run.trial060.stdout:Package libcephfs2-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:14.880 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:14.881 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:14.881 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:14.900 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install libcephfs-devel 2026-02-22T20:20:14.917 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:36 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:14.952 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:35 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:14.955 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:14.955 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:14.955 INFO:teuthology.orchestra.run.trial160.stdout: Package Arch Version Repo Size 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout: rbd-mirror x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.9 M 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 2.9 M 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 11 M 2026-02-22T20:20:14.956 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:14.981 INFO:teuthology.orchestra.run.trial090.stdout:Package python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:14.991 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:14.992 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:14.992 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:15.012 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install python3-cephfs 2026-02-22T20:20:15.099 INFO:teuthology.orchestra.run.trial160.stdout:rbd-mirror-20.2.0-794.ga5c3084f.el10.x86_64.rpm 21 MB/s | 2.9 MB 00:00 2026-02-22T20:20:15.100 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:15.100 INFO:teuthology.orchestra.run.trial160.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-22T20:20:15.100 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:15.105 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:15.105 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:15.142 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:15.142 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:15.187 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:36 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:15.226 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repo Size 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout: libcephfs-devel x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 34 k 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout:Installing dependencies: 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout: libcephfs-proxy2 x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 25 k 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:15.227 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:15.228 INFO:teuthology.orchestra.run.trial060.stdout:Install 2 Packages 2026-02-22T20:20:15.228 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:15.228 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 59 k 2026-02-22T20:20:15.228 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 208 k 2026-02-22T20:20:15.228 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:15.288 INFO:teuthology.orchestra.run.trial060.stdout:(1/2): libcephfs-devel-20.2.0-794.ga5c3084f.el1 568 kB/s | 34 kB 00:00 2026-02-22T20:20:15.290 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:15.291 INFO:teuthology.orchestra.run.trial060.stdout:(2/2): libcephfs-proxy2-20.2.0-794.ga5c3084f.el 387 kB/s | 25 kB 00:00 2026-02-22T20:20:15.291 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:15.291 INFO:teuthology.orchestra.run.trial060.stdout:Total 910 kB/s | 59 kB 00:00 2026-02-22T20:20:15.292 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:15.292 INFO:teuthology.orchestra.run.trial160.stdout: Installing : rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:15.295 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:15.295 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:15.296 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:36 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:15.314 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:15.315 INFO:teuthology.orchestra.run.trial160.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:15.315 INFO:teuthology.orchestra.run.trial160.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-22T20:20:15.315 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target' → '/usr/lib/systemd/system/ceph-rbd-mirror.target'. 2026-02-22T20:20:15.315 INFO:teuthology.orchestra.run.trial160.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target' → '/usr/lib/systemd/system/ceph-rbd-mirror.target'. 2026-02-22T20:20:15.315 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:15.324 INFO:teuthology.orchestra.run.trial090.stdout:Package python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:15.325 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:15.325 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:15.333 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:15.334 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:15.334 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:15.354 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install python3-rbd 2026-02-22T20:20:15.373 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:15.374 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 1/2 2026-02-22T20:20:15.386 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 1/2 2026-02-22T20:20:15.405 INFO:teuthology.orchestra.run.trial060.stdout: Installing : libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2/2 2026-02-22T20:20:15.499 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2/2 2026-02-22T20:20:15.499 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:15.500 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:15.500 INFO:teuthology.orchestra.run.trial060.stdout: libcephfs-devel-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:15.500 INFO:teuthology.orchestra.run.trial060.stdout: libcephfs-proxy2-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:15.500 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:15.500 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:15.526 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install librados2 2026-02-22T20:20:15.591 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:15.591 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:15.592 INFO:teuthology.orchestra.run.trial160.stdout: rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:15.592 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:15.592 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:15.618 DEBUG:teuthology.orchestra.run.trial160:> sudo yum -y install rbd-nbd 2026-02-22T20:20:15.649 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:36 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:15.677 INFO:teuthology.orchestra.run.trial090.stdout:Package python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:15.687 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:15.688 INFO:teuthology.orchestra.run.trial090.stdout:Nothing to do. 2026-02-22T20:20:15.688 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:15.708 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install rbd-fuse 2026-02-22T20:20:15.808 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:36 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:15.834 INFO:teuthology.orchestra.run.trial060.stdout:Package librados2-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:15.844 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:15.845 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:15.845 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:15.865 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install librbd1 2026-02-22T20:20:15.910 INFO:teuthology.orchestra.run.trial160.stdout:Last metadata expiration check: 0:00:37 ago on Sun 22 Feb 2026 08:19:38 PM UTC. 2026-02-22T20:20:15.949 INFO:teuthology.orchestra.run.trial160.stdout:Dependencies resolved. 2026-02-22T20:20:15.949 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:15.949 INFO:teuthology.orchestra.run.trial160.stdout: Package Architecture Version Repository Size 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:Installing: 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout: rbd-nbd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 184 k 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:Transaction Summary 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:================================================================================ 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:Install 1 Package 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:Total download size: 184 k 2026-02-22T20:20:15.950 INFO:teuthology.orchestra.run.trial160.stdout:Installed size: 492 k 2026-02-22T20:20:15.951 INFO:teuthology.orchestra.run.trial160.stdout:Downloading Packages: 2026-02-22T20:20:16.004 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:37 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:16.032 INFO:teuthology.orchestra.run.trial160.stdout:rbd-nbd-20.2.0-794.ga5c3084f.el10.x86_64.rpm 2.2 MB/s | 184 kB 00:00 2026-02-22T20:20:16.033 INFO:teuthology.orchestra.run.trial160.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:16.033 INFO:teuthology.orchestra.run.trial160.stdout:Total 2.2 MB/s | 184 kB 00:00 2026-02-22T20:20:16.033 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction check 2026-02-22T20:20:16.037 INFO:teuthology.orchestra.run.trial160.stdout:Transaction check succeeded. 2026-02-22T20:20:16.037 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction test 2026-02-22T20:20:16.041 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:16.042 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:16.042 INFO:teuthology.orchestra.run.trial090.stdout: Package Architecture Version Repository Size 2026-02-22T20:20:16.042 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:16.042 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:16.042 INFO:teuthology.orchestra.run.trial090.stdout: rbd-fuse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 93 k 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 93 k 2026-02-22T20:20:16.043 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 228 k 2026-02-22T20:20:16.044 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:16.066 INFO:teuthology.orchestra.run.trial160.stdout:Transaction test succeeded. 2026-02-22T20:20:16.066 INFO:teuthology.orchestra.run.trial160.stdout:Running transaction 2026-02-22T20:20:16.113 INFO:teuthology.orchestra.run.trial090.stdout:rbd-fuse-20.2.0-794.ga5c3084f.el10.x86_64.rpm 1.3 MB/s | 93 kB 00:00 2026-02-22T20:20:16.113 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:16.114 INFO:teuthology.orchestra.run.trial090.stdout:Total 1.3 MB/s | 93 kB 00:00 2026-02-22T20:20:16.114 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:16.117 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:16.118 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:16.118 INFO:teuthology.orchestra.run.trial160.stdout: Preparing : 1/1 2026-02-22T20:20:16.137 INFO:teuthology.orchestra.run.trial160.stdout: Installing : rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:16.146 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:16.146 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:16.157 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:37 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:16.188 INFO:teuthology.orchestra.run.trial060.stdout:Package librbd1-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:16.195 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:16.197 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:16.198 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:16.198 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:16.213 INFO:teuthology.orchestra.run.trial090.stdout: Installing : rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:16.220 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install python3-rados 2026-02-22T20:20:16.252 INFO:teuthology.orchestra.run.trial160.stdout: Running scriptlet: rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:16.252 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:16.252 INFO:teuthology.orchestra.run.trial160.stdout:Installed: 2026-02-22T20:20:16.252 INFO:teuthology.orchestra.run.trial160.stdout: rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:16.252 INFO:teuthology.orchestra.run.trial160.stdout: 2026-02-22T20:20:16.253 INFO:teuthology.orchestra.run.trial160.stdout:Complete! 2026-02-22T20:20:16.280 DEBUG:teuthology.parallel:result is None 2026-02-22T20:20:16.324 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:16.324 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:16.324 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:16.325 INFO:teuthology.orchestra.run.trial090.stdout: rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:16.325 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:16.325 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:16.350 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install rbd-mirror 2026-02-22T20:20:16.511 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:37 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:16.538 INFO:teuthology.orchestra.run.trial060.stdout:Package python3-rados-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:16.548 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:16.548 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:16.548 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:16.568 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install python3-rgw 2026-02-22T20:20:16.639 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:37 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:16.677 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout: Package Arch Version Repo Size 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout: rbd-mirror x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.9 M 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:16.678 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:16.679 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:16.679 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:16.679 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 2.9 M 2026-02-22T20:20:16.679 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 11 M 2026-02-22T20:20:16.679 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:16.822 INFO:teuthology.orchestra.run.trial090.stdout:rbd-mirror-20.2.0-794.ga5c3084f.el10.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-22T20:20:16.822 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:16.822 INFO:teuthology.orchestra.run.trial090.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-22T20:20:16.822 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:16.828 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:16.828 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:16.858 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:37 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:16.865 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:16.865 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:16.885 INFO:teuthology.orchestra.run.trial060.stdout:Package python3-rgw-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:16.895 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:16.896 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:16.896 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:16.916 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install python3-cephfs 2026-02-22T20:20:17.010 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:17.012 INFO:teuthology.orchestra.run.trial090.stdout: Installing : rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:17.034 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:17.034 INFO:teuthology.orchestra.run.trial090.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:17.034 INFO:teuthology.orchestra.run.trial090.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-22T20:20:17.035 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target' → '/usr/lib/systemd/system/ceph-rbd-mirror.target'. 2026-02-22T20:20:17.035 INFO:teuthology.orchestra.run.trial090.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target' → '/usr/lib/systemd/system/ceph-rbd-mirror.target'. 2026-02-22T20:20:17.035 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:17.202 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:38 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:17.230 INFO:teuthology.orchestra.run.trial060.stdout:Package python3-cephfs-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:17.240 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:17.241 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:17.241 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:17.262 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install python3-rbd 2026-02-22T20:20:17.340 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:17.340 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:17.340 INFO:teuthology.orchestra.run.trial090.stdout: rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:17.341 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:17.341 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:17.366 DEBUG:teuthology.orchestra.run.trial090:> sudo yum -y install rbd-nbd 2026-02-22T20:20:17.545 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:38 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:17.571 INFO:teuthology.orchestra.run.trial060.stdout:Package python3-rbd-2:20.2.0-794.ga5c3084f.el10.x86_64 is already installed. 2026-02-22T20:20:17.581 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:17.581 INFO:teuthology.orchestra.run.trial060.stdout:Nothing to do. 2026-02-22T20:20:17.581 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:17.601 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install rbd-fuse 2026-02-22T20:20:17.658 INFO:teuthology.orchestra.run.trial090.stdout:Last metadata expiration check: 0:00:38 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:17.696 INFO:teuthology.orchestra.run.trial090.stdout:Dependencies resolved. 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout: Package Architecture Version Repository Size 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout:Installing: 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout: rbd-nbd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 184 k 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout:Transaction Summary 2026-02-22T20:20:17.697 INFO:teuthology.orchestra.run.trial090.stdout:================================================================================ 2026-02-22T20:20:17.698 INFO:teuthology.orchestra.run.trial090.stdout:Install 1 Package 2026-02-22T20:20:17.698 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:17.698 INFO:teuthology.orchestra.run.trial090.stdout:Total download size: 184 k 2026-02-22T20:20:17.698 INFO:teuthology.orchestra.run.trial090.stdout:Installed size: 492 k 2026-02-22T20:20:17.698 INFO:teuthology.orchestra.run.trial090.stdout:Downloading Packages: 2026-02-22T20:20:17.780 INFO:teuthology.orchestra.run.trial090.stdout:rbd-nbd-20.2.0-794.ga5c3084f.el10.x86_64.rpm 2.2 MB/s | 184 kB 00:00 2026-02-22T20:20:17.780 INFO:teuthology.orchestra.run.trial090.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:17.780 INFO:teuthology.orchestra.run.trial090.stdout:Total 2.1 MB/s | 184 kB 00:00 2026-02-22T20:20:17.780 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction check 2026-02-22T20:20:17.785 INFO:teuthology.orchestra.run.trial090.stdout:Transaction check succeeded. 2026-02-22T20:20:17.785 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction test 2026-02-22T20:20:17.814 INFO:teuthology.orchestra.run.trial090.stdout:Transaction test succeeded. 2026-02-22T20:20:17.814 INFO:teuthology.orchestra.run.trial090.stdout:Running transaction 2026-02-22T20:20:17.867 INFO:teuthology.orchestra.run.trial090.stdout: Preparing : 1/1 2026-02-22T20:20:17.885 INFO:teuthology.orchestra.run.trial090.stdout: Installing : rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:17.896 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:38 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:17.934 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:17.935 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:17.935 INFO:teuthology.orchestra.run.trial060.stdout: Package Architecture Version Repository Size 2026-02-22T20:20:17.935 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:17.935 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:17.935 INFO:teuthology.orchestra.run.trial060.stdout: rbd-fuse x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 93 k 2026-02-22T20:20:17.935 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 93 k 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 228 k 2026-02-22T20:20:17.936 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:18.004 INFO:teuthology.orchestra.run.trial090.stdout: Running scriptlet: rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:18.004 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:18.004 INFO:teuthology.orchestra.run.trial090.stdout:Installed: 2026-02-22T20:20:18.004 INFO:teuthology.orchestra.run.trial090.stdout: rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:18.004 INFO:teuthology.orchestra.run.trial090.stdout: 2026-02-22T20:20:18.004 INFO:teuthology.orchestra.run.trial090.stdout:Complete! 2026-02-22T20:20:18.007 INFO:teuthology.orchestra.run.trial060.stdout:rbd-fuse-20.2.0-794.ga5c3084f.el10.x86_64.rpm 1.3 MB/s | 93 kB 00:00 2026-02-22T20:20:18.008 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:18.008 INFO:teuthology.orchestra.run.trial060.stdout:Total 1.2 MB/s | 93 kB 00:00 2026-02-22T20:20:18.008 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:18.012 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:18.012 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:18.031 DEBUG:teuthology.parallel:result is None 2026-02-22T20:20:18.041 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:18.041 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:18.089 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:18.108 INFO:teuthology.orchestra.run.trial060.stdout: Installing : rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:18.220 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:18.220 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:18.220 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:18.220 INFO:teuthology.orchestra.run.trial060.stdout: rbd-fuse-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:18.220 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:18.221 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:18.246 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install rbd-mirror 2026-02-22T20:20:18.537 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:39 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout: Package Arch Version Repo Size 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout: rbd-mirror x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 2.9 M 2026-02-22T20:20:18.574 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 2.9 M 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 11 M 2026-02-22T20:20:18.575 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:18.718 INFO:teuthology.orchestra.run.trial060.stdout:rbd-mirror-20.2.0-794.ga5c3084f.el10.x86_64.rpm 21 MB/s | 2.9 MB 00:00 2026-02-22T20:20:18.718 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:18.718 INFO:teuthology.orchestra.run.trial060.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-22T20:20:18.718 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:18.723 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:18.723 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:18.760 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:18.760 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:18.908 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:18.909 INFO:teuthology.orchestra.run.trial060.stdout: Installing : rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:18.932 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:18.932 INFO:teuthology.orchestra.run.trial060.stdout:Glob pattern passed to preset, but globs are not supported for this. 2026-02-22T20:20:18.932 INFO:teuthology.orchestra.run.trial060.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-22T20:20:18.932 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target' → '/usr/lib/systemd/system/ceph-rbd-mirror.target'. 2026-02-22T20:20:18.932 INFO:teuthology.orchestra.run.trial060.stdout:Created symlink '/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target' → '/usr/lib/systemd/system/ceph-rbd-mirror.target'. 2026-02-22T20:20:18.932 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.216 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.217 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:19.217 INFO:teuthology.orchestra.run.trial060.stdout: rbd-mirror-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:19.217 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.217 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:19.244 DEBUG:teuthology.orchestra.run.trial060:> sudo yum -y install rbd-nbd 2026-02-22T20:20:19.536 INFO:teuthology.orchestra.run.trial060.stdout:Last metadata expiration check: 0:00:40 ago on Sun 22 Feb 2026 08:19:39 PM UTC. 2026-02-22T20:20:19.573 INFO:teuthology.orchestra.run.trial060.stdout:Dependencies resolved. 2026-02-22T20:20:19.573 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:19.573 INFO:teuthology.orchestra.run.trial060.stdout: Package Architecture Version Repository Size 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:Installing: 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout: rbd-nbd x86_64 2:20.2.0-794.ga5c3084f.el10 ceph 184 k 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:Transaction Summary 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:================================================================================ 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:Install 1 Package 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:Total download size: 184 k 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:Installed size: 492 k 2026-02-22T20:20:19.574 INFO:teuthology.orchestra.run.trial060.stdout:Downloading Packages: 2026-02-22T20:20:19.657 INFO:teuthology.orchestra.run.trial060.stdout:rbd-nbd-20.2.0-794.ga5c3084f.el10.x86_64.rpm 2.1 MB/s | 184 kB 00:00 2026-02-22T20:20:19.658 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:19.658 INFO:teuthology.orchestra.run.trial060.stdout:Total 2.1 MB/s | 184 kB 00:00 2026-02-22T20:20:19.659 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction check 2026-02-22T20:20:19.663 INFO:teuthology.orchestra.run.trial060.stdout:Transaction check succeeded. 2026-02-22T20:20:19.663 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction test 2026-02-22T20:20:19.692 INFO:teuthology.orchestra.run.trial060.stdout:Transaction test succeeded. 2026-02-22T20:20:19.692 INFO:teuthology.orchestra.run.trial060.stdout:Running transaction 2026-02-22T20:20:19.744 INFO:teuthology.orchestra.run.trial060.stdout: Preparing : 1/1 2026-02-22T20:20:19.762 INFO:teuthology.orchestra.run.trial060.stdout: Installing : rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:19.876 INFO:teuthology.orchestra.run.trial060.stdout: Running scriptlet: rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 1/1 2026-02-22T20:20:19.876 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.876 INFO:teuthology.orchestra.run.trial060.stdout:Installed: 2026-02-22T20:20:19.876 INFO:teuthology.orchestra.run.trial060.stdout: rbd-nbd-2:20.2.0-794.ga5c3084f.el10.x86_64 2026-02-22T20:20:19.877 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:19.877 INFO:teuthology.orchestra.run.trial060.stdout:Complete! 2026-02-22T20:20:19.906 DEBUG:teuthology.parallel:result is None 2026-02-22T20:20:19.906 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:20.070 DEBUG:teuthology.orchestra.run.trial060:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-22T20:20:20.091 INFO:teuthology.orchestra.run.trial060.stdout:20.2.0-794.ga5c3084f.el10 2026-02-22T20:20:20.091 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-794.ga5c3084f.el10 2026-02-22T20:20:20.092 INFO:teuthology.task.install:The correct ceph version 20.2.0-794.ga5c3084f is installed. 2026-02-22T20:20:20.093 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:20.230 DEBUG:teuthology.orchestra.run.trial090:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-22T20:20:20.252 INFO:teuthology.orchestra.run.trial090.stdout:20.2.0-794.ga5c3084f.el10 2026-02-22T20:20:20.253 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-794.ga5c3084f.el10 2026-02-22T20:20:20.253 INFO:teuthology.task.install:The correct ceph version 20.2.0-794.ga5c3084f is installed. 2026-02-22T20:20:20.255 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:20.406 DEBUG:teuthology.orchestra.run.trial160:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-22T20:20:20.429 INFO:teuthology.orchestra.run.trial160.stdout:20.2.0-794.ga5c3084f.el10 2026-02-22T20:20:20.430 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-794.ga5c3084f.el10 2026-02-22T20:20:20.430 INFO:teuthology.task.install:The correct ceph version 20.2.0-794.ga5c3084f is installed. 2026-02-22T20:20:20.432 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-02-22T20:20:20.432 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:20:20.433 DEBUG:teuthology.orchestra.run.trial060:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-22T20:20:20.462 DEBUG:teuthology.orchestra.run.trial090:> set -ex 2026-02-22T20:20:20.463 DEBUG:teuthology.orchestra.run.trial090:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-22T20:20:20.492 DEBUG:teuthology.orchestra.run.trial160:> set -ex 2026-02-22T20:20:20.492 DEBUG:teuthology.orchestra.run.trial160:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-22T20:20:20.522 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-02-22T20:20:20.522 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:20:20.522 DEBUG:teuthology.orchestra.run.trial060:> sudo dd of=/usr/bin/daemon-helper 2026-02-22T20:20:20.550 DEBUG:teuthology.orchestra.run.trial060:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-22T20:20:20.616 DEBUG:teuthology.orchestra.run.trial090:> set -ex 2026-02-22T20:20:20.616 DEBUG:teuthology.orchestra.run.trial090:> sudo dd of=/usr/bin/daemon-helper 2026-02-22T20:20:20.644 DEBUG:teuthology.orchestra.run.trial090:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-22T20:20:20.710 DEBUG:teuthology.orchestra.run.trial160:> set -ex 2026-02-22T20:20:20.711 DEBUG:teuthology.orchestra.run.trial160:> sudo dd of=/usr/bin/daemon-helper 2026-02-22T20:20:20.740 DEBUG:teuthology.orchestra.run.trial160:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-22T20:20:20.806 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-02-22T20:20:20.807 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:20:20.807 DEBUG:teuthology.orchestra.run.trial060:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-22T20:20:20.836 DEBUG:teuthology.orchestra.run.trial060:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-22T20:20:20.902 DEBUG:teuthology.orchestra.run.trial090:> set -ex 2026-02-22T20:20:20.903 DEBUG:teuthology.orchestra.run.trial090:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-22T20:20:20.931 DEBUG:teuthology.orchestra.run.trial090:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-22T20:20:20.997 DEBUG:teuthology.orchestra.run.trial160:> set -ex 2026-02-22T20:20:20.997 DEBUG:teuthology.orchestra.run.trial160:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-22T20:20:21.024 DEBUG:teuthology.orchestra.run.trial160:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-22T20:20:21.089 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-02-22T20:20:21.090 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:20:21.090 DEBUG:teuthology.orchestra.run.trial060:> sudo dd of=/usr/bin/stdin-killer 2026-02-22T20:20:21.118 DEBUG:teuthology.orchestra.run.trial060:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-22T20:20:21.184 DEBUG:teuthology.orchestra.run.trial090:> set -ex 2026-02-22T20:20:21.185 DEBUG:teuthology.orchestra.run.trial090:> sudo dd of=/usr/bin/stdin-killer 2026-02-22T20:20:21.213 DEBUG:teuthology.orchestra.run.trial090:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-22T20:20:21.279 DEBUG:teuthology.orchestra.run.trial160:> set -ex 2026-02-22T20:20:21.279 DEBUG:teuthology.orchestra.run.trial160:> sudo dd of=/usr/bin/stdin-killer 2026-02-22T20:20:21.307 DEBUG:teuthology.orchestra.run.trial160:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-22T20:20:21.374 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-22T20:20:21.510 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': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e', 'distro-suffix': 'rockylinux-10'} 2026-02-22T20:20:21.510 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:21.512 INFO:tasks.cephadm:Cluster fsid is e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:21.512 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-22T20:20:21.512 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '10.20.193.60', 'mon.b': '10.20.193.90', 'mon.c': '10.20.193.160'} 2026-02-22T20:20:21.512 INFO:tasks.cephadm:First mon is mon.a on trial060 2026-02-22T20:20:21.512 INFO:tasks.cephadm:First mgr is a 2026-02-22T20:20:21.512 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-22T20:20:21.512 DEBUG:teuthology.orchestra.run.trial060:> sudo hostname $(hostname -s) 2026-02-22T20:20:21.540 DEBUG:teuthology.orchestra.run.trial090:> sudo hostname $(hostname -s) 2026-02-22T20:20:21.567 DEBUG:teuthology.orchestra.run.trial160:> sudo hostname $(hostname -s) 2026-02-22T20:20:21.595 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-22T20:20:21.595 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=rocky%2F10%2Fx86_64&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:21.749 INFO:tasks.cephadm:builder_project result: [{'url': 'https://3.chacra.ceph.com/r/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/flavors/default/', 'ref': 'wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle', 'sha1': 'a5c3084f688b1f6eff223b8d259a8316f9844c8e', 'distro': 'rocky', 'distro_version': '10', 'distro_codename': None, 'modified': '2026-02-22 17:26:33.987932', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['source', 'x86_64'], 'extra': {'version': '20.2.0-794-ga5c3084f', 'package_manager_version': '20.2.0-794.ga5c3084f', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3183/', 'root_build_cause': '', 'node_name': '10.20.192.25+soko15', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-22T20:20:21.903 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, sha1 a5c3084f688b1f6eff223b8d259a8316f9844c8e from https://shaman.ceph.com/api/search/?project=ceph&distros=rocky%2F10%2Fx86_64&flavor=default&sha1=a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:21.904 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/x86_64/flavors/default/cephadm 2026-02-22T20:20:21.904 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/x86_64/flavors/default/cephadm 2026-02-22T20:20:21.905 DEBUG:teuthology.orchestra.run.trial060:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.238 INFO:teuthology.orchestra.run.trial060.stdout:-rw-r--r--. 1 ubuntu ubuntu 1391441 Feb 22 20:20 /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.239 DEBUG:teuthology.orchestra.run.trial090:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.555 INFO:teuthology.orchestra.run.trial090.stdout:-rw-r--r--. 1 ubuntu ubuntu 1391441 Feb 22 20:20 /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.555 DEBUG:teuthology.orchestra.run.trial160:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle/a5c3084f688b1f6eff223b8d259a8316f9844c8e/rocky/10/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.870 INFO:teuthology.orchestra.run.trial160.stdout:-rw-r--r--. 1 ubuntu ubuntu 1391441 Feb 22 20:20 /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.870 DEBUG:teuthology.orchestra.run.trial060:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.889 DEBUG:teuthology.orchestra.run.trial090:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.910 DEBUG:teuthology.orchestra.run.trial160:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:22.946 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e on all hosts... 2026-02-22T20:20:22.947 DEBUG:teuthology.orchestra.run.trial060:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e pull 2026-02-22T20:20:22.949 DEBUG:teuthology.orchestra.run.trial090:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e pull 2026-02-22T20:20:22.953 DEBUG:teuthology.orchestra.run.trial160:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e pull 2026-02-22T20:20:23.182 INFO:teuthology.orchestra.run.trial060.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e... 2026-02-22T20:20:23.189 INFO:teuthology.orchestra.run.trial090.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e... 2026-02-22T20:20:23.197 INFO:teuthology.orchestra.run.trial160.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e... 2026-02-22T20:20:31.156 INFO:teuthology.orchestra.run.trial160.stdout:{ 2026-02-22T20:20:31.157 INFO:teuthology.orchestra.run.trial160.stdout: "ceph_version": "ceph version 20.2.0-794-ga5c3084f (a5c3084f688b1f6eff223b8d259a8316f9844c8e) tentacle (stable)", 2026-02-22T20:20:31.157 INFO:teuthology.orchestra.run.trial160.stdout: "image_id": "d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f", 2026-02-22T20:20:31.157 INFO:teuthology.orchestra.run.trial160.stdout: "repo_digests": [ 2026-02-22T20:20:31.157 INFO:teuthology.orchestra.run.trial160.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ce3c4a5ee95fc314d0f2e14a8e1a74a13fc9db26bcababc4563116f9228e1f60" 2026-02-22T20:20:31.157 INFO:teuthology.orchestra.run.trial160.stdout: ] 2026-02-22T20:20:31.157 INFO:teuthology.orchestra.run.trial160.stdout:} 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout:{ 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout: "ceph_version": "ceph version 20.2.0-794-ga5c3084f (a5c3084f688b1f6eff223b8d259a8316f9844c8e) tentacle (stable)", 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout: "image_id": "d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f", 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout: "repo_digests": [ 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ce3c4a5ee95fc314d0f2e14a8e1a74a13fc9db26bcababc4563116f9228e1f60" 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout: ] 2026-02-22T20:20:31.168 INFO:teuthology.orchestra.run.trial090.stdout:} 2026-02-22T20:20:31.203 INFO:teuthology.orchestra.run.trial060.stdout:{ 2026-02-22T20:20:31.203 INFO:teuthology.orchestra.run.trial060.stdout: "ceph_version": "ceph version 20.2.0-794-ga5c3084f (a5c3084f688b1f6eff223b8d259a8316f9844c8e) tentacle (stable)", 2026-02-22T20:20:31.203 INFO:teuthology.orchestra.run.trial060.stdout: "image_id": "d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f", 2026-02-22T20:20:31.204 INFO:teuthology.orchestra.run.trial060.stdout: "repo_digests": [ 2026-02-22T20:20:31.204 INFO:teuthology.orchestra.run.trial060.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:ce3c4a5ee95fc314d0f2e14a8e1a74a13fc9db26bcababc4563116f9228e1f60" 2026-02-22T20:20:31.204 INFO:teuthology.orchestra.run.trial060.stdout: ] 2026-02-22T20:20:31.204 INFO:teuthology.orchestra.run.trial060.stdout:} 2026-02-22T20:20:31.221 DEBUG:teuthology.orchestra.run.trial060:> sudo mkdir -p /etc/ceph 2026-02-22T20:20:31.286 DEBUG:teuthology.orchestra.run.trial090:> sudo mkdir -p /etc/ceph 2026-02-22T20:20:31.316 DEBUG:teuthology.orchestra.run.trial160:> sudo mkdir -p /etc/ceph 2026-02-22T20:20:31.346 DEBUG:teuthology.orchestra.run.trial060:> sudo chmod 777 /etc/ceph 2026-02-22T20:20:31.374 DEBUG:teuthology.orchestra.run.trial090:> sudo chmod 777 /etc/ceph 2026-02-22T20:20:31.400 DEBUG:teuthology.orchestra.run.trial160:> sudo chmod 777 /etc/ceph 2026-02-22T20:20:31.427 INFO:tasks.cephadm:Writing seed config... 2026-02-22T20:20:31.429 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-22T20:20:31.430 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-22T20:20:31.431 DEBUG:teuthology.orchestra.run.trial060:> set -ex 2026-02-22T20:20:31.431 DEBUG:teuthology.orchestra.run.trial060:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-22T20:20:31.448 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=isa technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = e9aa929d-102b-11f1-b67f-d404e6e7d460 mon election default strategy = 3 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd mclock skip benchmark = true osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 mgr/cephadm/use_agent = True [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2026-02-22T20:20:31.448 DEBUG:teuthology.orchestra.run.trial060:mon.a> sudo journalctl -f -n 0 -u ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service 2026-02-22T20:20:31.490 DEBUG:teuthology.orchestra.run.trial060:mgr.a> sudo journalctl -f -n 0 -u ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service 2026-02-22T20:20:31.533 INFO:tasks.cephadm:Bootstrapping... 2026-02-22T20:20:31.533 DEBUG:teuthology.orchestra.run.trial060:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -v bootstrap --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 10.20.193.60 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-22T20:20:31.678 INFO:teuthology.orchestra.run.trial060.stdout:-------------------------------------------------------------------------------- 2026-02-22T20:20:31.679 INFO:teuthology.orchestra.run.trial060.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e', '-v', 'bootstrap', '--fsid', 'e9aa929d-102b-11f1-b67f-d404e6e7d460', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '10.20.193.60', '--skip-admin-label'] 2026-02-22T20:20:31.679 INFO:teuthology.orchestra.run.trial060.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-22T20:20:31.679 INFO:teuthology.orchestra.run.trial060.stdout:Verifying podman|docker is present... 2026-02-22T20:20:31.694 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stdout 5.6.0 2026-02-22T20:20:31.694 INFO:teuthology.orchestra.run.trial060.stdout:Verifying lvm2 is present... 2026-02-22T20:20:31.694 INFO:teuthology.orchestra.run.trial060.stdout:Verifying time synchronization is in place... 2026-02-22T20:20:31.699 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 4 from systemctl is-enabled chrony.service 2026-02-22T20:20:31.699 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout not-found 2026-02-22T20:20:31.703 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 4 from systemctl is-active chrony.service 2026-02-22T20:20:31.703 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout inactive 2026-02-22T20:20:31.707 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout enabled 2026-02-22T20:20:31.712 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout active 2026-02-22T20:20:31.712 INFO:teuthology.orchestra.run.trial060.stdout:Unit chronyd.service is enabled and running 2026-02-22T20:20:31.712 INFO:teuthology.orchestra.run.trial060.stdout:Repeating the final host check... 2026-02-22T20:20:31.728 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stdout 5.6.0 2026-02-22T20:20:31.728 INFO:teuthology.orchestra.run.trial060.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-22T20:20:31.728 INFO:teuthology.orchestra.run.trial060.stdout:systemctl is present 2026-02-22T20:20:31.728 INFO:teuthology.orchestra.run.trial060.stdout:lvcreate is present 2026-02-22T20:20:31.732 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 4 from systemctl is-enabled chrony.service 2026-02-22T20:20:31.732 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout not-found 2026-02-22T20:20:31.736 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 4 from systemctl is-active chrony.service 2026-02-22T20:20:31.736 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout inactive 2026-02-22T20:20:31.740 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout enabled 2026-02-22T20:20:31.744 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout active 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Unit chronyd.service is enabled and running 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Host looks OK 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Cluster fsid: e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Acquiring lock 139994517831504 on /run/cephadm/e9aa929d-102b-11f1-b67f-d404e6e7d460.lock 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Lock 139994517831504 acquired on /run/cephadm/e9aa929d-102b-11f1-b67f-d404e6e7d460.lock 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Verifying IP 10.20.193.60 port 3300 ... 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Verifying IP 10.20.193.60 port 6789 ... 2026-02-22T20:20:31.745 INFO:teuthology.orchestra.run.trial060.stdout:Base mon IP(s) is [10.20.193.60:3300, 10.20.193.60:6789], mon addrv is [v2:10.20.193.60:3300,v1:10.20.193.60:6789] 2026-02-22T20:20:31.746 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0np0 proto dhcp src 10.20.193.60 metric 102 2026-02-22T20:20:31.746 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0np0 proto kernel scope link src 10.20.193.60 metric 102 2026-02-22T20:20:31.746 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-22T20:20:31.747 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0np0 proto kernel metric 256 pref medium 2026-02-22T20:20:31.747 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-22T20:20:31.749 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-22T20:20:31.749 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout inet6 ::1/128 scope host noprefixroute 2026-02-22T20:20:31.749 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-22T20:20:31.749 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-22T20:20:31.749 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout inet6 fe80::bc3a:f2ff:feb6:59f/64 scope link noprefixroute 2026-02-22T20:20:31.749 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout 3: enp1s0f0np0: mtu 1500 state UP qlen 1000 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:6294/64 scope link proto kernel_ll 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:Mon IP `10.20.193.60` is in CIDR network `10.20.192.0/20` 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:Mon IP `10.20.193.60` is in CIDR network `10.20.192.0/20` 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-22T20:20:31.750 INFO:teuthology.orchestra.run.trial060.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e... 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stdout d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e... 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stderr Getting image source signatures 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stderr Copying blob sha256:c8c4905750a0079fdc4bbda1b2e09953aa189ec168b8dd2a90862dd07b830f80 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stderr Copying config sha256:d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f 2026-02-22T20:20:32.045 INFO:teuthology.orchestra.run.trial060.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-22T20:20:32.150 INFO:teuthology.orchestra.run.trial060.stdout:ceph: stdout ceph version 20.2.0-794-ga5c3084f (a5c3084f688b1f6eff223b8d259a8316f9844c8e) tentacle (stable) 2026-02-22T20:20:32.150 INFO:teuthology.orchestra.run.trial060.stdout:Ceph version: ceph version 20.2.0-794-ga5c3084f (a5c3084f688b1f6eff223b8d259a8316f9844c8e) tentacle (stable) 2026-02-22T20:20:32.150 INFO:teuthology.orchestra.run.trial060.stdout:Extracting ceph user uid/gid from container image... 2026-02-22T20:20:32.258 INFO:teuthology.orchestra.run.trial060.stdout:stat: stdout 167 167 2026-02-22T20:20:32.258 INFO:teuthology.orchestra.run.trial060.stdout:Creating initial keys... 2026-02-22T20:20:32.364 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph-authtool: stdout AQAQZZtpUdYaFRAAam5rKQaReVTraoHD7IJjoQ== 2026-02-22T20:20:32.469 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph-authtool: stdout AQAQZZtpIbBbGxAAmUs9TaUY0Udr5Z4UovXwUw== 2026-02-22T20:20:32.569 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph-authtool: stdout AQAQZZtpYm5IIRAAy5dodx2H+vK7Jvhx37pzAQ== 2026-02-22T20:20:32.570 INFO:teuthology.orchestra.run.trial060.stdout:Creating initial monmap... 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:monmaptool for a [v2:10.20.193.60:3300,v1:10.20.193.60:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:setting min_mon_release = tentacle 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/monmaptool: set fsid to e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:32.671 INFO:teuthology.orchestra.run.trial060.stdout:Creating mon... 2026-02-22T20:20:32.797 INFO:teuthology.orchestra.run.trial060.stdout:create mon.a on 2026-02-22T20:20:32.993 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Removed '/etc/systemd/system/multi-user.target.wants/ceph.target'. 2026-02-22T20:20:33.120 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Created symlink '/etc/systemd/system/multi-user.target.wants/ceph.target' → '/etc/systemd/system/ceph.target'. 2026-02-22T20:20:33.248 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Created symlink '/etc/systemd/system/multi-user.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target' → '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target'. 2026-02-22T20:20:33.248 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Created symlink '/etc/systemd/system/ceph.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target' → '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target'. 2026-02-22T20:20:33.401 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a 2026-02-22T20:20:33.401 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to reset failed state of unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service not loaded. 2026-02-22T20:20:33.543 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Created symlink '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service' → '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@.service'. 2026-02-22T20:20:33.674 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 podman[32526]: 2026-02-22 20:20:33.641619875 +0000 UTC m=+0.014882834 container create 05e561bf201d8bc6b611ac4228c6576d898d23510f08326b36bce72fd6b82edf (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0) 2026-02-22T20:20:33.690 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-22T20:20:33.690 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout disabled 2026-02-22T20:20:33.696 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-22T20:20:33.696 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout inactive 2026-02-22T20:20:33.696 INFO:teuthology.orchestra.run.trial060.stdout:firewalld.service is not enabled 2026-02-22T20:20:33.696 INFO:teuthology.orchestra.run.trial060.stdout:Not possible to enable service . firewalld.service is not available 2026-02-22T20:20:33.696 INFO:teuthology.orchestra.run.trial060.stdout:Waiting for mon to start... 2026-02-22T20:20:33.696 INFO:teuthology.orchestra.run.trial060.stdout:Waiting for mon... 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout cluster: 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout id: e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout services: 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.136858s) [leader: a] 2026-02-22T20:20:33.859 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout data: 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout pgs: 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:mon is available 2026-02-22T20:20:33.860 INFO:teuthology.orchestra.run.trial060.stdout:Assimilating anything we can from ceph.conf... 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 podman[32526]: 2026-02-22 20:20:33.675250692 +0000 UTC m=+0.048513641 container init 05e561bf201d8bc6b611ac4228c6576d898d23510f08326b36bce72fd6b82edf (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2) 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 podman[32526]: 2026-02-22 20:20:33.676961221 +0000 UTC m=+0.050224180 container start 05e561bf201d8bc6b611ac4228c6576d898d23510f08326b36bce72fd6b82edf (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True) 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 bash[32526]: 05e561bf201d8bc6b611ac4228c6576d898d23510f08326b36bce72fd6b82edf 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 podman[32526]: 2026-02-22 20:20:33.635710954 +0000 UTC m=+0.008973924 image pull d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 systemd[1]: Started ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460. 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 ceph-mon[32553]: mkfs e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:33.971 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:33 trial060 ceph-mon[32553]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout [global] 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout fsid = e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.60:3300,v1:10.20.193.60:6789] 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-22T20:20:34.007 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout [osd] 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-22T20:20:34.008 INFO:teuthology.orchestra.run.trial060.stdout:Generating new minimal ceph.conf... 2026-02-22T20:20:34.172 INFO:teuthology.orchestra.run.trial060.stdout:Restarting the monitor... 2026-02-22T20:20:34.249 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 systemd[1]: Stopping ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460... 2026-02-22T20:20:34.500 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a[32549]: 2026-02-22T20:20:34.247+0000 7f9b116b5640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-22T20:20:34.500 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a[32549]: 2026-02-22T20:20:34.247+0000 7f9b116b5640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2026-02-22T20:20:34.500 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 podman[32821]: 2026-02-22 20:20:34.491864121 +0000 UTC m=+0.254803327 container died 05e561bf201d8bc6b611ac4228c6576d898d23510f08326b36bce72fd6b82edf (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle) 2026-02-22T20:20:34.500 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 podman[32821]: 2026-02-22 20:20:34.498506634 +0000 UTC m=+0.261445840 container remove 05e561bf201d8bc6b611ac4228c6576d898d23510f08326b36bce72fd6b82edf (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.label-schema.build-date=20260216, OSD_FLAVOR=default, org.label-schema.license=GPLv2, io.buildah.version=1.33.7, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-22T20:20:34.500 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 bash[32821]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a 2026-02-22T20:20:34.685 INFO:teuthology.orchestra.run.trial060.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 systemd[1]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service: Deactivated successfully. 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 systemd[1]: Stopped ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460. 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 systemd[1]: Starting ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460... 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 podman[32940]: 2026-02-22 20:20:34.647342368 +0000 UTC m=+0.014090123 container create b1764ca6711231124a0d00bf4e0338e7c469ad396e480ad5c35fc659b9edd55f (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 podman[32940]: 2026-02-22 20:20:34.679716674 +0000 UTC m=+0.046464429 container init b1764ca6711231124a0d00bf4e0338e7c469ad396e480ad5c35fc659b9edd55f (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.schema-version=1.0, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS) 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 podman[32940]: 2026-02-22 20:20:34.681463271 +0000 UTC m=+0.048211026 container start b1764ca6711231124a0d00bf4e0338e7c469ad396e480ad5c35fc659b9edd55f (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, io.buildah.version=1.33.7) 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 bash[32940]: b1764ca6711231124a0d00bf4e0338e7c469ad396e480ad5c35fc659b9edd55f 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 podman[32940]: 2026-02-22 20:20:34.641608223 +0000 UTC m=+0.008355979 image pull d8ec1b4c35d837cc075707f4148da5c9d37859c08e6182a89676211a1e97a50f quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 systemd[1]: Started ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460. 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: set uid:gid to 167:167 (ceph:ceph) 2026-02-22T20:20:34.837 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: ceph version 20.2.0-794-ga5c3084f (a5c3084f688b1f6eff223b8d259a8316f9844c8e) tentacle (stable - RelWithDebInfo), process ceph-mon, pid 2 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: pidfile_write: ignore empty --pid-file 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: load: jerasure load: lrc 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: RocksDB version: 7.9.2 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Git sha 0 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Compile date 2026-02-22 16:57:58 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: DB SUMMARY 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: DB Session ID: JF026LIS9ALRFQVSROSC 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: CURRENT file: CURRENT 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: IDENTITY file: IDENTITY 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 76551 ; 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.error_if_exists: 0 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.create_if_missing: 0 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.paranoid_checks: 1 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-22T20:20:34.838 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.env: 0x56549c4a74c0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.fs: PosixFileSystem 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.info_log: 0x5654aeaa9f80 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_file_opening_threads: 16 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.statistics: (nil) 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.use_fsync: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_log_file_size: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.keep_log_file_num: 1000 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.recycle_log_file_num: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.allow_fallocate: 1 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.allow_mmap_reads: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.allow_mmap_writes: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.use_direct_reads: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.create_missing_column_families: 0 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.db_log_dir: 2026-02-22T20:20:34.839 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.wal_dir: 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.advise_random_on_open: 1 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.db_write_buffer_size: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.write_buffer_manager: 0x5654aeaac140 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.rate_limiter: (nil) 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.wal_recovery_mode: 2 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.enable_thread_tracking: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.enable_pipelined_write: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.unordered_write: 0 2026-02-22T20:20:34.840 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.row_cache: None 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.wal_filter: None 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.allow_ingest_behind: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.two_write_queues: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.manual_wal_flush: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.wal_compression: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.atomic_flush: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.log_readahead_size: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.best_efforts_recovery: 0 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-22T20:20:34.841 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.allow_data_in_errors: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.db_host_id: __hostname__ 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_background_jobs: 2 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_background_compactions: -1 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_subcompactions: 1 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_total_wal_size: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_open_files: -1 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bytes_per_sync: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_readahead_size: 0 2026-02-22T20:20:34.842 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_background_flushes: -1 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Compression algorithms supported: 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kZSTD supported: 0 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kXpressCompression supported: 0 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kBZip2Compression supported: 0 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kLZ4Compression supported: 1 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kZlibCompression supported: 1 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kLZ4HCCompression supported: 1 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: kSnappyCompression supported: 1 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.merge_operator: 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_filter: None 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_filter_factory: None 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.sst_partitioner_factory: None 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-22T20:20:34.843 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x5654aeaa8640) 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: cache_index_and_filter_blocks: 1 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: pin_top_level_index_and_filter: 1 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: index_type: 0 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: data_block_index_type: 0 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: index_shortening: 1 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: checksum: 4 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: no_block_cache: 0 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: block_cache: 0x5654aeac9b90 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: block_cache_name: BinnedLRUCache 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: block_cache_options: 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: capacity : 536870912 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: num_shard_bits : 4 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: strict_capacity_limit : 0 2026-02-22T20:20:34.844 INFO:journalctl@ceph.mon.a.trial060.stdout: high_pri_pool_ratio: 0.000 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: block_cache_compressed: (nil) 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: persistent_cache: (nil) 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: block_size: 4096 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: block_size_deviation: 10 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: block_restart_interval: 16 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: index_block_restart_interval: 1 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: metadata_block_size: 4096 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: partition_filters: 0 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: use_delta_encoding: 1 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: filter_policy: bloomfilter 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: whole_key_filtering: 1 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: verify_compression: 0 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: read_amp_bytes_per_bit: 0 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: format_version: 5 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: enable_index_compression: 1 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: block_align: 0 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: max_auto_readahead_size: 262144 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: prepopulate_block_cache: 0 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: initial_auto_readahead_size: 8192 2026-02-22T20:20:34.845 INFO:journalctl@ceph.mon.a.trial060.stdout: num_file_reads_for_auto_readahead: 2 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.write_buffer_size: 33554432 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_write_buffer_number: 2 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression: NoCompression 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression: Disabled 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.prefix_extractor: nullptr 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.num_levels: 7 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-22T20:20:34.846 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.level: 32767 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.strategy: 0 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.enabled: false 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.target_file_size_base: 67108864 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-22T20:20:34.847 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.arena_block_size: 1048576 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.disable_auto_compactions: 0 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-22T20:20:34.848 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.inplace_update_support: 0 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.bloom_locality: 0 2026-02-22T20:20:34.849 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.max_successive_merges: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.paranoid_file_checks: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.force_consistency_checks: 1 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.report_bg_io_stats: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.ttl: 2592000 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.enable_blob_files: false 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.min_blob_size: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.blob_file_size: 268435456 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.blob_file_starting_level: 0 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2026-02-22T20:20:34.850 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 0441d93b-1ec4-48e3-9e54-c9858ad4e9c0 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771791634699783, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771791634700424, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73643, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 229, "table_properties": {"data_size": 71918, "index_size": 174, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 517, "raw_key_size": 9783, "raw_average_key_size": 48, "raw_value_size": 66332, "raw_average_value_size": 331, "num_data_blocks": 8, "num_entries": 200, "num_filter_entries": 200, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771791634, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "0441d93b-1ec4-48e3-9e54-c9858ad4e9c0", "db_session_id": "JF026LIS9ALRFQVSROSC", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771791634700476, "job": 1, "event": "recovery_finished"} 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x5654aeacce00 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: DB pointer 0x5654af8be000 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: ** DB Stats ** 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-22T20:20:34.851 INFO:journalctl@ceph.mon.a.trial060.stdout: 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: ** Compaction Stats [default] ** 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: L0 2/0 73.78 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 149.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Sum 2/0 73.78 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 149.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 149.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: ** Compaction Stats [default] ** 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 149.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-22T20:20:34.852 INFO:journalctl@ceph.mon.a.trial060.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: Cumulative compaction: 0.00 GB write, 25.96 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: Interval compaction: 0.00 GB write, 25.96 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: Block cache BinnedLRUCache@0x5654aeac9b90#2 capacity: 512.00 MB usage: 1.06 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.70 KB,0.00013411%) IndexBlock(2,0.36 KB,6.85453e-05%) Misc(1,0.00 KB,0%) 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: starting mon.a rank 0 at public addrs [v2:10.20.193.60:3300/0,v1:10.20.193.60:6789/0] at bind addrs [v2:10.20.193.60:3300/0,v1:10.20.193.60:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???) e1 preinit fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).mds e1 new map 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).mds e1 print_map 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: e1 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: btime 2026-02-22T20:20:33:703153+0000 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: legacy client fscid: -1 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout: No filesystems configured 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-22T20:20:34.853 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: monmap epoch 1 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: last_changed 2026-02-22T20:20:32.660386+0000 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: created 2026-02-22T20:20:32.660386+0000 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: min_mon_release 20 (tentacle) 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: election_strategy: 1 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: 0: [v2:10.20.193.60:3300/0,v1:10.20.193.60:6789/0] mon.a 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: fsmap 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: osdmap e1: 0 total, 0 up, 0 in 2026-02-22T20:20:34.854 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:34 trial060 ceph-mon[32968]: mgrmap e1: no daemons active 2026-02-22T20:20:34.854 INFO:teuthology.orchestra.run.trial060.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-22T20:20:34.855 INFO:teuthology.orchestra.run.trial060.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-22T20:20:34.855 INFO:teuthology.orchestra.run.trial060.stdout:Creating mgr... 2026-02-22T20:20:34.855 INFO:teuthology.orchestra.run.trial060.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-22T20:20:34.855 INFO:teuthology.orchestra.run.trial060.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-22T20:20:35.004 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a 2026-02-22T20:20:35.004 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to reset failed state of unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service not loaded. 2026-02-22T20:20:35.134 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Created symlink '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service' → '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@.service'. 2026-02-22T20:20:35.287 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-22T20:20:35.287 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout disabled 2026-02-22T20:20:35.292 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-22T20:20:35.293 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout inactive 2026-02-22T20:20:35.293 INFO:teuthology.orchestra.run.trial060.stdout:firewalld.service is not enabled 2026-02-22T20:20:35.293 INFO:teuthology.orchestra.run.trial060.stdout:Not possible to enable service . firewalld.service is not available 2026-02-22T20:20:35.298 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-22T20:20:35.298 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout disabled 2026-02-22T20:20:35.303 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-22T20:20:35.303 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stdout inactive 2026-02-22T20:20:35.303 INFO:teuthology.orchestra.run.trial060.stdout:firewalld.service is not enabled 2026-02-22T20:20:35.303 INFO:teuthology.orchestra.run.trial060.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-02-22T20:20:35.303 INFO:teuthology.orchestra.run.trial060.stdout:Waiting for mgr to start... 2026-02-22T20:20:35.303 INFO:teuthology.orchestra.run.trial060.stdout:Waiting for mgr... 2026-02-22T20:20:35.410 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.408+0000 7f9faedec100 -1 mgr[py] Loading module dashboard in main interpreter 2026-02-22T20:20:35.458 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:35.458 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout { 2026-02-22T20:20:35.458 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "fsid": "e9aa929d-102b-11f1-b67f-d404e6e7d460", 2026-02-22T20:20:35.458 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "health": { 2026-02-22T20:20:35.458 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 0 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ], 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "a" 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ], 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-22T20:20:35.459 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-22T20:20:35.460 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:35.461 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "btime": "2026-02-22T20:20:33:703153+0000", 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ], 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-22T20:20:35.462 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "modified": "2026-02-22T20:20:33.703512+0000", 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout } 2026-02-22T20:20:35.463 INFO:teuthology.orchestra.run.trial060.stdout:mgr not available, waiting (1/15)... 2026-02-22T20:20:35.660 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.626+0000 7f9faedec100 -1 mgr[py] Loading module alerts in main interpreter 2026-02-22T20:20:35.660 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.627+0000 7f9faedec100 -1 mgr[py] Loading module smb in main interpreter 2026-02-22T20:20:35.660 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.648+0000 7f9faedec100 -1 mgr[py] Loading module snap_schedule in main interpreter 2026-02-22T20:20:35.660 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.653+0000 7f9faedec100 -1 mgr[py] Loading module stats in main interpreter 2026-02-22T20:20:35.660 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.656+0000 7f9faedec100 -1 mgr[py] Loading module devicehealth in main interpreter 2026-02-22T20:20:35.660 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.658+0000 7f9faedec100 -1 mgr[py] Loading module iostat in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/700944587' entity='client.admin' 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/3917540355' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.659+0000 7f9faedec100 -1 mgr[py] Loading module influx in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.660+0000 7f9faedec100 -1 mgr[py] Loading module telegraf in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.662+0000 7f9faedec100 -1 mgr[py] Loading module volumes in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.685+0000 7f9faedec100 -1 mgr[py] Loading module rbd_support in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.697+0000 7f9faedec100 -1 mgr[py] Loading module mirroring in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.705+0000 7f9faedec100 -1 mgr[py] Loading module rgw in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.708+0000 7f9faedec100 -1 mgr[py] Loading module pg_autoscaler in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.711+0000 7f9faedec100 -1 mgr[py] Loading module mds_autoscaler in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.712+0000 7f9faedec100 -1 mgr[py] Loading module localpool in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.712+0000 7f9faedec100 -1 mgr[py] Loading module k8sevents in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.811+0000 7f9faedec100 -1 mgr[py] Loading module crash in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.813+0000 7f9faedec100 -1 mgr[py] Loading module prometheus in main interpreter 2026-02-22T20:20:35.968 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.821+0000 7f9faedec100 -1 mgr[py] Loading module insights in main interpreter 2026-02-22T20:20:35.969 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.822+0000 7f9faedec100 -1 mgr[py] Loading module test_orchestrator in main interpreter 2026-02-22T20:20:35.969 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.824+0000 7f9faedec100 -1 mgr[py] Loading module selftest in main interpreter 2026-02-22T20:20:35.969 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.826+0000 7f9faedec100 -1 mgr[py] Loading module cephadm in main interpreter 2026-02-22T20:20:35.969 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.967+0000 7f9faedec100 -1 mgr[py] Loading module nfs in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.975+0000 7f9faedec100 -1 mgr[py] Loading module telemetry in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.980+0000 7f9faedec100 -1 mgr[py] Loading module progress in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:35 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:35.983+0000 7f9faedec100 -1 mgr[py] Loading module diskprediction_local in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:36.052+0000 7f9faedec100 -1 mgr[py] Loading module rook in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:36.077+0000 7f9faedec100 -1 mgr[py] Loading module balancer in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:36.082+0000 7f9faedec100 -1 mgr[py] Loading module osd_perf_query in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:36.083+0000 7f9faedec100 -1 mgr[py] Loading module status in main interpreter 2026-02-22T20:20:36.368 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:36.085+0000 7f9faedec100 -1 mgr[py] Loading module osd_support in main interpreter 2026-02-22T20:20:37.118 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: Activating manager daemon a 2026-02-22T20:20:37.118 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: mgrmap e2: a(active, starting, since 0.00274502s) 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: Manager daemon a is now available 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-22T20:20:37.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' 2026-02-22T20:20:37.120 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:36 trial060 ceph-mon[32968]: from='mgr.14100 10.20.193.60:0/1202326330' entity='mgr.a' 2026-02-22T20:20:37.724 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout { 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "fsid": "e9aa929d-102b-11f1-b67f-d404e6e7d460", 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "health": { 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 0 2026-02-22T20:20:37.725 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ], 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "a" 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ], 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-22T20:20:37.726 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-22T20:20:37.727 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "btime": "2026-02-22T20:20:33:703153+0000", 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-22T20:20:37.728 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ], 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "modified": "2026-02-22T20:20:33.703512+0000", 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout }, 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-22T20:20:37.729 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout } 2026-02-22T20:20:37.730 INFO:teuthology.orchestra.run.trial060.stdout:mgr is available 2026-02-22T20:20:37.957 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:37.957 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout [global] 2026-02-22T20:20:37.957 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout fsid = e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.60:3300,v1:10.20.193.60:6789] 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout 2026-02-22T20:20:37.958 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout [osd] 2026-02-22T20:20:37.959 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-22T20:20:37.959 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-22T20:20:37.959 INFO:teuthology.orchestra.run.trial060.stdout:Enabling cephadm module... 2026-02-22T20:20:38.368 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-mon[32968]: mgrmap e3: a(active, since 1.00492s) 2026-02-22T20:20:38.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/1131919462' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-22T20:20:38.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/1257067490' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-22T20:20:38.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/1257067490' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-02-22T20:20:39.204 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/2691369733' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-22T20:20:39.204 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/2691369733' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-22T20:20:39.204 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-mon[32968]: mgrmap e4: a(active, since 2s) 2026-02-22T20:20:39.205 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: ignoring --setuser ceph since I am not root 2026-02-22T20:20:39.205 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: ignoring --setgroup ceph since I am not root 2026-02-22T20:20:39.205 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:38 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:38.979+0000 7f170204e100 -1 mgr[py] Loading module orchestrator in main interpreter 2026-02-22T20:20:39.205 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.076+0000 7f170204e100 -1 mgr[py] Loading module dashboard in main interpreter 2026-02-22T20:20:39.216 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout { 2026-02-22T20:20:39.216 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "epoch": 4, 2026-02-22T20:20:39.216 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-22T20:20:39.216 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-22T20:20:39.216 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-22T20:20:39.217 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout } 2026-02-22T20:20:39.217 INFO:teuthology.orchestra.run.trial060.stdout:Waiting for the mgr to restart... 2026-02-22T20:20:39.217 INFO:teuthology.orchestra.run.trial060.stdout:Waiting for mgr epoch 4... 2026-02-22T20:20:39.468 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.292+0000 7f170204e100 -1 mgr[py] Loading module alerts in main interpreter 2026-02-22T20:20:39.468 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.293+0000 7f170204e100 -1 mgr[py] Loading module smb in main interpreter 2026-02-22T20:20:39.468 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.314+0000 7f170204e100 -1 mgr[py] Loading module snap_schedule in main interpreter 2026-02-22T20:20:39.468 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.319+0000 7f170204e100 -1 mgr[py] Loading module stats in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.322+0000 7f170204e100 -1 mgr[py] Loading module devicehealth in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.324+0000 7f170204e100 -1 mgr[py] Loading module iostat in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.325+0000 7f170204e100 -1 mgr[py] Loading module influx in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.326+0000 7f170204e100 -1 mgr[py] Loading module telegraf in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.328+0000 7f170204e100 -1 mgr[py] Loading module volumes in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.351+0000 7f170204e100 -1 mgr[py] Loading module rbd_support in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.363+0000 7f170204e100 -1 mgr[py] Loading module mirroring in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.371+0000 7f170204e100 -1 mgr[py] Loading module rgw in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.374+0000 7f170204e100 -1 mgr[py] Loading module pg_autoscaler in main interpreter 2026-02-22T20:20:39.469 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.376+0000 7f170204e100 -1 mgr[py] Loading module mds_autoscaler in main interpreter 2026-02-22T20:20:39.470 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.377+0000 7f170204e100 -1 mgr[py] Loading module localpool in main interpreter 2026-02-22T20:20:39.470 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.378+0000 7f170204e100 -1 mgr[py] Loading module k8sevents in main interpreter 2026-02-22T20:20:39.470 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.467+0000 7f170204e100 -1 mgr[py] Loading module crash in main interpreter 2026-02-22T20:20:39.729 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.469+0000 7f170204e100 -1 mgr[py] Loading module prometheus in main interpreter 2026-02-22T20:20:39.729 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.476+0000 7f170204e100 -1 mgr[py] Loading module insights in main interpreter 2026-02-22T20:20:39.729 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.478+0000 7f170204e100 -1 mgr[py] Loading module test_orchestrator in main interpreter 2026-02-22T20:20:39.729 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.479+0000 7f170204e100 -1 mgr[py] Loading module selftest in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.481+0000 7f170204e100 -1 mgr[py] Loading module cephadm in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.621+0000 7f170204e100 -1 mgr[py] Loading module nfs in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.629+0000 7f170204e100 -1 mgr[py] Loading module telemetry in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.635+0000 7f170204e100 -1 mgr[py] Loading module progress in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.637+0000 7f170204e100 -1 mgr[py] Loading module diskprediction_local in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.703+0000 7f170204e100 -1 mgr[py] Loading module rook in main interpreter 2026-02-22T20:20:39.730 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.728+0000 7f170204e100 -1 mgr[py] Loading module balancer in main interpreter 2026-02-22T20:20:40.094 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.733+0000 7f170204e100 -1 mgr[py] Loading module osd_perf_query in main interpreter 2026-02-22T20:20:40.094 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.734+0000 7f170204e100 -1 mgr[py] Loading module status in main interpreter 2026-02-22T20:20:40.094 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:39 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:39.736+0000 7f170204e100 -1 mgr[py] Loading module osd_support in main interpreter 2026-02-22T20:20:40.368 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/1055669739' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-22T20:20:40.368 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: Active manager daemon a restarted 2026-02-22T20:20:40.368 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: Activating manager daemon a 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: osdmap e2: 0 total, 0 up, 0 in 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: mgrmap e5: a(active, starting, since 0.0026842s) 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-22T20:20:40.369 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:40 trial060 ceph-mon[32968]: Manager daemon a is now available 2026-02-22T20:20:40.768 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout { 2026-02-22T20:20:40.768 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 6, 2026-02-22T20:20:40.768 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-22T20:20:40.768 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout } 2026-02-22T20:20:40.768 INFO:teuthology.orchestra.run.trial060.stdout:mgr epoch 4 is available 2026-02-22T20:20:40.768 INFO:teuthology.orchestra.run.trial060.stdout:Verifying orchestrator module is enabled... 2026-02-22T20:20:41.618 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: Client ('10.20.193.60', 36528) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-22T20:20:41.618 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.618 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: mgrmap e6: a(active, since 1.00756s) 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:41.619 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:41 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/3180306785' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-22T20:20:41.966 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-22T20:20:41.966 INFO:teuthology.orchestra.run.trial060.stdout:Setting orchestrator backend to cephadm... 2026-02-22T20:20:42.421 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-22T20:20:42.421 INFO:teuthology.orchestra.run.trial060.stdout:Generating ssh key... 2026-02-22T20:20:42.715 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: Generating public/private ed25519 key pair. 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: Your identification has been saved in /tmp/tmpjht35q9e/key 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: Your public key has been saved in /tmp/tmpjht35q9e/key.pub 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: The key fingerprint is: 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: SHA256:dyHSeM7gv9SHpxN1kTylfGoBrKq62ya7H+sR0Gv2a9E ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: The key's randomart image is: 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: +--[ED25519 256]--+ 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | .. . +| 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | . o .o * | 2026-02-22T20:20:42.716 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | . . + +.. + +| 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | . o *.. ..+.| 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | = So+ ..o. | 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | o oooEo.o | 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | o...o o.o | 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | ..o+.o ..+ | 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: | *@=.. . .. | 2026-02-22T20:20:42.717 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: +----[SHA256]-----+ 2026-02-22T20:20:42.890 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKYv3z91WdNf9lhqanfrlJMIHy2KVmRn5rvwn9mEmfUQ ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:42.890 INFO:teuthology.orchestra.run.trial060.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-22T20:20:42.890 INFO:teuthology.orchestra.run.trial060.stdout:Adding key to root@localhost authorized_keys... 2026-02-22T20:20:42.891 INFO:teuthology.orchestra.run.trial060.stdout:Adding host trial060... 2026-02-22T20:20:43.003 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: Optimize plan auto_2026-02-22_20:20:39 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: Mode upmap, max misplaced 0.050000 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: do_upmap 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: No pools available 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: Found migration_current of "None". Setting to last migration. 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: running migrations 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='client.? 10.20.193.60:0/3180306785' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: mgrmap e7: a(active, since 2s) 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:43.004 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:42 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:44.118 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:43 trial060 ceph-mon[32968]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-22T20:20:44.118 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:43 trial060 ceph-mon[32968]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-22T20:20:44.118 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:43 trial060 ceph-mon[32968]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-22T20:20:44.119 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:43 trial060 ceph-mon[32968]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-22T20:20:44.952 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout Added host 'trial060' with addr '10.20.193.60' 2026-02-22T20:20:44.952 INFO:teuthology.orchestra.run.trial060.stdout:Deploying unmanaged mon service... 2026-02-22T20:20:45.182 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:44 trial060 ceph-mon[32968]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial060", "addr": "10.20.193.60", "target": ["mon-mgr", ""]}]: dispatch 2026-02-22T20:20:45.183 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:44 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' 2026-02-22T20:20:45.183 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:44 trial060 ceph-mon[32968]: from='mgr.14116 10.20.193.60:0/4238185361' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-22T20:20:45.184 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-22T20:20:45.184 INFO:teuthology.orchestra.run.trial060.stdout:Deploying unmanaged mgr service... 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 22 from /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -e NODE_NAME=trial060 -v /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460:/var/log/ceph:z -v /tmp/ceph-tmpdrvpfbx7:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpcodtsfs6:/etc/ceph/ceph.conf:z quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e orch apply mgr --unmanaged 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr Error EINVAL: Traceback (most recent call last): 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/mgr_module.py", line 1975, in _handle_command 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr return self.CLICommand.COMMANDS[cmd['prefix']].call(self, cmd, inbuf) # type: ignore[attr-defined] 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/mgr_module.py", line 533, in call 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr return self.func(mgr, **kwargs) 2026-02-22T20:20:45.423 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/orchestrator/cli.py", line 18, in wrapper 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr return func(*args, **kwargs) 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/orchestrator/module.py", line 1903, in apply_misc 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr cmd_result = self._apply_misc(specs, dry_run, format, no_overwrite, continue_on_error) 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/orchestrator/module.py", line 1918, in _apply_misc 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr completion = self.apply(specs, no_overwrite, continue_on_error) 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/orchestrator/_interface.py", line 1835, in inner 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr completion = self._oremote(method_name, args, kwargs) 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/orchestrator/_interface.py", line 1906, in _oremote 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr return mgr.remote(o, meth, *args, **kwargs) 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/usr/share/ceph/mgr/mgr_module.py", line 2557, in remote 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr return self._ceph_dispatch_remote(module_name, method_name, 2026-02-22T20:20:45.424 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr RuntimeError: Remote method threw exception: Traceback (most recent call last): 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 935, in __new__ 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr sub_cls: Any = cls._cls(service_type) 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 920, in _cls 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr raise SpecValidationError('Spec needs a "service_type" key.') 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr ceph.deployment.hostspec.SpecValidationError: Spec needs a "service_type" key. 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stdout:/usr/bin/ceph: stderr 2026-02-22T20:20:45.425 INFO:teuthology.orchestra.run.trial060.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -e NODE_NAME=trial060 -v /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460:/var/log/ceph:z -v /tmp/ceph-tmpdrvpfbx7:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpcodtsfs6:/etc/ceph/ceph.conf:z quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e orch apply mgr --unmanaged 2026-02-22T20:20:45.426 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:45.426 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:45.426 INFO:teuthology.orchestra.run.trial060.stdout: *************** 2026-02-22T20:20:45.426 INFO:teuthology.orchestra.run.trial060.stdout: Cephadm hit an issue during cluster installation. Current cluster files will be deleted automatically. 2026-02-22T20:20:45.426 INFO:teuthology.orchestra.run.trial060.stdout: To disable this behaviour you can pass the --no-cleanup-on-failure flag. In case of any previous 2026-02-22T20:20:45.426 INFO:teuthology.orchestra.run.trial060.stdout: broken installation, users must use the following command to completely delete the broken cluster: 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: > cephadm rm-cluster --force --zap-osds --fsid 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: for more information please refer to https://docs.ceph.com/en/latest/cephadm/operations/#purging-a-cluster 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: *************** 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout: 2026-02-22T20:20:45.427 INFO:teuthology.orchestra.run.trial060.stdout:Deleting cluster with fsid: e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:45.447 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: Stopping ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460... 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.403+0000 7f160f47b640 -1 mgr dispatch_remote Failed to deserialize (pickle.loads) args: Traceback (most recent call last): 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 935, in __new__ 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: sub_cls: Any = cls._cls(service_type) 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 920, in _cls 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: raise SpecValidationError('Spec needs a "service_type" key.') 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: ceph.deployment.hostspec.SpecValidationError: Spec needs a "service_type" key. 2026-02-22T20:20:45.448 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.404+0000 7f160f47b640 -1 Remote method threw exception: Traceback (most recent call last): 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 935, in __new__ 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: sub_cls: Any = cls._cls(service_type) 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 920, in _cls 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: raise SpecValidationError('Spec needs a "service_type" key.') 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: ceph.deployment.hostspec.SpecValidationError: Spec needs a "service_type" key. 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.404+0000 7f160f47b640 -1 mgr handle_command module 'orchestrator' command handler threw exception: Remote method threw exception: Traceback (most recent call last): 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 935, in __new__ 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: sub_cls: Any = cls._cls(service_type) 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 920, in _cls 2026-02-22T20:20:45.449 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: raise SpecValidationError('Spec needs a "service_type" key.') 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: ceph.deployment.hostspec.SpecValidationError: Spec needs a "service_type" key. 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.404+0000 7f160f47b640 -1 mgr.server reply reply (22) Invalid argument Traceback (most recent call last): 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/mgr_module.py", line 1975, in _handle_command 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: return self.CLICommand.COMMANDS[cmd['prefix']].call(self, cmd, inbuf) # type: ignore[attr-defined] 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/mgr_module.py", line 533, in call 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: return self.func(mgr, **kwargs) 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/orchestrator/cli.py", line 18, in wrapper 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: return func(*args, **kwargs) 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/orchestrator/module.py", line 1903, in apply_misc 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: cmd_result = self._apply_misc(specs, dry_run, format, no_overwrite, continue_on_error) 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/orchestrator/module.py", line 1918, in _apply_misc 2026-02-22T20:20:45.450 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: completion = self.apply(specs, no_overwrite, continue_on_error) 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/orchestrator/_interface.py", line 1835, in inner 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: completion = self._oremote(method_name, args, kwargs) 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/orchestrator/_interface.py", line 1906, in _oremote 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: return mgr.remote(o, meth, *args, **kwargs) 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/usr/share/ceph/mgr/mgr_module.py", line 2557, in remote 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: return self._ceph_dispatch_remote(module_name, method_name, 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: RuntimeError: Remote method threw exception: Traceback (most recent call last): 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 935, in __new__ 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: sub_cls: Any = cls._cls(service_type) 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: File "/lib/python3.9/site-packages/ceph/deployment/service_spec.py", line 920, in _cls 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: raise SpecValidationError('Spec needs a "service_type" key.') 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: ceph.deployment.hostspec.SpecValidationError: Spec needs a "service_type" key. 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.451 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.750 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a[32961]: 2026-02-22T20:20:45.502+0000 7f51bdaa0640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-22T20:20:45.751 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a[32961]: 2026-02-22T20:20:45.502+0000 7f51bdaa0640 -1 mon.a@0(leader) e1 *** Got Signal Terminated *** 2026-02-22T20:20:45.751 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 podman[34905]: 2026-02-22 20:20:45.523259991 +0000 UTC m=+0.030899183 container died b1764ca6711231124a0d00bf4e0338e7c469ad396e480ad5c35fc659b9edd55f (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.33.7, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, OSD_FLAVOR=default, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, org.label-schema.license=GPLv2) 2026-02-22T20:20:45.751 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 podman[34905]: 2026-02-22 20:20:45.537726613 +0000 UTC m=+0.045365805 container remove b1764ca6711231124a0d00bf4e0338e7c469ad396e480ad5c35fc659b9edd55f (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.label-schema.license=GPLv2, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0) 2026-02-22T20:20:45.751 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 bash[34905]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mon-a 2026-02-22T20:20:45.751 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service: Deactivated successfully. 2026-02-22T20:20:45.751 INFO:journalctl@ceph.mon.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: Stopped ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service - Ceph mon.a for e9aa929d-102b-11f1-b67f-d404e6e7d460. 2026-02-22T20:20:45.765 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Removed '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service'. 2026-02-22T20:20:45.771 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 5 from systemctl stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service 2026-02-22T20:20:45.771 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service not loaded. 2026-02-22T20:20:45.774 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service 2026-02-22T20:20:45.774 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to reset failed state of unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service not loaded. 2026-02-22T20:20:45.781 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl disable ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service 2026-02-22T20:20:45.781 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to disable unit: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mon.a.service does not exist 2026-02-22T20:20:46.033 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: Stopping ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service - Ceph mgr.a for e9aa929d-102b-11f1-b67f-d404e6e7d460... 2026-02-22T20:20:46.033 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a[33244]: 2026-02-22T20:20:45.853+0000 7f16fe7ef640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mgr -n mgr.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false (PID: 1) UID: 0 2026-02-22T20:20:46.033 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 podman[35116]: 2026-02-22 20:20:45.875036352 +0000 UTC m=+0.032179138 container died 2217c19206504c91fa1816bc9b22cc13039e14b9dfe47d8cd84a9f72b61e09a6 (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, io.buildah.version=1.33.7, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-02-22T20:20:46.033 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 podman[35116]: 2026-02-22 20:20:45.886741593 +0000 UTC m=+0.043884369 container remove 2217c19206504c91fa1816bc9b22cc13039e14b9dfe47d8cd84a9f72b61e09a6 (image=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e, name=ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, CEPH_SHA1=a5c3084f688b1f6eff223b8d259a8316f9844c8e, ceph=True, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-02-22T20:20:46.033 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 bash[35116]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-mgr-a 2026-02-22T20:20:46.033 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service: Deactivated successfully. 2026-02-22T20:20:46.034 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: Stopped ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service - Ceph mgr.a for e9aa929d-102b-11f1-b67f-d404e6e7d460. 2026-02-22T20:20:46.034 INFO:journalctl@ceph.mgr.a.trial060.stdout:Feb 22 20:20:45 trial060 systemd[1]: ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service: Consumed 3.818s CPU time, 180.6M memory peak. 2026-02-22T20:20:46.243 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Removed '/etc/systemd/system/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mgr.a.service'. 2026-02-22T20:20:46.248 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 5 from systemctl stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service 2026-02-22T20:20:46.248 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service not loaded. 2026-02-22T20:20:46.251 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service 2026-02-22T20:20:46.251 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to reset failed state of unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service not loaded. 2026-02-22T20:20:46.258 INFO:teuthology.orchestra.run.trial060.stdout:Non-zero exit code 1 from systemctl disable ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service 2026-02-22T20:20:46.258 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Failed to disable unit: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460-init@mgr.a.service does not exist 2026-02-22T20:20:46.403 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Removed '/etc/systemd/system/multi-user.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target'. 2026-02-22T20:20:46.403 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Removed '/etc/systemd/system/ceph.target.wants/ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460.target'. 2026-02-22T20:20:46.558 INFO:teuthology.orchestra.run.trial060.stdout:systemctl: stderr Removed '/etc/systemd/system/multi-user.target.wants/ceph.target'. 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr:Traceback (most recent call last): 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "", line 198, in _run_module_as_main 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "", line 88, in _run_code 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 5296, in 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 5284, in main 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 2532, in _rollback 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 434, in _default_image 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 2785, in command_bootstrap 2026-02-22T20:20:46.559 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 2244, in prepare_ssh 2026-02-22T20:20:46.560 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/__main__.py", line 2717, in cli 2026-02-22T20:20:46.560 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/cephadmlib/container_types.py", line 435, in run 2026-02-22T20:20:46.560 INFO:teuthology.orchestra.run.trial060.stderr: File "/tmp/tmpcs_rc197.cephadm.build/app/cephadmlib/call_wrappers.py", line 310, in call_throws 2026-02-22T20:20:46.560 INFO:teuthology.orchestra.run.trial060.stderr:RuntimeError: Failed command: /bin/podman run --rm --ipc=host --stop-signal=SIGTERM --net=host --entrypoint /usr/bin/ceph --init -e CONTAINER_IMAGE=quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -e NODE_NAME=trial060 -v /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460:/var/log/ceph:z -v /tmp/ceph-tmpdrvpfbx7:/etc/ceph/ceph.client.admin.keyring:z -v /tmp/ceph-tmpcodtsfs6:/etc/ceph/ceph.conf:z quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e orch apply mgr --unmanaged 2026-02-22T20:20:46.575 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:20:46.575 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-22T20:20:46.576 DEBUG:teuthology.orchestra.run.trial060:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-22T20:20:46.701 INFO:teuthology.orchestra.run.trial060.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-22T20:20:46.701 INFO:teuthology.orchestra.run.trial060.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-22T20:20:46.716 INFO:teuthology.orchestra.run.trial060.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-22T20:20:46.733 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-22T20:20:46.734 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-22T20:20:46.734 DEBUG:teuthology.orchestra.run.trial060:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-22T20:20:46.751 DEBUG:teuthology.orchestra.run.trial090:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-22T20:20:46.770 DEBUG:teuthology.orchestra.run.trial160:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-22T20:20:46.789 INFO:tasks.cephadm:Stopping all daemons... 2026-02-22T20:20:46.789 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2026-02-22T20:20:46.790 DEBUG:teuthology.orchestra.run.trial060:> sudo systemctl stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a 2026-02-22T20:20:46.821 INFO:teuthology.orchestra.run.trial060.stderr:Failed to stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service: Unit ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a.service not loaded. 2026-02-22T20:20:46.822 DEBUG:teuthology.orchestra.run:got remote process result: 5 2026-02-22T20:20:46.822 ERROR:tasks.cephadm:Failed to stop "ceph.mon.a" Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 815, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 596, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on trial060 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -v bootstrap --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 10.20.193.60 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 911, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) ^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 596, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on trial060 with status 5: 'sudo systemctl stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a' 2026-02-22T20:20:46.824 ERROR:teuthology.contextutil:Saw exception from nested tasks Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 815, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 596, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on trial060 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -v bootstrap --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 10.20.193.60 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 30, in nested vars.append(enter()) ^^^^^^^ File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 911, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) ^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 596, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on trial060 with status 5: 'sudo systemctl stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a' 2026-02-22T20:20:46.825 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-22T20:20:46.827 DEBUG:teuthology.misc:Transferring archived files from trial060:/var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial060/crash 2026-02-22T20:20:46.828 DEBUG:teuthology.orchestra.run.trial060:> sudo tar c -f - -C /var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash -- . 2026-02-22T20:20:46.889 INFO:teuthology.orchestra.run.trial060.stderr:tar: /var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-22T20:20:46.889 INFO:teuthology.orchestra.run.trial060.stderr:tar: Error is not recoverable: exiting now 2026-02-22T20:20:46.891 DEBUG:teuthology.misc:Transferring archived files from trial090:/var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial090/crash 2026-02-22T20:20:46.892 DEBUG:teuthology.orchestra.run.trial090:> sudo tar c -f - -C /var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash -- . 2026-02-22T20:20:46.921 INFO:teuthology.orchestra.run.trial090.stderr:tar: /var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-22T20:20:46.921 INFO:teuthology.orchestra.run.trial090.stderr:tar: Error is not recoverable: exiting now 2026-02-22T20:20:46.923 DEBUG:teuthology.misc:Transferring archived files from trial160:/var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial160/crash 2026-02-22T20:20:46.924 DEBUG:teuthology.orchestra.run.trial160:> sudo tar c -f - -C /var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash -- . 2026-02-22T20:20:46.953 INFO:teuthology.orchestra.run.trial160.stderr:tar: /var/lib/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-22T20:20:46.953 INFO:teuthology.orchestra.run.trial160.stderr:tar: Error is not recoverable: exiting now 2026-02-22T20:20:46.954 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-22T20:20:46.955 DEBUG:teuthology.orchestra.run.trial060:> sudo grep -E '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/ceph.log | grep -E CEPHADM_ | grep -E -v '\(MDS_ALL_DOWN\)' | grep -E -v '\(MDS_UP_LESS_THAN_MAX\)' | grep -E -v MON_DOWN | grep -E -v 'mons down' | grep -E -v 'mon down' | grep -E -v 'out of quorum' | grep -E -v CEPHADM_STRAY_HOST | grep -E -v CEPHADM_STRAY_DAEMON | grep -E -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-22T20:20:46.980 INFO:teuthology.orchestra.run.trial060.stderr:grep: /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/ceph.log: No such file or directory 2026-02-22T20:20:46.982 WARNING:tasks.cephadm:Found errors (ERR|WRN|SEC) in cluster log 2026-02-22T20:20:46.982 DEBUG:teuthology.orchestra.run.trial060:> sudo grep -E '\[SEC\]' /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/ceph.log | grep -E CEPHADM_ | grep -E -v '\(MDS_ALL_DOWN\)' | grep -E -v '\(MDS_UP_LESS_THAN_MAX\)' | grep -E -v MON_DOWN | grep -E -v 'mons down' | grep -E -v 'mon down' | grep -E -v 'out of quorum' | grep -E -v CEPHADM_STRAY_HOST | grep -E -v CEPHADM_STRAY_DAEMON | grep -E -v CEPHADM_FAILED_DAEMON | head -n 1 2026-02-22T20:20:47.047 INFO:teuthology.orchestra.run.trial060.stderr:grep: /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/ceph.log: No such file or directory 2026-02-22T20:20:47.049 INFO:tasks.cephadm:Compressing logs... 2026-02-22T20:20:47.049 DEBUG:teuthology.orchestra.run.trial060:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T20:20:47.091 DEBUG:teuthology.orchestra.run.trial090:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T20:20:47.094 DEBUG:teuthology.orchestra.run.trial160:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T20:20:47.115 INFO:teuthology.orchestra.run.trial060.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log: No such file or directory 2026-02-22T20:20:47.115 INFO:teuthology.orchestra.run.trial060.stderr: 2026-02-22T20:20:47.116 INFO:teuthology.orchestra.run.trial060.stderr:/var/log/ceph/cephadm.log: 62.4% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-22T20:20:47.117 INFO:teuthology.orchestra.run.trial060.stderr: 2026-02-22T20:20:47.117 INFO:teuthology.orchestra.run.trial060.stderr:real 0m0.011s 2026-02-22T20:20:47.117 INFO:teuthology.orchestra.run.trial060.stderr:user 0m0.004s 2026-02-22T20:20:47.117 INFO:teuthology.orchestra.run.trial060.stderr:sys 0m0.014s 2026-02-22T20:20:47.118 INFO:teuthology.orchestra.run.trial090.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-22T20:20:47.118 INFO:teuthology.orchestra.run.trial090.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-22T20:20:47.119 INFO:teuthology.orchestra.run.trial090.stderr:/var/log/ceph/cephadm.log: 54.0% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-22T20:20:47.120 INFO:teuthology.orchestra.run.trial090.stderr: 2026-02-22T20:20:47.120 INFO:teuthology.orchestra.run.trial090.stderr:real 0m0.011s 2026-02-22T20:20:47.120 INFO:teuthology.orchestra.run.trial090.stderr:user 0m0.006s 2026-02-22T20:20:47.120 INFO:teuthology.orchestra.run.trial090.stderr:sys 0m0.011s 2026-02-22T20:20:47.123 INFO:teuthology.orchestra.run.trial160.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-22T20:20:47.123 INFO:teuthology.orchestra.run.trial160.stderr:: No such file or directory 2026-02-22T20:20:47.123 INFO:teuthology.orchestra.run.trial160.stderr:/var/log/ceph/cephadm.log: 54.3% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-22T20:20:47.125 INFO:teuthology.orchestra.run.trial160.stderr: 2026-02-22T20:20:47.125 INFO:teuthology.orchestra.run.trial160.stderr:real 0m0.011s 2026-02-22T20:20:47.126 INFO:teuthology.orchestra.run.trial160.stderr:user 0m0.010s 2026-02-22T20:20:47.126 INFO:teuthology.orchestra.run.trial160.stderr:sys 0m0.008s 2026-02-22T20:20:47.126 INFO:tasks.cephadm:Archiving logs... 2026-02-22T20:20:47.126 DEBUG:teuthology.misc:Transferring archived files from trial060:/var/log/ceph to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial060/log 2026-02-22T20:20:47.128 DEBUG:teuthology.orchestra.run.trial060:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-22T20:20:47.184 DEBUG:teuthology.misc:Transferring archived files from trial090:/var/log/ceph to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial090/log 2026-02-22T20:20:47.185 DEBUG:teuthology.orchestra.run.trial090:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-22T20:20:47.212 DEBUG:teuthology.misc:Transferring archived files from trial160:/var/log/ceph to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial160/log 2026-02-22T20:20:47.214 DEBUG:teuthology.orchestra.run.trial160:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-22T20:20:47.244 INFO:tasks.cephadm:Removing cluster... 2026-02-22T20:20:47.244 DEBUG:teuthology.orchestra.run.trial060:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --force 2026-02-22T20:20:47.363 INFO:teuthology.orchestra.run.trial060.stdout:Deleting cluster with fsid: e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:47.535 DEBUG:teuthology.orchestra.run.trial090:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --force 2026-02-22T20:20:47.656 INFO:teuthology.orchestra.run.trial090.stdout:Deleting cluster with fsid: e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:47.831 DEBUG:teuthology.orchestra.run.trial160:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --force 2026-02-22T20:20:47.958 INFO:teuthology.orchestra.run.trial160.stdout:Deleting cluster with fsid: e9aa929d-102b-11f1-b67f-d404e6e7d460 2026-02-22T20:20:48.136 INFO:tasks.cephadm:Removing cephadm ... 2026-02-22T20:20:48.136 DEBUG:teuthology.orchestra.run.trial060:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:48.156 DEBUG:teuthology.orchestra.run.trial090:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:48.175 DEBUG:teuthology.orchestra.run.trial160:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-22T20:20:48.194 INFO:tasks.cephadm:Teardown complete 2026-02-22T20:20:48.194 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 815, in ceph_bootstrap bootstrap_remote.run(args=cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 596, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on trial060 with status 1: 'sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:a5c3084f688b1f6eff223b8d259a8316f9844c8e -v bootstrap --fsid e9aa929d-102b-11f1-b67f-d404e6e7d460 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 10.20.193.60 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring' During handling of the above exception, another exception occurred: Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/run_tasks.py", line 112, in run_tasks manager.__enter__() File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 2380, in task with contextutil.nested( File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 54, in nested raise exc[1] File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/contextutil.py", line 30, in nested vars.append(enter()) ^^^^^^^ File "/usr/lib/python3.12/contextlib.py", line 137, in __enter__ return next(self.gen) ^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_ceph-c_a5c3084f688b1f6eff223b8d259a8316f9844c8e/qa/tasks/cephadm.py", line 911, in ceph_bootstrap ctx.daemons.get_daemon(type_, id_, cluster).stop() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/daemon/cephadmunit.py", line 167, in stop self.remote.sh(self.stop_cmd) File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 97, in sh proc = self.run(**kwargs) ^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/remote.py", line 596, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 461, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_fa17720d0088c3ac28e473468bfc79eeaff5cd38/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on trial060 with status 5: 'sudo systemctl stop ceph-e9aa929d-102b-11f1-b67f-d404e6e7d460@mon.a' 2026-02-22T20:20:48.196 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-22T20:20:48.211 DEBUG:teuthology.run_tasks:Unwinding manager install 2026-02-22T20:20:48.226 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... 2026-02-22T20:20:48.226 DEBUG:teuthology.orchestra.run.trial060:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-22T20:20:48.229 DEBUG:teuthology.orchestra.run.trial090:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-22T20:20:48.232 DEBUG:teuthology.orchestra.run.trial160:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-22T20:20:48.473 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-22T20:20:48.485 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-22T20:20:48.486 DEBUG:teuthology.orchestra.run.trial060:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-22T20:20:48.487 DEBUG:teuthology.orchestra.run.trial090:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-22T20:20:48.489 DEBUG:teuthology.orchestra.run.trial160:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-22T20:20:48.504 INFO:teuthology.orchestra.run.trial060.stderr:bash: line 1: ntpq: command not found 2026-02-22T20:20:48.505 INFO:teuthology.orchestra.run.trial090.stderr:bash: line 1: ntpq: command not found 2026-02-22T20:20:48.507 INFO:teuthology.orchestra.run.trial160.stderr:bash: line 1: ntpq: command not found 2026-02-22T20:20:48.518 INFO:teuthology.orchestra.run.trial060.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-22T20:20:48.518 INFO:teuthology.orchestra.run.trial060.stdout:=============================================================================== 2026-02-22T20:20:48.518 INFO:teuthology.orchestra.run.trial060.stdout:^? 66.85.78.80 2 6 6 72 -831us[ +309us] +/- 41ms 2026-02-22T20:20:48.518 INFO:teuthology.orchestra.run.trial060.stdout:^- 23.186.168.129 2 6 67 1 +825us[ +825us] +/- 56ms 2026-02-22T20:20:48.518 INFO:teuthology.orchestra.run.trial060.stdout:^* ntp.netlinkify.com 2 6 37 4 +280ns[ +542us] +/- 7124us 2026-02-22T20:20:48.518 INFO:teuthology.orchestra.run.trial060.stdout:^- sensei.ruselabs.com 2 6 37 4 -1677us[ -864us] +/- 38ms 2026-02-22T20:20:48.524 INFO:teuthology.orchestra.run.trial090.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-22T20:20:48.525 INFO:teuthology.orchestra.run.trial090.stdout:=============================================================================== 2026-02-22T20:20:48.525 INFO:teuthology.orchestra.run.trial090.stdout:^- 172-238-164-57.ip.linode> 4 6 37 3 -4612us[-4612us] +/- 32ms 2026-02-22T20:20:48.525 INFO:teuthology.orchestra.run.trial090.stdout:^- ntp.shastacoe.net 2 6 37 3 -1065us[-1065us] +/- 71ms 2026-02-22T20:20:48.525 INFO:teuthology.orchestra.run.trial090.stdout:^- ns2.fortrockdc.com 2 6 37 3 +1705us[+2138us] +/- 40ms 2026-02-22T20:20:48.525 INFO:teuthology.orchestra.run.trial090.stdout:^* 159.203.158.197 2 6 37 3 -13us[ +420us] +/- 8495us 2026-02-22T20:20:48.540 INFO:teuthology.orchestra.run.trial160.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-22T20:20:48.540 INFO:teuthology.orchestra.run.trial160.stdout:=============================================================================== 2026-02-22T20:20:48.540 INFO:teuthology.orchestra.run.trial160.stdout:^? dutch.arpnet.net 2 6 2 74 +756us[ -180us] +/- 20ms 2026-02-22T20:20:48.540 INFO:teuthology.orchestra.run.trial160.stdout:^- ntp.maxhost.io 2 6 37 3 +1109us[+1109us] +/- 56ms 2026-02-22T20:20:48.540 INFO:teuthology.orchestra.run.trial160.stdout:^* 144.202.62.209.vultruser> 3 6 37 3 -2180ns[ -309us] +/- 19ms 2026-02-22T20:20:48.540 INFO:teuthology.orchestra.run.trial160.stdout:^? 204.2.134.172 0 7 0 - +0ns[ +0ns] +/- 0ns 2026-02-22T20:20:48.541 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-22T20:20:48.552 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-22T20:20:48.552 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-22T20:20:48.566 DEBUG:teuthology.orchestra.run.trial060:> 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 2026-02-22T20:20:48.620 DEBUG:teuthology.orchestra.run.trial090:> 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 2026-02-22T20:20:48.674 DEBUG:teuthology.orchestra.run.trial160:> 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 2026-02-22T20:20:48.727 DEBUG:teuthology.orchestra.run.trial060:> 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 -e 'comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1' 2026-02-22T20:20:48.746 INFO:teuthology.orchestra.run.trial060.stderr:grep: Invalid content of \{\} 2026-02-22T20:20:48.756 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-22T20:20:48.756 DEBUG:teuthology.orchestra.run.trial090:> 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 -e 'comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1' 2026-02-22T20:20:48.774 INFO:teuthology.orchestra.run.trial090.stderr:grep: Invalid content of \{\} 2026-02-22T20:20:48.785 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-22T20:20:48.786 DEBUG:teuthology.orchestra.run.trial160:> 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 -e 'comm="systemd".*denied.*\{ prog_run \}.*tclass=bpf.*permissive=1' 2026-02-22T20:20:48.802 INFO:teuthology.orchestra.run.trial160.stderr:grep: Invalid content of \{\} 2026-02-22T20:20:48.813 DEBUG:teuthology.orchestra.run:got remote process result: 2 2026-02-22T20:20:48.814 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-22T20:20:48.827 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-22T20:20:48.840 INFO:teuthology.task.internal:Duration was 240.691976 seconds 2026-02-22T20:20:48.841 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-22T20:20:48.855 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-22T20:20:48.855 DEBUG:teuthology.orchestra.run.trial060:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-22T20:20:48.858 DEBUG:teuthology.orchestra.run.trial090:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-22T20:20:48.860 DEBUG:teuthology.orchestra.run.trial160:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-22T20:20:48.896 INFO:teuthology.orchestra.run.trial060.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-22T20:20:48.898 INFO:teuthology.orchestra.run.trial090.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-22T20:20:48.900 INFO:teuthology.orchestra.run.trial160.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-22T20:20:49.404 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-22T20:20:49.404 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial060.front.sepia.ceph.com 2026-02-22T20:20:49.404 DEBUG:teuthology.orchestra.run.trial060:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-22T20:20:49.463 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial090.front.sepia.ceph.com 2026-02-22T20:20:49.463 DEBUG:teuthology.orchestra.run.trial090:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-22T20:20:49.484 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial160.front.sepia.ceph.com 2026-02-22T20:20:49.485 DEBUG:teuthology.orchestra.run.trial160:> grep -E --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' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-22T20:20:49.506 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-22T20:20:49.507 DEBUG:teuthology.orchestra.run.trial060:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T20:20:49.509 DEBUG:teuthology.orchestra.run.trial090:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T20:20:49.527 DEBUG:teuthology.orchestra.run.trial160:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T20:20:49.602 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-22T20:20:49.602 DEBUG:teuthology.orchestra.run.trial060:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T20:20:49.605 DEBUG:teuthology.orchestra.run.trial090:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T20:20:49.607 DEBUG:teuthology.orchestra.run.trial160:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-22T20:20:49.627 INFO:teuthology.orchestra.run.trial060.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:20:49.629 INFO:teuthology.orchestra.run.trial060.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T20:20:49.629 INFO:teuthology.orchestra.run.trial060.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:20:49.629 INFO:teuthology.orchestra.run.trial060.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-22T20:20:49.629 INFO:teuthology.orchestra.run.trial060.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-22T20:20:49.630 INFO:teuthology.orchestra.run.trial090.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:20:49.631 INFO:teuthology.orchestra.run.trial090.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T20:20:49.631 INFO:teuthology.orchestra.run.trial090.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:20:49.632 INFO:teuthology.orchestra.run.trial090.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-22T20:20:49.632 INFO:teuthology.orchestra.run.trial090.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-22T20:20:49.635 INFO:teuthology.orchestra.run.trial160.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-22T20:20:49.635 INFO:teuthology.orchestra.run.trial160.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-22T20:20:49.635 INFO:teuthology.orchestra.run.trial160.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-22T20:20:49.636 INFO:teuthology.orchestra.run.trial160.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-22T20:20:49.636 INFO:teuthology.orchestra.run.trial160.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: /home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-22T20:20:49.638 INFO:teuthology.orchestra.run.trial060.stderr: 82.8% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-22T20:20:49.640 INFO:teuthology.orchestra.run.trial090.stderr: 80.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-22T20:20:49.644 INFO:teuthology.orchestra.run.trial160.stderr: 80.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-22T20:20:49.646 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-22T20:20:49.662 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-22T20:20:49.662 DEBUG:teuthology.orchestra.run.trial060:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-22T20:20:49.707 DEBUG:teuthology.orchestra.run.trial090:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-22T20:20:49.737 DEBUG:teuthology.orchestra.run.trial160:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-22T20:20:49.871 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-22T20:20:49.882 DEBUG:teuthology.orchestra.run.trial060:> 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 2026-02-22T20:20:49.884 DEBUG:teuthology.orchestra.run.trial090:> 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 2026-02-22T20:20:49.885 DEBUG:teuthology.orchestra.run.trial160:> 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 2026-02-22T20:20:49.928 INFO:teuthology.orchestra.run.trial060.stdout:kernel.core_pattern = core 2026-02-22T20:20:49.930 INFO:teuthology.orchestra.run.trial090.stdout:kernel.core_pattern = core 2026-02-22T20:20:49.930 INFO:teuthology.orchestra.run.trial160.stdout:kernel.core_pattern = core 2026-02-22T20:20:49.945 DEBUG:teuthology.orchestra.run.trial060:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-22T20:20:49.962 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:20:49.963 DEBUG:teuthology.orchestra.run.trial090:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-22T20:20:49.979 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:20:49.979 DEBUG:teuthology.orchestra.run.trial160:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-22T20:20:49.995 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-22T20:20:49.996 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-22T20:20:50.010 INFO:teuthology.task.internal:Transferring archived files... 2026-02-22T20:20:50.011 DEBUG:teuthology.misc:Transferring archived files from trial060:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial060 2026-02-22T20:20:50.011 DEBUG:teuthology.orchestra.run.trial060:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-22T20:20:50.048 DEBUG:teuthology.misc:Transferring archived files from trial090:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial090 2026-02-22T20:20:50.049 DEBUG:teuthology.orchestra.run.trial090:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-22T20:20:50.084 DEBUG:teuthology.misc:Transferring archived files from trial160:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/nmordech-2026-02-22_19:44:01-rados-wip-rocky10-branch-of-the-day-2026-02-22-1771776513-tentacle-distro-default-trial/64474/remote/trial160 2026-02-22T20:20:50.085 DEBUG:teuthology.orchestra.run.trial160:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-22T20:20:50.118 INFO:teuthology.task.internal:Removing archive directory... 2026-02-22T20:20:50.118 DEBUG:teuthology.orchestra.run.trial060:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-22T20:20:50.120 DEBUG:teuthology.orchestra.run.trial090:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-22T20:20:50.122 DEBUG:teuthology.orchestra.run.trial160:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-22T20:20:50.176 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-22T20:20:50.190 INFO:teuthology.task.internal:Not uploading archives. 2026-02-22T20:20:50.190 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-22T20:20:50.204 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-22T20:20:50.204 DEBUG:teuthology.orchestra.run.trial060:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-22T20:20:50.206 DEBUG:teuthology.orchestra.run.trial090:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-22T20:20:50.207 DEBUG:teuthology.orchestra.run.trial160:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-22T20:20:50.223 INFO:teuthology.orchestra.run.trial060.stdout: 786901 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 20:20 /home/ubuntu/cephtest 2026-02-22T20:20:50.224 INFO:teuthology.orchestra.run.trial090.stdout: 786901 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 20:20 /home/ubuntu/cephtest 2026-02-22T20:20:50.233 INFO:teuthology.orchestra.run.trial160.stdout: 786901 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 22 20:20 /home/ubuntu/cephtest 2026-02-22T20:20:50.234 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-22T20:20:50.245 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-22T20:20:50.282 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/rocky_10 agent/on mon_election/connectivity task/test_host_drain} duration: 240.69197630882263 failure_reason: '"grep: /var/log/ceph/e9aa929d-102b-11f1-b67f-d404e6e7d460/ceph.log: No such file or directory" in cluster log' flavor: default owner: scheduled_nmordech@soko04.front.sepia.ceph.com sentry_event: null status: fail success: false 2026-02-22T20:20:50.282 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-22T20:20:50.392 INFO:teuthology.run:FAIL