2026-03-08T23:42:20.798 INFO:root:teuthology version: 1.2.4.dev6+g1c580df7a 2026-03-08T23:42:20.803 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-08T23:42:20.824 INFO:teuthology.run:Config: archive_path: /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305 branch: squid description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/on mon_election/connectivity task/test_host_drain} email: null first_in_suite: false flavor: default job_id: '305' last_in_suite: false machine_type: vps name: kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: squid ansible.cephlab: branch: main skip_tags: nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs vars: timezone: UTC 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 osd mclock iops capacity threshold hdd: 49000 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: e911bdebe5c8faa3800735d1568fcdca65db60df ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: e911bdebe5c8faa3800735d1568fcdca65db60df extra_system_packages: deb: - python3-xmltodict - python3-jmespath rpm: - bzip2 - perl-Test-Harness - python3-xmltodict - python3-jmespath selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: tt-squid sha1: 569c3e99c9b32a51b4eaf08731c728f4513ed589 owner: kyr priority: 1000 repo: https://github.com/ceph/ceph.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 8017 sha1: e911bdebe5c8faa3800735d1568fcdca65db60df sleep_before_teardown: 0 subset: 1/64 suite: orch:cephadm suite_branch: tt-squid suite_path: /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa suite_relpath: qa suite_repo: https://github.com/kshtsk/ceph.git suite_sha1: 569c3e99c9b32a51b4eaf08731c728f4513ed589 targets: vm02.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIxFet/6Nw+135oEdf0jCGwQmGRkOrzMF4jTNJaYSRYniT4d9a3is4HHp6JxYGD5Gx4B+AUtfjabKHq/3f4efE8= vm05.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIMCNV09dP3/bdl8iQAc8OgCX4tqM6Cclew9c5dn7YVNmAmaw5+BalMmW5eRtFV/fhXgToJRFCVyS86Nqb9NxF4= vm09.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBESGkvbjehbSdgBuD+P98qKq/JzJgi+UN8RaW7BgZ+X2D7zqVSqjyyCt+LjeFauGnmYZ6Oe9Ja7NQVzp8CrDKpI= 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: clyso-debian-13 teuthology_repo: https://github.com/clyso/teuthology teuthology_sha1: 1c580df7a9c7c2aadc272da296344fd99f27c444 timestamp: 2026-03-08_22:22:45 tube: vps user: kyr verbose: false worker_log: /home/teuthos/.teuthology/dispatcher/dispatcher.vps.611473 2026-03-08T23:42:20.824 INFO:teuthology.run:suite_path is set to /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa; will attempt to use it 2026-03-08T23:42:20.825 INFO:teuthology.run:Found tasks at /home/teuthos/src/github.com_kshtsk_ceph_569c3e99c9b32a51b4eaf08731c728f4513ed589/qa/tasks 2026-03-08T23:42:20.825 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-03-08T23:42:20.825 INFO:teuthology.task.internal:Checking packages... 2026-03-08T23:42:20.825 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'e911bdebe5c8faa3800735d1568fcdca65db60df' 2026-03-08T23:42:20.825 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-03-08T23:42:20.825 INFO:teuthology.packaging:ref: None 2026-03-08T23:42:20.826 INFO:teuthology.packaging:tag: None 2026-03-08T23:42:20.826 INFO:teuthology.packaging:branch: squid 2026-03-08T23:42:20.826 INFO:teuthology.packaging:sha1: e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:42:20.826 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=squid 2026-03-08T23:42:21.615 INFO:teuthology.task.internal:Found packages for ceph version 19.2.3-678.ge911bdeb 2026-03-08T23:42:21.616 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-03-08T23:42:21.617 INFO:teuthology.task.internal:no buildpackages task found 2026-03-08T23:42:21.617 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-03-08T23:42:21.617 INFO:teuthology.task.internal:Saving configuration 2026-03-08T23:42:21.624 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-03-08T23:42:21.626 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-03-08T23:42:21.633 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm02.local', 'description': '/archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305', 'up': True, 'machine_type': 'vps', 'is_vm': True, 'vm_host': {'name': 'localhost', 'description': None, 'up': True, 'machine_type': 'libvirt', 'is_vm': False, 'vm_host': None, 'os_type': None, 'os_version': None, 'arch': None, 'locked': True, 'locked_since': None, 'locked_by': None, 'mac_address': None, 'ssh_pub_key': None}, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-08 23:40:36.565037', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:02', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIxFet/6Nw+135oEdf0jCGwQmGRkOrzMF4jTNJaYSRYniT4d9a3is4HHp6JxYGD5Gx4B+AUtfjabKHq/3f4efE8='} 2026-03-08T23:42:21.641 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm05.local', 'description': '/archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305', 'up': True, 'machine_type': 'vps', 'is_vm': True, 'vm_host': {'name': 'localhost', 'description': None, 'up': True, 'machine_type': 'libvirt', 'is_vm': False, 'vm_host': None, 'os_type': None, 'os_version': None, 'arch': None, 'locked': True, 'locked_since': None, 'locked_by': None, 'mac_address': None, 'ssh_pub_key': None}, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-08 23:40:36.565454', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:05', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIMCNV09dP3/bdl8iQAc8OgCX4tqM6Cclew9c5dn7YVNmAmaw5+BalMmW5eRtFV/fhXgToJRFCVyS86Nqb9NxF4='} 2026-03-08T23:42:21.648 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm09.local', 'description': '/archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305', 'up': True, 'machine_type': 'vps', 'is_vm': True, 'vm_host': {'name': 'localhost', 'description': None, 'up': True, 'machine_type': 'libvirt', 'is_vm': False, 'vm_host': None, 'os_type': None, 'os_version': None, 'arch': None, 'locked': True, 'locked_since': None, 'locked_by': None, 'mac_address': None, 'ssh_pub_key': None}, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-03-08 23:40:36.565687', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:09', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBESGkvbjehbSdgBuD+P98qKq/JzJgi+UN8RaW7BgZ+X2D7zqVSqjyyCt+LjeFauGnmYZ6Oe9Ja7NQVzp8CrDKpI='} 2026-03-08T23:42:21.648 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-03-08T23:42:21.649 INFO:teuthology.task.internal:roles: ubuntu@vm02.local - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-03-08T23:42:21.649 INFO:teuthology.task.internal:roles: ubuntu@vm05.local - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-03-08T23:42:21.649 INFO:teuthology.task.internal:roles: ubuntu@vm09.local - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-03-08T23:42:21.649 INFO:teuthology.run_tasks:Running task console_log... 2026-03-08T23:42:21.657 DEBUG:teuthology.task.console_log:vm02 does not support IPMI; excluding 2026-03-08T23:42:21.664 DEBUG:teuthology.task.console_log:vm05 does not support IPMI; excluding 2026-03-08T23:42:21.671 DEBUG:teuthology.task.console_log:vm09 does not support IPMI; excluding 2026-03-08T23:42:21.671 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f49cfac5120>, signals=[15]) 2026-03-08T23:42:21.671 INFO:teuthology.run_tasks:Running task internal.connect... 2026-03-08T23:42:21.673 INFO:teuthology.task.internal:Opening connections... 2026-03-08T23:42:21.673 DEBUG:teuthology.task.internal:connecting to ubuntu@vm02.local 2026-03-08T23:42:21.673 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm02.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T23:42:21.732 DEBUG:teuthology.task.internal:connecting to ubuntu@vm05.local 2026-03-08T23:42:21.732 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm05.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T23:42:21.791 DEBUG:teuthology.task.internal:connecting to ubuntu@vm09.local 2026-03-08T23:42:21.792 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm09.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T23:42:21.852 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-03-08T23:42:21.853 DEBUG:teuthology.orchestra.run.vm02:> uname -m 2026-03-08T23:42:21.869 INFO:teuthology.orchestra.run.vm02.stdout:x86_64 2026-03-08T23:42:21.869 DEBUG:teuthology.orchestra.run.vm02:> cat /etc/os-release 2026-03-08T23:42:21.925 INFO:teuthology.orchestra.run.vm02.stdout:NAME="CentOS Stream" 2026-03-08T23:42:21.925 INFO:teuthology.orchestra.run.vm02.stdout:VERSION="9" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:ID="centos" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:ID_LIKE="rhel fedora" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:VERSION_ID="9" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:PLATFORM_ID="platform:el9" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:ANSI_COLOR="0;31" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:LOGO="fedora-logo-icon" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:HOME_URL="https://centos.org/" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-08T23:42:21.926 INFO:teuthology.orchestra.run.vm02.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-08T23:42:21.926 INFO:teuthology.lock.ops:Updating vm02.local on lock server 2026-03-08T23:42:21.932 DEBUG:teuthology.orchestra.run.vm05:> uname -m 2026-03-08T23:42:21.947 INFO:teuthology.orchestra.run.vm05.stdout:x86_64 2026-03-08T23:42:21.948 DEBUG:teuthology.orchestra.run.vm05:> cat /etc/os-release 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:NAME="CentOS Stream" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:VERSION="9" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:ID="centos" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:ID_LIKE="rhel fedora" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:VERSION_ID="9" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:PLATFORM_ID="platform:el9" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:ANSI_COLOR="0;31" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:LOGO="fedora-logo-icon" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:HOME_URL="https://centos.org/" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-08T23:42:22.005 INFO:teuthology.orchestra.run.vm05.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-08T23:42:22.006 INFO:teuthology.lock.ops:Updating vm05.local on lock server 2026-03-08T23:42:22.011 DEBUG:teuthology.orchestra.run.vm09:> uname -m 2026-03-08T23:42:22.026 INFO:teuthology.orchestra.run.vm09.stdout:x86_64 2026-03-08T23:42:22.027 DEBUG:teuthology.orchestra.run.vm09:> cat /etc/os-release 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:NAME="CentOS Stream" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:VERSION="9" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:ID="centos" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:ID_LIKE="rhel fedora" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:VERSION_ID="9" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:PLATFORM_ID="platform:el9" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:ANSI_COLOR="0;31" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:LOGO="fedora-logo-icon" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:HOME_URL="https://centos.org/" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-08T23:42:22.081 INFO:teuthology.orchestra.run.vm09.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-08T23:42:22.081 INFO:teuthology.lock.ops:Updating vm09.local on lock server 2026-03-08T23:42:22.086 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-03-08T23:42:22.088 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-03-08T23:42:22.089 INFO:teuthology.task.internal:Checking for old test directory... 2026-03-08T23:42:22.089 DEBUG:teuthology.orchestra.run.vm02:> test '!' -e /home/ubuntu/cephtest 2026-03-08T23:42:22.091 DEBUG:teuthology.orchestra.run.vm05:> test '!' -e /home/ubuntu/cephtest 2026-03-08T23:42:22.093 DEBUG:teuthology.orchestra.run.vm09:> test '!' -e /home/ubuntu/cephtest 2026-03-08T23:42:22.136 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-03-08T23:42:22.138 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-03-08T23:42:22.138 DEBUG:teuthology.orchestra.run.vm02:> test -z $(ls -A /var/lib/ceph) 2026-03-08T23:42:22.148 DEBUG:teuthology.orchestra.run.vm05:> test -z $(ls -A /var/lib/ceph) 2026-03-08T23:42:22.150 DEBUG:teuthology.orchestra.run.vm09:> test -z $(ls -A /var/lib/ceph) 2026-03-08T23:42:22.162 INFO:teuthology.orchestra.run.vm02.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-08T23:42:22.165 INFO:teuthology.orchestra.run.vm05.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-08T23:42:22.192 INFO:teuthology.orchestra.run.vm09.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-08T23:42:22.192 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-03-08T23:42:22.200 DEBUG:teuthology.orchestra.run.vm02:> test -e /ceph-qa-ready 2026-03-08T23:42:22.218 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:42:22.406 DEBUG:teuthology.orchestra.run.vm05:> test -e /ceph-qa-ready 2026-03-08T23:42:22.423 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:42:22.612 DEBUG:teuthology.orchestra.run.vm09:> test -e /ceph-qa-ready 2026-03-08T23:42:22.626 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:42:22.956 INFO:teuthology.run_tasks:Running task internal.base... 2026-03-08T23:42:22.958 INFO:teuthology.task.internal:Creating test directory... 2026-03-08T23:42:22.958 DEBUG:teuthology.orchestra.run.vm02:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-08T23:42:22.960 DEBUG:teuthology.orchestra.run.vm05:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-08T23:42:22.962 DEBUG:teuthology.orchestra.run.vm09:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-08T23:42:22.980 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-03-08T23:42:22.982 INFO:teuthology.run_tasks:Running task internal.archive... 2026-03-08T23:42:22.983 INFO:teuthology.task.internal:Creating archive directory... 2026-03-08T23:42:22.983 DEBUG:teuthology.orchestra.run.vm02:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-08T23:42:23.018 DEBUG:teuthology.orchestra.run.vm05:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-08T23:42:23.020 DEBUG:teuthology.orchestra.run.vm09:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-08T23:42:23.044 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-03-08T23:42:23.045 INFO:teuthology.task.internal:Enabling coredump saving... 2026-03-08T23:42:23.045 DEBUG:teuthology.orchestra.run.vm02:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-08T23:42:23.086 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:42:23.086 DEBUG:teuthology.orchestra.run.vm05:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-08T23:42:23.102 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:42:23.102 DEBUG:teuthology.orchestra.run.vm09:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-08T23:42:23.119 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:42:23.119 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T23:42:23.129 DEBUG:teuthology.orchestra.run.vm05:> 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-03-08T23:42:23.145 DEBUG:teuthology.orchestra.run.vm09:> 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-03-08T23:42:23.153 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T23:42:23.165 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T23:42:23.172 INFO:teuthology.orchestra.run.vm05.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T23:42:23.184 INFO:teuthology.orchestra.run.vm05.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T23:42:23.189 INFO:teuthology.orchestra.run.vm09.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T23:42:23.200 INFO:teuthology.orchestra.run.vm09.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-08T23:42:23.201 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-03-08T23:42:23.203 INFO:teuthology.task.internal:Configuring sudo... 2026-03-08T23:42:23.203 DEBUG:teuthology.orchestra.run.vm02:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-08T23:42:23.209 DEBUG:teuthology.orchestra.run.vm05:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-08T23:42:23.228 DEBUG:teuthology.orchestra.run.vm09:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-08T23:42:23.267 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-03-08T23:42:23.269 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-03-08T23:42:23.269 DEBUG:teuthology.orchestra.run.vm02:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-08T23:42:23.276 DEBUG:teuthology.orchestra.run.vm05:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-08T23:42:23.294 DEBUG:teuthology.orchestra.run.vm09:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-08T23:42:23.322 DEBUG:teuthology.orchestra.run.vm02:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T23:42:23.352 DEBUG:teuthology.orchestra.run.vm02:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T23:42:23.409 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:42:23.409 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-08T23:42:23.468 DEBUG:teuthology.orchestra.run.vm05:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T23:42:23.491 DEBUG:teuthology.orchestra.run.vm05:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T23:42:23.547 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:42:23.547 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-08T23:42:23.609 DEBUG:teuthology.orchestra.run.vm09:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-08T23:42:23.632 DEBUG:teuthology.orchestra.run.vm09:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-08T23:42:23.689 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:42:23.689 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-08T23:42:23.748 DEBUG:teuthology.orchestra.run.vm02:> sudo service rsyslog restart 2026-03-08T23:42:23.750 DEBUG:teuthology.orchestra.run.vm05:> sudo service rsyslog restart 2026-03-08T23:42:23.751 DEBUG:teuthology.orchestra.run.vm09:> sudo service rsyslog restart 2026-03-08T23:42:23.776 INFO:teuthology.orchestra.run.vm02.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-08T23:42:23.777 INFO:teuthology.orchestra.run.vm05.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-08T23:42:23.818 INFO:teuthology.orchestra.run.vm09.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-08T23:42:24.255 INFO:teuthology.run_tasks:Running task internal.timer... 2026-03-08T23:42:24.258 INFO:teuthology.task.internal:Starting timer... 2026-03-08T23:42:24.258 INFO:teuthology.run_tasks:Running task pcp... 2026-03-08T23:42:24.261 INFO:teuthology.run_tasks:Running task selinux... 2026-03-08T23:42:24.264 DEBUG:teuthology.task:Applying overrides for task selinux: {'allowlist': ['scontext=system_u:system_r:logrotate_t:s0', 'scontext=system_u:system_r:getty_t:s0']} 2026-03-08T23:42:24.264 INFO:teuthology.task.selinux:Excluding vm02: VMs are not yet supported 2026-03-08T23:42:24.264 INFO:teuthology.task.selinux:Excluding vm05: VMs are not yet supported 2026-03-08T23:42:24.264 INFO:teuthology.task.selinux:Excluding vm09: VMs are not yet supported 2026-03-08T23:42:24.264 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-03-08T23:42:24.264 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2026-03-08T23:42:24.264 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-03-08T23:42:24.264 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-03-08T23:42:24.266 DEBUG:teuthology.task:Applying overrides for task ansible.cephlab: {'branch': 'main', 'skip_tags': 'nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs', 'vars': {'timezone': 'UTC'}} 2026-03-08T23:42:24.266 DEBUG:teuthology.repo_utils:Setting repo remote to https://github.com/ceph/ceph-cm-ansible.git 2026-03-08T23:42:24.268 INFO:teuthology.repo_utils:Fetching github.com_ceph_ceph-cm-ansible_main from origin 2026-03-08T23:42:24.900 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthos/src/github.com_ceph_ceph-cm-ansible_main to origin/main 2026-03-08T23:42:24.905 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-03-08T23:42:24.905 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu", "timezone": "UTC"}' -i /tmp/teuth_ansible_inventoryo9if4fqh --limit vm02.local,vm05.local,vm09.local /home/teuthos/src/github.com_ceph_ceph-cm-ansible_main/cephlab.yml --skip-tags nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs 2026-03-08T23:54:49.606 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@vm02.local'), Remote(name='ubuntu@vm05.local'), Remote(name='ubuntu@vm09.local')] 2026-03-08T23:54:49.606 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm02.local' 2026-03-08T23:54:49.607 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm02.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T23:54:49.669 DEBUG:teuthology.orchestra.run.vm02:> true 2026-03-08T23:54:49.751 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm02.local' 2026-03-08T23:54:49.752 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm05.local' 2026-03-08T23:54:49.752 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm05.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T23:54:49.819 DEBUG:teuthology.orchestra.run.vm05:> true 2026-03-08T23:54:49.901 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm05.local' 2026-03-08T23:54:49.902 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm09.local' 2026-03-08T23:54:49.902 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm09.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-08T23:54:49.961 DEBUG:teuthology.orchestra.run.vm09:> true 2026-03-08T23:54:50.033 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm09.local' 2026-03-08T23:54:50.033 INFO:teuthology.run_tasks:Running task clock... 2026-03-08T23:54:50.036 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-03-08T23:54:50.036 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-08T23:54:50.036 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T23:54:50.038 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-08T23:54:50.038 DEBUG:teuthology.orchestra.run.vm05:> 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-03-08T23:54:50.041 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-08T23:54:50.041 DEBUG:teuthology.orchestra.run.vm09:> 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-03-08T23:54:50.068 INFO:teuthology.orchestra.run.vm02.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-03-08T23:54:50.075 INFO:teuthology.orchestra.run.vm05.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-03-08T23:54:50.083 INFO:teuthology.orchestra.run.vm02.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-03-08T23:54:50.092 INFO:teuthology.orchestra.run.vm05.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-03-08T23:54:50.106 INFO:teuthology.orchestra.run.vm09.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-03-08T23:54:50.109 INFO:teuthology.orchestra.run.vm02.stderr:sudo: ntpd: command not found 2026-03-08T23:54:50.121 INFO:teuthology.orchestra.run.vm02.stdout:506 Cannot talk to daemon 2026-03-08T23:54:50.121 INFO:teuthology.orchestra.run.vm09.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-03-08T23:54:50.126 INFO:teuthology.orchestra.run.vm05.stderr:sudo: ntpd: command not found 2026-03-08T23:54:50.135 INFO:teuthology.orchestra.run.vm02.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-03-08T23:54:50.138 INFO:teuthology.orchestra.run.vm05.stdout:506 Cannot talk to daemon 2026-03-08T23:54:50.148 INFO:teuthology.orchestra.run.vm09.stderr:sudo: ntpd: command not found 2026-03-08T23:54:50.150 INFO:teuthology.orchestra.run.vm02.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-03-08T23:54:50.158 INFO:teuthology.orchestra.run.vm05.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-03-08T23:54:50.161 INFO:teuthology.orchestra.run.vm09.stdout:506 Cannot talk to daemon 2026-03-08T23:54:50.177 INFO:teuthology.orchestra.run.vm09.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-03-08T23:54:50.180 INFO:teuthology.orchestra.run.vm05.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-03-08T23:54:50.193 INFO:teuthology.orchestra.run.vm09.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-03-08T23:54:50.203 INFO:teuthology.orchestra.run.vm02.stderr:bash: line 1: ntpq: command not found 2026-03-08T23:54:50.206 INFO:teuthology.orchestra.run.vm02.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-08T23:54:50.206 INFO:teuthology.orchestra.run.vm02.stdout:=============================================================================== 2026-03-08T23:54:50.238 INFO:teuthology.orchestra.run.vm05.stderr:bash: line 1: ntpq: command not found 2026-03-08T23:54:50.241 INFO:teuthology.orchestra.run.vm05.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-08T23:54:50.241 INFO:teuthology.orchestra.run.vm05.stdout:=============================================================================== 2026-03-08T23:54:50.244 INFO:teuthology.orchestra.run.vm09.stderr:bash: line 1: ntpq: command not found 2026-03-08T23:54:50.247 INFO:teuthology.orchestra.run.vm09.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-08T23:54:50.247 INFO:teuthology.orchestra.run.vm09.stdout:=============================================================================== 2026-03-08T23:54:50.248 INFO:teuthology.run_tasks:Running task pexec... 2026-03-08T23:54:50.250 INFO:teuthology.task.pexec:Executing custom commands... 2026-03-08T23:54:50.250 DEBUG:teuthology.orchestra.run.vm02:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-03-08T23:54:50.251 DEBUG:teuthology.orchestra.run.vm05:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-03-08T23:54:50.251 DEBUG:teuthology.orchestra.run.vm09:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-03-08T23:54:50.253 DEBUG:teuthology.task.pexec:ubuntu@vm02.local< sudo dnf remove nvme-cli -y 2026-03-08T23:54:50.253 DEBUG:teuthology.task.pexec:ubuntu@vm02.local< sudo dnf install nvmetcli nvme-cli -y 2026-03-08T23:54:50.253 INFO:teuthology.task.pexec:Running commands on host ubuntu@vm02.local 2026-03-08T23:54:50.253 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-03-08T23:54:50.253 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-03-08T23:54:50.283 DEBUG:teuthology.task.pexec:ubuntu@vm05.local< sudo dnf remove nvme-cli -y 2026-03-08T23:54:50.283 DEBUG:teuthology.task.pexec:ubuntu@vm05.local< sudo dnf install nvmetcli nvme-cli -y 2026-03-08T23:54:50.284 INFO:teuthology.task.pexec:Running commands on host ubuntu@vm05.local 2026-03-08T23:54:50.284 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-03-08T23:54:50.284 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-03-08T23:54:50.290 DEBUG:teuthology.task.pexec:ubuntu@vm09.local< sudo dnf remove nvme-cli -y 2026-03-08T23:54:50.290 DEBUG:teuthology.task.pexec:ubuntu@vm09.local< sudo dnf install nvmetcli nvme-cli -y 2026-03-08T23:54:50.290 INFO:teuthology.task.pexec:Running commands on host ubuntu@vm09.local 2026-03-08T23:54:50.290 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-03-08T23:54:50.290 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-03-08T23:54:50.458 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: nvme-cli 2026-03-08T23:54:50.458 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-08T23:54:50.461 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-08T23:54:50.462 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-08T23:54:50.462 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-08T23:54:50.502 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: nvme-cli 2026-03-08T23:54:50.502 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-08T23:54:50.505 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-08T23:54:50.506 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-08T23:54:50.506 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-08T23:54:50.537 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: nvme-cli 2026-03-08T23:54:50.538 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-08T23:54:50.540 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-08T23:54:50.541 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-08T23:54:50.541 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-08T23:54:50.892 INFO:teuthology.orchestra.run.vm02.stdout:Last metadata expiration check: 0:11:44 ago on Sun 08 Mar 2026 11:43:06 PM UTC. 2026-03-08T23:54:50.924 INFO:teuthology.orchestra.run.vm09.stdout:Last metadata expiration check: 0:11:48 ago on Sun 08 Mar 2026 11:43:02 PM UTC. 2026-03-08T23:54:50.992 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: Package Architecture Version Repository Size 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Installing: 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Installing dependencies: 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Install 6 Packages 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Total download size: 2.3 M 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Installed size: 11 M 2026-03-08T23:54:50.993 INFO:teuthology.orchestra.run.vm02.stdout:Downloading Packages: 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: Package Architecture Version Repository Size 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:Installing: 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:Installing dependencies: 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:Install 6 Packages 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:54:51.033 INFO:teuthology.orchestra.run.vm09.stdout:Total download size: 2.3 M 2026-03-08T23:54:51.034 INFO:teuthology.orchestra.run.vm09.stdout:Installed size: 11 M 2026-03-08T23:54:51.034 INFO:teuthology.orchestra.run.vm09.stdout:Downloading Packages: 2026-03-08T23:54:51.081 INFO:teuthology.orchestra.run.vm05.stdout:Last metadata expiration check: 0:00:26 ago on Sun 08 Mar 2026 11:54:25 PM UTC. 2026-03-08T23:54:51.212 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: Package Architecture Version Repository Size 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:Installing: 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:Installing dependencies: 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout:Install 6 Packages 2026-03-08T23:54:51.213 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:54:51.214 INFO:teuthology.orchestra.run.vm05.stdout:Total download size: 2.3 M 2026-03-08T23:54:51.214 INFO:teuthology.orchestra.run.vm05.stdout:Installed size: 11 M 2026-03-08T23:54:51.214 INFO:teuthology.orchestra.run.vm05.stdout:Downloading Packages: 2026-03-08T23:54:51.434 INFO:teuthology.orchestra.run.vm05.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 385 kB/s | 44 kB 00:00 2026-03-08T23:54:51.451 INFO:teuthology.orchestra.run.vm05.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 548 kB/s | 72 kB 00:00 2026-03-08T23:54:51.453 INFO:teuthology.orchestra.run.vm09.stdout:(1/6): python3-configshell-1.1.30-1.el9.noarch. 251 kB/s | 72 kB 00:00 2026-03-08T23:54:51.470 INFO:teuthology.orchestra.run.vm09.stdout:(2/6): nvmetcli-0.8-3.el9.noarch.rpm 144 kB/s | 44 kB 00:00 2026-03-08T23:54:51.520 INFO:teuthology.orchestra.run.vm05.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 992 kB/s | 84 kB 00:00 2026-03-08T23:54:51.520 INFO:teuthology.orchestra.run.vm09.stdout:(3/6): nvme-cli-2.16-1.el9.x86_64.rpm 3.3 MB/s | 1.2 MB 00:00 2026-03-08T23:54:51.534 INFO:teuthology.orchestra.run.vm05.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.8 MB/s | 150 kB 00:00 2026-03-08T23:54:51.539 INFO:teuthology.orchestra.run.vm05.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 5.3 MB/s | 1.2 MB 00:00 2026-03-08T23:54:51.557 INFO:teuthology.orchestra.run.vm09.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 812 kB/s | 84 kB 00:00 2026-03-08T23:54:51.558 INFO:teuthology.orchestra.run.vm09.stdout:(5/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.7 MB/s | 150 kB 00:00 2026-03-08T23:54:51.622 INFO:teuthology.orchestra.run.vm05.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 8.3 MB/s | 837 kB 00:00 2026-03-08T23:54:51.622 INFO:teuthology.orchestra.run.vm05.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:54:51.622 INFO:teuthology.orchestra.run.vm05.stdout:Total 5.7 MB/s | 2.3 MB 00:00 2026-03-08T23:54:51.702 INFO:teuthology.orchestra.run.vm09.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 4.5 MB/s | 837 kB 00:00 2026-03-08T23:54:51.704 INFO:teuthology.orchestra.run.vm09.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:54:51.704 INFO:teuthology.orchestra.run.vm09.stdout:Total 3.4 MB/s | 2.3 MB 00:00 2026-03-08T23:54:51.717 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-08T23:54:51.726 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-08T23:54:51.726 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-08T23:54:51.749 INFO:teuthology.orchestra.run.vm02.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 198 kB/s | 44 kB 00:00 2026-03-08T23:54:51.753 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-08T23:54:51.758 INFO:teuthology.orchestra.run.vm02.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 312 kB/s | 72 kB 00:00 2026-03-08T23:54:51.760 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-08T23:54:51.760 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-08T23:54:51.787 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-08T23:54:51.787 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-08T23:54:51.809 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-08T23:54:51.810 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-08T23:54:51.828 INFO:teuthology.orchestra.run.vm02.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.0 MB/s | 84 kB 00:00 2026-03-08T23:54:51.838 INFO:teuthology.orchestra.run.vm02.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.8 MB/s | 150 kB 00:00 2026-03-08T23:54:51.908 INFO:teuthology.orchestra.run.vm02.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 3.0 MB/s | 1.2 MB 00:00 2026-03-08T23:54:51.960 INFO:teuthology.orchestra.run.vm02.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.2 MB/s | 837 kB 00:00 2026-03-08T23:54:51.960 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-08T23:54:51.961 INFO:teuthology.orchestra.run.vm02.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:54:51.962 INFO:teuthology.orchestra.run.vm02.stdout:Total 2.4 MB/s | 2.3 MB 00:00 2026-03-08T23:54:51.971 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-03-08T23:54:51.978 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-08T23:54:51.983 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-03-08T23:54:51.992 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-08T23:54:51.994 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-03-08T23:54:51.999 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-08T23:54:52.001 INFO:teuthology.orchestra.run.vm09.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-03-08T23:54:52.009 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-03-08T23:54:52.020 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-08T23:54:52.028 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-08T23:54:52.029 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-08T23:54:52.034 INFO:teuthology.orchestra.run.vm05.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-03-08T23:54:52.035 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-08T23:54:52.035 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-08T23:54:52.084 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-08T23:54:52.085 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-08T23:54:52.160 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-03-08T23:54:52.164 INFO:teuthology.orchestra.run.vm09.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-08T23:54:52.228 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-08T23:54:52.228 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-03-08T23:54:52.236 INFO:teuthology.orchestra.run.vm05.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-08T23:54:52.239 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-03-08T23:54:52.250 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-03-08T23:54:52.257 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-08T23:54:52.264 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-08T23:54:52.265 INFO:teuthology.orchestra.run.vm02.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-03-08T23:54:52.424 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-03-08T23:54:52.429 INFO:teuthology.orchestra.run.vm02.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-08T23:54:52.458 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-08T23:54:52.458 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-03-08T23:54:52.458 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:54:52.630 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-08T23:54:52.630 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-03-08T23:54:52.630 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:54:52.752 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-08T23:54:52.752 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-03-08T23:54:52.752 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:54:52.882 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-03-08T23:54:52.882 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-03-08T23:54:52.882 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-08T23:54:52.882 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-08T23:54:52.883 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout:Installed: 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:54:52.939 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-08T23:54:52.989 DEBUG:teuthology.parallel:result is None 2026-03-08T23:54:53.163 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-03-08T23:54:53.163 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-03-08T23:54:53.163 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-08T23:54:53.163 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-08T23:54:53.163 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-03-08T23:54:53.225 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-03-08T23:54:53.225 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-03-08T23:54:53.225 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-08T23:54:53.225 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-08T23:54:53.225 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout:Installed: 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:54:53.227 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-08T23:54:53.268 DEBUG:teuthology.parallel:result is None 2026-03-08T23:54:53.326 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-03-08T23:54:53.326 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:54:53.326 INFO:teuthology.orchestra.run.vm05.stdout:Installed: 2026-03-08T23:54:53.327 INFO:teuthology.orchestra.run.vm05.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-03-08T23:54:53.327 INFO:teuthology.orchestra.run.vm05.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-03-08T23:54:53.327 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-03-08T23:54:53.327 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:54:53.327 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-08T23:54:53.388 DEBUG:teuthology.parallel:result is None 2026-03-08T23:54:53.388 INFO:teuthology.run_tasks:Running task install... 2026-03-08T23:54:53.390 DEBUG:teuthology.task.install:project ceph 2026-03-08T23:54:53.390 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'e911bdebe5c8faa3800735d1568fcdca65db60df'}, 'extra_system_packages': {'deb': ['python3-xmltodict', 'python3-jmespath'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-xmltodict', 'python3-jmespath']}} 2026-03-08T23:54:53.390 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'e911bdebe5c8faa3800735d1568fcdca65db60df', 'extra_system_packages': {'deb': ['python3-xmltodict', 'python3-jmespath'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-xmltodict', 'python3-jmespath']}} 2026-03-08T23:54:53.390 INFO:teuthology.task.install:Using flavor: default 2026-03-08T23:54:53.392 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-03-08T23:54:53.392 INFO:teuthology.task.install:extra packages: [] 2026-03-08T23:54:53.393 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': {'deb': ['python3-xmltodict', 'python3-jmespath'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-xmltodict', 'python3-jmespath']}, 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'e911bdebe5c8faa3800735d1568fcdca65db60df', 'tag': None, 'wait_for_package': False} 2026-03-08T23:54:53.393 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:54:53.393 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': {'deb': ['python3-xmltodict', 'python3-jmespath'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-xmltodict', 'python3-jmespath']}, 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'e911bdebe5c8faa3800735d1568fcdca65db60df', 'tag': None, 'wait_for_package': False} 2026-03-08T23:54:53.393 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:54:53.394 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': {'deb': ['python3-xmltodict', 'python3-jmespath'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-xmltodict', 'python3-jmespath']}, 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'e911bdebe5c8faa3800735d1568fcdca65db60df', 'tag': None, 'wait_for_package': False} 2026-03-08T23:54:53.394 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:54:54.062 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/ 2026-03-08T23:54:54.062 INFO:teuthology.task.install.rpm:Package version is 19.2.3-678.ge911bdeb 2026-03-08T23:54:54.153 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/ 2026-03-08T23:54:54.153 INFO:teuthology.task.install.rpm:Package version is 19.2.3-678.ge911bdeb 2026-03-08T23:54:54.187 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/ 2026-03-08T23:54:54.187 INFO:teuthology.task.install.rpm:Package version is 19.2.3-678.ge911bdeb 2026-03-08T23:54:54.594 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-03-08T23:54:54.594 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:54:54.594 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-03-08T23:54:54.622 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, bzip2, perl-Test-Harness, python3-xmltodict, python3-jmespath on remote rpm x86_64 2026-03-08T23:54:54.622 DEBUG:teuthology.orchestra.run.vm02:> 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/e911bdebe5c8faa3800735d1568fcdca65db60df/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-03-08T23:54:54.663 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-03-08T23:54:54.663 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:54:54.663 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-03-08T23:54:54.688 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T23:54:54.703 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, bzip2, perl-Test-Harness, python3-xmltodict, python3-jmespath on remote rpm x86_64 2026-03-08T23:54:54.703 DEBUG:teuthology.orchestra.run.vm05:> 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/e911bdebe5c8faa3800735d1568fcdca65db60df/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-03-08T23:54:54.704 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-03-08T23:54:54.704 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:54:54.705 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-03-08T23:54:54.732 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, bzip2, perl-Test-Harness, python3-xmltodict, python3-jmespath on remote rpm x86_64 2026-03-08T23:54:54.733 DEBUG:teuthology.orchestra.run.vm09:> 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/e911bdebe5c8faa3800735d1568fcdca65db60df/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-03-08T23:54:54.761 DEBUG:teuthology.orchestra.run.vm02:> 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-03-08T23:54:54.783 DEBUG:teuthology.orchestra.run.vm05:> 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-03-08T23:54:54.798 DEBUG:teuthology.orchestra.run.vm09:> 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-03-08T23:54:54.826 INFO:teuthology.orchestra.run.vm02.stdout:check_obsoletes = 1 2026-03-08T23:54:54.827 DEBUG:teuthology.orchestra.run.vm02:> sudo yum clean all 2026-03-08T23:54:54.873 DEBUG:teuthology.orchestra.run.vm09:> 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-03-08T23:54:54.880 DEBUG:teuthology.orchestra.run.vm05:> 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-03-08T23:54:54.906 INFO:teuthology.orchestra.run.vm05.stdout:check_obsoletes = 1 2026-03-08T23:54:54.908 DEBUG:teuthology.orchestra.run.vm05:> sudo yum clean all 2026-03-08T23:54:54.938 INFO:teuthology.orchestra.run.vm09.stdout:check_obsoletes = 1 2026-03-08T23:54:54.939 DEBUG:teuthology.orchestra.run.vm09:> sudo yum clean all 2026-03-08T23:54:55.004 INFO:teuthology.orchestra.run.vm02.stdout:41 files removed 2026-03-08T23:54:55.034 DEBUG:teuthology.orchestra.run.vm02:> sudo yum -y install 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 bzip2 perl-Test-Harness python3-xmltodict python3-jmespath 2026-03-08T23:54:55.112 INFO:teuthology.orchestra.run.vm09.stdout:41 files removed 2026-03-08T23:54:55.115 INFO:teuthology.orchestra.run.vm05.stdout:41 files removed 2026-03-08T23:54:55.135 DEBUG:teuthology.orchestra.run.vm09:> sudo yum -y install 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 bzip2 perl-Test-Harness python3-xmltodict python3-jmespath 2026-03-08T23:54:55.137 DEBUG:teuthology.orchestra.run.vm05:> sudo yum -y install 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 bzip2 perl-Test-Harness python3-xmltodict python3-jmespath 2026-03-08T23:54:56.448 INFO:teuthology.orchestra.run.vm02.stdout:ceph packages for x86_64 67 kB/s | 84 kB 00:01 2026-03-08T23:54:56.473 INFO:teuthology.orchestra.run.vm09.stdout:ceph packages for x86_64 71 kB/s | 84 kB 00:01 2026-03-08T23:54:56.483 INFO:teuthology.orchestra.run.vm05.stdout:ceph packages for x86_64 74 kB/s | 84 kB 00:01 2026-03-08T23:54:57.415 INFO:teuthology.orchestra.run.vm02.stdout:ceph noarch packages 12 kB/s | 12 kB 00:00 2026-03-08T23:54:57.446 INFO:teuthology.orchestra.run.vm05.stdout:ceph noarch packages 12 kB/s | 12 kB 00:00 2026-03-08T23:54:57.472 INFO:teuthology.orchestra.run.vm09.stdout:ceph noarch packages 12 kB/s | 12 kB 00:00 2026-03-08T23:54:58.390 INFO:teuthology.orchestra.run.vm02.stdout:ceph source packages 2.0 kB/s | 1.9 kB 00:00 2026-03-08T23:54:58.420 INFO:teuthology.orchestra.run.vm05.stdout:ceph source packages 2.0 kB/s | 1.9 kB 00:00 2026-03-08T23:54:58.424 INFO:teuthology.orchestra.run.vm09.stdout:ceph source packages 2.0 kB/s | 1.9 kB 00:00 2026-03-08T23:54:59.021 INFO:teuthology.orchestra.run.vm05.stdout:CentOS Stream 9 - BaseOS 15 MB/s | 8.9 MB 00:00 2026-03-08T23:54:59.622 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - BaseOS 7.3 MB/s | 8.9 MB 00:01 2026-03-08T23:55:00.996 INFO:teuthology.orchestra.run.vm09.stdout:CentOS Stream 9 - BaseOS 3.5 MB/s | 8.9 MB 00:02 2026-03-08T23:55:01.654 INFO:teuthology.orchestra.run.vm05.stdout:CentOS Stream 9 - AppStream 13 MB/s | 27 MB 00:02 2026-03-08T23:55:01.655 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - AppStream 19 MB/s | 27 MB 00:01 2026-03-08T23:55:03.210 INFO:teuthology.orchestra.run.vm09.stdout:CentOS Stream 9 - AppStream 17 MB/s | 27 MB 00:01 2026-03-08T23:55:05.380 INFO:teuthology.orchestra.run.vm05.stdout:CentOS Stream 9 - CRB 8.8 MB/s | 8.0 MB 00:00 2026-03-08T23:55:05.449 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - CRB 7.3 MB/s | 8.0 MB 00:01 2026-03-08T23:55:06.507 INFO:teuthology.orchestra.run.vm05.stdout:CentOS Stream 9 - Extras packages 77 kB/s | 20 kB 00:00 2026-03-08T23:55:06.752 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - Extras packages 51 kB/s | 20 kB 00:00 2026-03-08T23:55:07.461 INFO:teuthology.orchestra.run.vm09.stdout:CentOS Stream 9 - CRB 5.6 MB/s | 8.0 MB 00:01 2026-03-08T23:55:07.461 INFO:teuthology.orchestra.run.vm05.stdout:Extra Packages for Enterprise Linux 23 MB/s | 20 MB 00:00 2026-03-08T23:55:07.687 INFO:teuthology.orchestra.run.vm02.stdout:Extra Packages for Enterprise Linux 24 MB/s | 20 MB 00:00 2026-03-08T23:55:08.605 INFO:teuthology.orchestra.run.vm09.stdout:CentOS Stream 9 - Extras packages 77 kB/s | 20 kB 00:00 2026-03-08T23:55:09.606 INFO:teuthology.orchestra.run.vm09.stdout:Extra Packages for Enterprise Linux 22 MB/s | 20 MB 00:00 2026-03-08T23:55:12.161 INFO:teuthology.orchestra.run.vm05.stdout:lab-extras 64 kB/s | 50 kB 00:00 2026-03-08T23:55:12.395 INFO:teuthology.orchestra.run.vm02.stdout:lab-extras 63 kB/s | 50 kB 00:00 2026-03-08T23:55:13.593 INFO:teuthology.orchestra.run.vm05.stdout:Package librados2-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-08T23:55:13.593 INFO:teuthology.orchestra.run.vm05.stdout:Package librbd1-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-08T23:55:13.597 INFO:teuthology.orchestra.run.vm05.stdout:Package bzip2-1.0.8-11.el9.x86_64 is already installed. 2026-03-08T23:55:13.598 INFO:teuthology.orchestra.run.vm05.stdout:Package perl-Test-Harness-1:3.42-461.el9.noarch is already installed. 2026-03-08T23:55:13.629 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout:====================================================================================== 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout:====================================================================================== 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout:Installing: 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 6.5 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-base x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 5.5 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.2 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-immutable-object-cache x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 145 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.1 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-cephadm noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 150 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-dashboard noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 3.8 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-diskprediction-local noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 7.4 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-rook noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 49 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-radosgw x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 11 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-test x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 50 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: ceph-volume noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 299 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: cephadm noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 769 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs-devel x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 34 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.0 M 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: librados-devel x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 127 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: python3-cephfs x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 165 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: python3-rados x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 323 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: python3-rbd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 303 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: python3-rgw x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 100 k 2026-03-08T23:55:13.634 INFO:teuthology.orchestra.run.vm05.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: rbd-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 85 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: rbd-mirror x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.1 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: rbd-nbd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 171 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout:Upgrading: 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: librados2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.4 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: librbd1 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.2 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout:Installing dependencies: 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 22 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-grafana-dashboards noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 31 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mds x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 2.4 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-modules-core noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 253 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mon x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 4.7 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-osd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 17 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-prometheus-alerts noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 17 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ceph-selinux x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 25 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libcephsqlite x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 163 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libradosstriper1 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 503 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: librgw2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 5.4 M 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-03-08T23:55:13.635 INFO:teuthology.orchestra.run.vm05.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-argparse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 45 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 142 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2026-03-08T23:55:13.636 INFO:teuthology.orchestra.run.vm05.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1 noarch 0.4.8-7.el9 appstream 157 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 appstream 277 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout:Installing weak dependencies: 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout:====================================================================================== 2026-03-08T23:55:13.637 INFO:teuthology.orchestra.run.vm05.stdout:Install 134 Packages 2026-03-08T23:55:13.638 INFO:teuthology.orchestra.run.vm05.stdout:Upgrade 2 Packages 2026-03-08T23:55:13.638 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:13.638 INFO:teuthology.orchestra.run.vm05.stdout:Total download size: 210 M 2026-03-08T23:55:13.638 INFO:teuthology.orchestra.run.vm05.stdout:Downloading Packages: 2026-03-08T23:55:13.835 INFO:teuthology.orchestra.run.vm02.stdout:Package librados2-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-08T23:55:13.836 INFO:teuthology.orchestra.run.vm02.stdout:Package librbd1-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-08T23:55:13.840 INFO:teuthology.orchestra.run.vm02.stdout:Package bzip2-1.0.8-11.el9.x86_64 is already installed. 2026-03-08T23:55:13.841 INFO:teuthology.orchestra.run.vm02.stdout:Package perl-Test-Harness-1:3.42-461.el9.noarch is already installed. 2026-03-08T23:55:13.872 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout:====================================================================================== 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout:====================================================================================== 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout:Installing: 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 6.5 k 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 5.5 M 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.2 M 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 145 k 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.1 M 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 150 k 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 3.8 M 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 7.4 M 2026-03-08T23:55:13.876 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 49 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 11 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 50 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 299 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: cephadm noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 769 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 34 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.0 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 127 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 165 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 323 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 303 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 100 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 85 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.1 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 171 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout:Upgrading: 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: librados2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.4 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: librbd1 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.2 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout:Installing dependencies: 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 22 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 31 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 2.4 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 253 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 4.7 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 17 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 17 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 25 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 163 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 503 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: librgw2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 5.4 M 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-03-08T23:55:13.877 INFO:teuthology.orchestra.run.vm02.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 45 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 142 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1 noarch 0.4.8-7.el9 appstream 157 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 appstream 277 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-03-08T23:55:13.878 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:Installing weak dependencies: 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:====================================================================================== 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:Install 134 Packages 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:Upgrade 2 Packages 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:Total download size: 210 M 2026-03-08T23:55:13.879 INFO:teuthology.orchestra.run.vm02.stdout:Downloading Packages: 2026-03-08T23:55:14.312 INFO:teuthology.orchestra.run.vm09.stdout:lab-extras 64 kB/s | 50 kB 00:00 2026-03-08T23:55:15.222 INFO:teuthology.orchestra.run.vm02.stdout:(1/136): ceph-19.2.3-678.ge911bdeb.el9.x86_64.r 13 kB/s | 6.5 kB 00:00 2026-03-08T23:55:15.726 INFO:teuthology.orchestra.run.vm09.stdout:Package librados2-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-08T23:55:15.726 INFO:teuthology.orchestra.run.vm09.stdout:Package librbd1-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-08T23:55:15.730 INFO:teuthology.orchestra.run.vm09.stdout:Package bzip2-1.0.8-11.el9.x86_64 is already installed. 2026-03-08T23:55:15.731 INFO:teuthology.orchestra.run.vm09.stdout:Package perl-Test-Harness-1:3.42-461.el9.noarch is already installed. 2026-03-08T23:55:15.760 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-08T23:55:15.764 INFO:teuthology.orchestra.run.vm09.stdout:====================================================================================== 2026-03-08T23:55:15.764 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-08T23:55:15.764 INFO:teuthology.orchestra.run.vm09.stdout:====================================================================================== 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout:Installing: 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 6.5 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-base x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 5.5 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.2 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-immutable-object-cache x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 145 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.1 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-cephadm noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 150 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-dashboard noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 3.8 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-diskprediction-local noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 7.4 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-rook noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 49 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-radosgw x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 11 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-test x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 50 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-volume noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 299 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: cephadm noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 769 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs-devel x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 34 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 1.0 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: librados-devel x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 127 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: python3-cephfs x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 165 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: python3-rados x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 323 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: python3-rbd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 303 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: python3-rgw x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 100 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: rbd-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 85 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: rbd-mirror x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.1 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: rbd-nbd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 171 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout:Upgrading: 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: librados2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.4 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: librbd1 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 3.2 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout:Installing dependencies: 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 22 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-grafana-dashboards noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 31 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mds x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 2.4 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-modules-core noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 253 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mon x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 4.7 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-osd x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 17 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-prometheus-alerts noarch 2:19.2.3-678.ge911bdeb.el9 ceph-noarch 17 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ceph-selinux x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 25 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libcephsqlite x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 163 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libradosstriper1 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 503 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: librgw2 x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 5.4 M 2026-03-08T23:55:15.765 INFO:teuthology.orchestra.run.vm09.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-argparse x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 45 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 ceph 142 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-logutils noarch 0.3.5-21.el9 epel 46 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-mako noarch 1.1.4-6.el9 appstream 172 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-pecan noarch 1.4.2-3.el9 epel 272 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1 noarch 0.4.8-7.el9 appstream 157 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 appstream 277 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-03-08T23:55:15.766 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-webob noarch 1.8.8-2.el9 epel 230 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 epel 427 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:Installing weak dependencies: 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:====================================================================================== 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:Install 134 Packages 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:Upgrade 2 Packages 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:Total download size: 210 M 2026-03-08T23:55:15.767 INFO:teuthology.orchestra.run.vm09.stdout:Downloading Packages: 2026-03-08T23:55:15.875 INFO:teuthology.orchestra.run.vm05.stdout:(1/136): ceph-19.2.3-678.ge911bdeb.el9.x86_64.r 14 kB/s | 6.5 kB 00:00 2026-03-08T23:55:16.199 INFO:teuthology.orchestra.run.vm02.stdout:(2/136): ceph-fuse-19.2.3-678.ge911bdeb.el9.x86 1.2 MB/s | 1.2 MB 00:00 2026-03-08T23:55:16.324 INFO:teuthology.orchestra.run.vm02.stdout:(3/136): ceph-immutable-object-cache-19.2.3-678 1.1 MB/s | 145 kB 00:00 2026-03-08T23:55:16.772 INFO:teuthology.orchestra.run.vm05.stdout:(2/136): ceph-fuse-19.2.3-678.ge911bdeb.el9.x86 1.3 MB/s | 1.2 MB 00:00 2026-03-08T23:55:16.886 INFO:teuthology.orchestra.run.vm05.stdout:(3/136): ceph-immutable-object-cache-19.2.3-678 1.2 MB/s | 145 kB 00:00 2026-03-08T23:55:17.157 INFO:teuthology.orchestra.run.vm09.stdout:(1/136): ceph-19.2.3-678.ge911bdeb.el9.x86_64.r 13 kB/s | 6.5 kB 00:00 2026-03-08T23:55:17.188 INFO:teuthology.orchestra.run.vm02.stdout:(4/136): ceph-mds-19.2.3-678.ge911bdeb.el9.x86_ 2.8 MB/s | 2.4 MB 00:00 2026-03-08T23:55:17.383 INFO:teuthology.orchestra.run.vm02.stdout:(5/136): ceph-base-19.2.3-678.ge911bdeb.el9.x86 2.1 MB/s | 5.5 MB 00:02 2026-03-08T23:55:17.557 INFO:teuthology.orchestra.run.vm02.stdout:(6/136): ceph-mgr-19.2.3-678.ge911bdeb.el9.x86_ 2.9 MB/s | 1.1 MB 00:00 2026-03-08T23:55:17.676 INFO:teuthology.orchestra.run.vm05.stdout:(4/136): ceph-mds-19.2.3-678.ge911bdeb.el9.x86_ 3.1 MB/s | 2.4 MB 00:00 2026-03-08T23:55:17.994 INFO:teuthology.orchestra.run.vm05.stdout:(5/136): ceph-base-19.2.3-678.ge911bdeb.el9.x86 2.1 MB/s | 5.5 MB 00:02 2026-03-08T23:55:18.016 INFO:teuthology.orchestra.run.vm05.stdout:(6/136): ceph-mgr-19.2.3-678.ge911bdeb.el9.x86_ 3.2 MB/s | 1.1 MB 00:00 2026-03-08T23:55:18.109 INFO:teuthology.orchestra.run.vm09.stdout:(2/136): ceph-fuse-19.2.3-678.ge911bdeb.el9.x86 1.2 MB/s | 1.2 MB 00:00 2026-03-08T23:55:18.230 INFO:teuthology.orchestra.run.vm09.stdout:(3/136): ceph-immutable-object-cache-19.2.3-678 1.2 MB/s | 145 kB 00:00 2026-03-08T23:55:18.358 INFO:teuthology.orchestra.run.vm02.stdout:(7/136): ceph-mon-19.2.3-678.ge911bdeb.el9.x86_ 4.9 MB/s | 4.7 MB 00:00 2026-03-08T23:55:18.947 INFO:teuthology.orchestra.run.vm05.stdout:(7/136): ceph-mon-19.2.3-678.ge911bdeb.el9.x86_ 5.0 MB/s | 4.7 MB 00:00 2026-03-08T23:55:19.068 INFO:teuthology.orchestra.run.vm09.stdout:(4/136): ceph-mds-19.2.3-678.ge911bdeb.el9.x86_ 2.9 MB/s | 2.4 MB 00:00 2026-03-08T23:55:19.378 INFO:teuthology.orchestra.run.vm09.stdout:(5/136): ceph-base-19.2.3-678.ge911bdeb.el9.x86 2.0 MB/s | 5.5 MB 00:02 2026-03-08T23:55:19.440 INFO:teuthology.orchestra.run.vm09.stdout:(6/136): ceph-mgr-19.2.3-678.ge911bdeb.el9.x86_ 2.9 MB/s | 1.1 MB 00:00 2026-03-08T23:55:19.500 INFO:teuthology.orchestra.run.vm02.stdout:(8/136): ceph-common-19.2.3-678.ge911bdeb.el9.x 4.6 MB/s | 22 MB 00:04 2026-03-08T23:55:19.618 INFO:teuthology.orchestra.run.vm02.stdout:(9/136): ceph-selinux-19.2.3-678.ge911bdeb.el9. 214 kB/s | 25 kB 00:00 2026-03-08T23:55:19.799 INFO:teuthology.orchestra.run.vm02.stdout:(10/136): ceph-radosgw-19.2.3-678.ge911bdeb.el9 7.5 MB/s | 11 MB 00:01 2026-03-08T23:55:19.977 INFO:teuthology.orchestra.run.vm02.stdout:(11/136): libcephfs-devel-19.2.3-678.ge911bdeb. 189 kB/s | 34 kB 00:00 2026-03-08T23:55:20.182 INFO:teuthology.orchestra.run.vm02.stdout:(12/136): libcephfs2-19.2.3-678.ge911bdeb.el9.x 4.8 MB/s | 1.0 MB 00:00 2026-03-08T23:55:20.306 INFO:teuthology.orchestra.run.vm02.stdout:(13/136): ceph-osd-19.2.3-678.ge911bdeb.el9.x86 6.2 MB/s | 17 MB 00:02 2026-03-08T23:55:20.327 INFO:teuthology.orchestra.run.vm02.stdout:(14/136): libcephsqlite-19.2.3-678.ge911bdeb.el 1.1 MB/s | 163 kB 00:00 2026-03-08T23:55:20.433 INFO:teuthology.orchestra.run.vm05.stdout:(8/136): ceph-radosgw-19.2.3-678.ge911bdeb.el9. 7.2 MB/s | 11 MB 00:01 2026-03-08T23:55:20.445 INFO:teuthology.orchestra.run.vm02.stdout:(15/136): librados-devel-19.2.3-678.ge911bdeb.e 918 kB/s | 127 kB 00:00 2026-03-08T23:55:20.475 INFO:teuthology.orchestra.run.vm02.stdout:(16/136): libradosstriper1-19.2.3-678.ge911bdeb 3.3 MB/s | 503 kB 00:00 2026-03-08T23:55:20.500 INFO:teuthology.orchestra.run.vm09.stdout:(7/136): ceph-mon-19.2.3-678.ge911bdeb.el9.x86_ 4.2 MB/s | 4.7 MB 00:01 2026-03-08T23:55:20.588 INFO:teuthology.orchestra.run.vm05.stdout:(9/136): ceph-common-19.2.3-678.ge911bdeb.el9.x 4.2 MB/s | 22 MB 00:05 2026-03-08T23:55:20.590 INFO:teuthology.orchestra.run.vm05.stdout:(10/136): ceph-selinux-19.2.3-678.ge911bdeb.el9 160 kB/s | 25 kB 00:00 2026-03-08T23:55:20.597 INFO:teuthology.orchestra.run.vm02.stdout:(17/136): python3-ceph-argparse-19.2.3-678.ge91 373 kB/s | 45 kB 00:00 2026-03-08T23:55:20.644 INFO:teuthology.orchestra.run.vm05.stdout:(11/136): ceph-osd-19.2.3-678.ge911bdeb.el9.x86 6.5 MB/s | 17 MB 00:02 2026-03-08T23:55:20.733 INFO:teuthology.orchestra.run.vm05.stdout:(12/136): libcephfs-devel-19.2.3-678.ge911bdeb. 235 kB/s | 34 kB 00:00 2026-03-08T23:55:20.739 INFO:teuthology.orchestra.run.vm02.stdout:(18/136): python3-ceph-common-19.2.3-678.ge911b 1.0 MB/s | 142 kB 00:00 2026-03-08T23:55:20.784 INFO:teuthology.orchestra.run.vm05.stdout:(13/136): libcephfs2-19.2.3-678.ge911bdeb.el9.x 7.0 MB/s | 1.0 MB 00:00 2026-03-08T23:55:20.878 INFO:teuthology.orchestra.run.vm05.stdout:(14/136): libcephsqlite-19.2.3-678.ge911bdeb.el 1.1 MB/s | 163 kB 00:00 2026-03-08T23:55:20.890 INFO:teuthology.orchestra.run.vm02.stdout:(19/136): python3-cephfs-19.2.3-678.ge911bdeb.e 1.1 MB/s | 165 kB 00:00 2026-03-08T23:55:20.919 INFO:teuthology.orchestra.run.vm05.stdout:(15/136): librados-devel-19.2.3-678.ge911bdeb.e 937 kB/s | 127 kB 00:00 2026-03-08T23:55:21.006 INFO:teuthology.orchestra.run.vm02.stdout:(20/136): librgw2-19.2.3-678.ge911bdeb.el9.x86_ 9.6 MB/s | 5.4 MB 00:00 2026-03-08T23:55:21.018 INFO:teuthology.orchestra.run.vm05.stdout:(16/136): libradosstriper1-19.2.3-678.ge911bdeb 3.5 MB/s | 503 kB 00:00 2026-03-08T23:55:21.037 INFO:teuthology.orchestra.run.vm02.stdout:(21/136): python3-rados-19.2.3-678.ge911bdeb.el 2.1 MB/s | 323 kB 00:00 2026-03-08T23:55:21.158 INFO:teuthology.orchestra.run.vm02.stdout:(22/136): python3-rbd-19.2.3-678.ge911bdeb.el9. 2.0 MB/s | 303 kB 00:00 2026-03-08T23:55:21.158 INFO:teuthology.orchestra.run.vm05.stdout:(17/136): python3-ceph-argparse-19.2.3-678.ge91 323 kB/s | 45 kB 00:00 2026-03-08T23:55:21.177 INFO:teuthology.orchestra.run.vm02.stdout:(23/136): python3-rgw-19.2.3-678.ge911bdeb.el9. 714 kB/s | 100 kB 00:00 2026-03-08T23:55:21.296 INFO:teuthology.orchestra.run.vm05.stdout:(18/136): python3-ceph-common-19.2.3-678.ge911b 1.0 MB/s | 142 kB 00:00 2026-03-08T23:55:21.299 INFO:teuthology.orchestra.run.vm02.stdout:(24/136): rbd-fuse-19.2.3-678.ge911bdeb.el9.x86 606 kB/s | 85 kB 00:00 2026-03-08T23:55:21.460 INFO:teuthology.orchestra.run.vm05.stdout:(19/136): python3-cephfs-19.2.3-678.ge911bdeb.e 1.0 MB/s | 165 kB 00:00 2026-03-08T23:55:21.471 INFO:teuthology.orchestra.run.vm02.stdout:(25/136): rbd-nbd-19.2.3-678.ge911bdeb.el9.x86_ 994 kB/s | 171 kB 00:00 2026-03-08T23:55:21.629 INFO:teuthology.orchestra.run.vm05.stdout:(20/136): python3-rados-19.2.3-678.ge911bdeb.el 1.9 MB/s | 323 kB 00:00 2026-03-08T23:55:21.640 INFO:teuthology.orchestra.run.vm02.stdout:(26/136): ceph-grafana-dashboards-19.2.3-678.ge 184 kB/s | 31 kB 00:00 2026-03-08T23:55:21.675 INFO:teuthology.orchestra.run.vm02.stdout:(27/136): rbd-mirror-19.2.3-678.ge911bdeb.el9.x 6.3 MB/s | 3.1 MB 00:00 2026-03-08T23:55:21.706 INFO:teuthology.orchestra.run.vm05.stdout:(21/136): librgw2-19.2.3-678.ge911bdeb.el9.x86_ 6.9 MB/s | 5.4 MB 00:00 2026-03-08T23:55:21.790 INFO:teuthology.orchestra.run.vm02.stdout:(28/136): ceph-mgr-cephadm-19.2.3-678.ge911bdeb 1.0 MB/s | 150 kB 00:00 2026-03-08T23:55:21.790 INFO:teuthology.orchestra.run.vm09.stdout:(8/136): ceph-common-19.2.3-678.ge911bdeb.el9.x 4.3 MB/s | 22 MB 00:05 2026-03-08T23:55:21.794 INFO:teuthology.orchestra.run.vm05.stdout:(22/136): python3-rbd-19.2.3-678.ge911bdeb.el9. 1.8 MB/s | 303 kB 00:00 2026-03-08T23:55:21.839 INFO:teuthology.orchestra.run.vm05.stdout:(23/136): python3-rgw-19.2.3-678.ge911bdeb.el9. 752 kB/s | 100 kB 00:00 2026-03-08T23:55:21.954 INFO:teuthology.orchestra.run.vm05.stdout:(24/136): rbd-fuse-19.2.3-678.ge911bdeb.el9.x86 530 kB/s | 85 kB 00:00 2026-03-08T23:55:21.954 INFO:teuthology.orchestra.run.vm09.stdout:(9/136): ceph-selinux-19.2.3-678.ge911bdeb.el9. 153 kB/s | 25 kB 00:00 2026-03-08T23:55:22.129 INFO:teuthology.orchestra.run.vm05.stdout:(25/136): rbd-nbd-19.2.3-678.ge911bdeb.el9.x86_ 979 kB/s | 171 kB 00:00 2026-03-08T23:55:22.150 INFO:teuthology.orchestra.run.vm02.stdout:(29/136): ceph-mgr-dashboard-19.2.3-678.ge911bd 8.0 MB/s | 3.8 MB 00:00 2026-03-08T23:55:22.281 INFO:teuthology.orchestra.run.vm05.stdout:(26/136): ceph-grafana-dashboards-19.2.3-678.ge 205 kB/s | 31 kB 00:00 2026-03-08T23:55:22.306 INFO:teuthology.orchestra.run.vm02.stdout:(30/136): ceph-mgr-modules-core-19.2.3-678.ge91 1.6 MB/s | 253 kB 00:00 2026-03-08T23:55:22.439 INFO:teuthology.orchestra.run.vm05.stdout:(27/136): ceph-mgr-cephadm-19.2.3-678.ge911bdeb 954 kB/s | 150 kB 00:00 2026-03-08T23:55:22.459 INFO:teuthology.orchestra.run.vm02.stdout:(31/136): ceph-mgr-rook-19.2.3-678.ge911bdeb.el 322 kB/s | 49 kB 00:00 2026-03-08T23:55:22.482 INFO:teuthology.orchestra.run.vm09.stdout:(10/136): ceph-radosgw-19.2.3-678.ge911bdeb.el9 5.4 MB/s | 11 MB 00:01 2026-03-08T23:55:22.559 INFO:teuthology.orchestra.run.vm02.stdout:(32/136): ceph-mgr-diskprediction-local-19.2.3- 9.6 MB/s | 7.4 MB 00:00 2026-03-08T23:55:22.599 INFO:teuthology.orchestra.run.vm02.stdout:(33/136): ceph-prometheus-alerts-19.2.3-678.ge9 121 kB/s | 17 kB 00:00 2026-03-08T23:55:22.625 INFO:teuthology.orchestra.run.vm09.stdout:(11/136): libcephfs-devel-19.2.3-678.ge911bdeb. 235 kB/s | 34 kB 00:00 2026-03-08T23:55:22.700 INFO:teuthology.orchestra.run.vm02.stdout:(34/136): ceph-volume-19.2.3-678.ge911bdeb.el9. 2.1 MB/s | 299 kB 00:00 2026-03-08T23:55:22.780 INFO:teuthology.orchestra.run.vm02.stdout:(35/136): cephadm-19.2.3-678.ge911bdeb.el9.noar 4.2 MB/s | 769 kB 00:00 2026-03-08T23:55:22.780 INFO:teuthology.orchestra.run.vm09.stdout:(12/136): ceph-osd-19.2.3-678.ge911bdeb.el9.x86 5.1 MB/s | 17 MB 00:03 2026-03-08T23:55:22.865 INFO:teuthology.orchestra.run.vm05.stdout:(28/136): ceph-mgr-dashboard-19.2.3-678.ge911bd 8.9 MB/s | 3.8 MB 00:00 2026-03-08T23:55:22.877 INFO:teuthology.orchestra.run.vm05.stdout:(29/136): rbd-mirror-19.2.3-678.ge911bdeb.el9.x 3.0 MB/s | 3.1 MB 00:01 2026-03-08T23:55:22.904 INFO:teuthology.orchestra.run.vm09.stdout:(13/136): libcephsqlite-19.2.3-678.ge911bdeb.el 1.3 MB/s | 163 kB 00:00 2026-03-08T23:55:22.907 INFO:teuthology.orchestra.run.vm09.stdout:(14/136): libcephfs2-19.2.3-678.ge911bdeb.el9.x 3.5 MB/s | 1.0 MB 00:00 2026-03-08T23:55:23.010 INFO:teuthology.orchestra.run.vm05.stdout:(30/136): ceph-mgr-modules-core-19.2.3-678.ge91 1.9 MB/s | 253 kB 00:00 2026-03-08T23:55:23.031 INFO:teuthology.orchestra.run.vm09.stdout:(15/136): librados-devel-19.2.3-678.ge911bdeb.e 1.0 MB/s | 127 kB 00:00 2026-03-08T23:55:23.043 INFO:teuthology.orchestra.run.vm09.stdout:(16/136): libradosstriper1-19.2.3-678.ge911bdeb 3.6 MB/s | 503 kB 00:00 2026-03-08T23:55:23.130 INFO:teuthology.orchestra.run.vm05.stdout:(31/136): ceph-mgr-rook-19.2.3-678.ge911bdeb.el 409 kB/s | 49 kB 00:00 2026-03-08T23:55:23.171 INFO:teuthology.orchestra.run.vm09.stdout:(17/136): python3-ceph-argparse-19.2.3-678.ge91 353 kB/s | 45 kB 00:00 2026-03-08T23:55:23.255 INFO:teuthology.orchestra.run.vm05.stdout:(32/136): ceph-prometheus-alerts-19.2.3-678.ge9 134 kB/s | 17 kB 00:00 2026-03-08T23:55:23.303 INFO:teuthology.orchestra.run.vm09.stdout:(18/136): python3-ceph-common-19.2.3-678.ge911b 1.1 MB/s | 142 kB 00:00 2026-03-08T23:55:23.387 INFO:teuthology.orchestra.run.vm05.stdout:(33/136): ceph-volume-19.2.3-678.ge911bdeb.el9. 2.2 MB/s | 299 kB 00:00 2026-03-08T23:55:23.435 INFO:teuthology.orchestra.run.vm09.stdout:(19/136): python3-cephfs-19.2.3-678.ge911bdeb.e 1.2 MB/s | 165 kB 00:00 2026-03-08T23:55:23.562 INFO:teuthology.orchestra.run.vm09.stdout:(20/136): python3-rados-19.2.3-678.ge911bdeb.el 2.5 MB/s | 323 kB 00:00 2026-03-08T23:55:23.562 INFO:teuthology.orchestra.run.vm02.stdout:(36/136): ceph-test-19.2.3-678.ge911bdeb.el9.x8 13 MB/s | 50 MB 00:03 2026-03-08T23:55:23.562 INFO:teuthology.orchestra.run.vm05.stdout:(34/136): ceph-mgr-diskprediction-local-19.2.3- 11 MB/s | 7.4 MB 00:00 2026-03-08T23:55:23.564 INFO:teuthology.orchestra.run.vm02.stdout:(37/136): ledmon-libs-1.1.0-3.el9.x86_64.rpm 52 kB/s | 40 kB 00:00 2026-03-08T23:55:23.615 INFO:teuthology.orchestra.run.vm05.stdout:(35/136): cephadm-19.2.3-678.ge911bdeb.el9.noar 3.3 MB/s | 769 kB 00:00 2026-03-08T23:55:23.688 INFO:teuthology.orchestra.run.vm09.stdout:(21/136): python3-rbd-19.2.3-678.ge911bdeb.el9. 2.3 MB/s | 303 kB 00:00 2026-03-08T23:55:23.767 INFO:teuthology.orchestra.run.vm05.stdout:(36/136): ledmon-libs-1.1.0-3.el9.x86_64.rpm 267 kB/s | 40 kB 00:00 2026-03-08T23:55:23.812 INFO:teuthology.orchestra.run.vm09.stdout:(22/136): python3-rgw-19.2.3-678.ge911bdeb.el9. 806 kB/s | 100 kB 00:00 2026-03-08T23:55:23.818 INFO:teuthology.orchestra.run.vm05.stdout:(37/136): cryptsetup-2.8.1-3.el9.x86_64.rpm 1.3 MB/s | 351 kB 00:00 2026-03-08T23:55:23.841 INFO:teuthology.orchestra.run.vm02.stdout:(38/136): cryptsetup-2.8.1-3.el9.x86_64.rpm 308 kB/s | 351 kB 00:01 2026-03-08T23:55:23.896 INFO:teuthology.orchestra.run.vm09.stdout:(23/136): librgw2-19.2.3-678.ge911bdeb.el9.x86_ 6.3 MB/s | 5.4 MB 00:00 2026-03-08T23:55:23.908 INFO:teuthology.orchestra.run.vm05.stdout:(38/136): libconfig-1.7.2-9.el9.x86_64.rpm 511 kB/s | 72 kB 00:00 2026-03-08T23:55:23.936 INFO:teuthology.orchestra.run.vm09.stdout:(24/136): rbd-fuse-19.2.3-678.ge911bdeb.el9.x86 691 kB/s | 85 kB 00:00 2026-03-08T23:55:23.947 INFO:teuthology.orchestra.run.vm05.stdout:(39/136): libgfortran-11.5.0-14.el9.x86_64.rpm 6.0 MB/s | 794 kB 00:00 2026-03-08T23:55:23.985 INFO:teuthology.orchestra.run.vm05.stdout:(40/136): mailcap-2.1.49-5.el9.noarch.rpm 884 kB/s | 33 kB 00:00 2026-03-08T23:55:24.060 INFO:teuthology.orchestra.run.vm09.stdout:(25/136): rbd-nbd-19.2.3-678.ge911bdeb.el9.x86_ 1.3 MB/s | 171 kB 00:00 2026-03-08T23:55:24.062 INFO:teuthology.orchestra.run.vm05.stdout:(41/136): libquadmath-11.5.0-14.el9.x86_64.rpm 1.2 MB/s | 184 kB 00:00 2026-03-08T23:55:24.090 INFO:teuthology.orchestra.run.vm02.stdout:(39/136): libconfig-1.7.2-9.el9.x86_64.rpm 136 kB/s | 72 kB 00:00 2026-03-08T23:55:24.135 INFO:teuthology.orchestra.run.vm05.stdout:(42/136): pciutils-3.7.0-7.el9.x86_64.rpm 622 kB/s | 93 kB 00:00 2026-03-08T23:55:24.183 INFO:teuthology.orchestra.run.vm09.stdout:(26/136): ceph-grafana-dashboards-19.2.3-678.ge 253 kB/s | 31 kB 00:00 2026-03-08T23:55:24.191 INFO:teuthology.orchestra.run.vm05.stdout:(43/136): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.9 MB/s | 253 kB 00:00 2026-03-08T23:55:24.226 INFO:teuthology.orchestra.run.vm02.stdout:(40/136): mailcap-2.1.49-5.el9.noarch.rpm 244 kB/s | 33 kB 00:00 2026-03-08T23:55:24.259 INFO:teuthology.orchestra.run.vm05.stdout:(44/136): python3-ply-3.11-14.el9.noarch.rpm 1.5 MB/s | 106 kB 00:00 2026-03-08T23:55:24.284 INFO:teuthology.orchestra.run.vm05.stdout:(45/136): python3-cryptography-36.0.1-5.el9.x86 8.4 MB/s | 1.2 MB 00:00 2026-03-08T23:55:24.308 INFO:teuthology.orchestra.run.vm09.stdout:(27/136): ceph-mgr-cephadm-19.2.3-678.ge911bdeb 1.2 MB/s | 150 kB 00:00 2026-03-08T23:55:24.376 INFO:teuthology.orchestra.run.vm02.stdout:(41/136): libgfortran-11.5.0-14.el9.x86_64.rpm 979 kB/s | 794 kB 00:00 2026-03-08T23:55:24.380 INFO:teuthology.orchestra.run.vm02.stdout:(42/136): pciutils-3.7.0-7.el9.x86_64.rpm 606 kB/s | 93 kB 00:00 2026-03-08T23:55:24.386 INFO:teuthology.orchestra.run.vm09.stdout:(28/136): rbd-mirror-19.2.3-678.ge911bdeb.el9.x 6.4 MB/s | 3.1 MB 00:00 2026-03-08T23:55:24.438 INFO:teuthology.orchestra.run.vm02.stdout:(43/136): libquadmath-11.5.0-14.el9.x86_64.rpm 309 kB/s | 184 kB 00:00 2026-03-08T23:55:24.488 INFO:teuthology.orchestra.run.vm05.stdout:(46/136): ceph-test-19.2.3-678.ge911bdeb.el9.x8 13 MB/s | 50 MB 00:03 2026-03-08T23:55:24.489 INFO:teuthology.orchestra.run.vm05.stdout:(47/136): python3-requests-2.25.1-10.el9.noarch 619 kB/s | 126 kB 00:00 2026-03-08T23:55:24.491 INFO:teuthology.orchestra.run.vm05.stdout:(48/136): python3-pycparser-2.20-6.el9.noarch.r 583 kB/s | 135 kB 00:00 2026-03-08T23:55:24.602 INFO:teuthology.orchestra.run.vm05.stdout:(49/136): unzip-6.0-59.el9.x86_64.rpm 1.6 MB/s | 182 kB 00:00 2026-03-08T23:55:24.652 INFO:teuthology.orchestra.run.vm05.stdout:(50/136): zip-3.0-35.el9.x86_64.rpm 1.6 MB/s | 266 kB 00:00 2026-03-08T23:55:24.740 INFO:teuthology.orchestra.run.vm05.stdout:(51/136): python3-urllib3-1.26.5-7.el9.noarch.r 864 kB/s | 218 kB 00:00 2026-03-08T23:55:24.794 INFO:teuthology.orchestra.run.vm05.stdout:(52/136): flexiblas-3.0.4-9.el9.x86_64.rpm 209 kB/s | 30 kB 00:00 2026-03-08T23:55:24.840 INFO:teuthology.orchestra.run.vm05.stdout:(53/136): boost-program-options-1.75.0-13.el9.x 439 kB/s | 104 kB 00:00 2026-03-08T23:55:24.843 INFO:teuthology.orchestra.run.vm05.stdout:(54/136): flexiblas-openblas-openmp-3.0.4-9.el9 302 kB/s | 15 kB 00:00 2026-03-08T23:55:24.931 INFO:teuthology.orchestra.run.vm09.stdout:(29/136): ceph-mgr-dashboard-19.2.3-678.ge911bd 6.1 MB/s | 3.8 MB 00:00 2026-03-08T23:55:24.943 INFO:teuthology.orchestra.run.vm05.stdout:(55/136): libnbd-1.20.3-4.el9.x86_64.rpm 1.6 MB/s | 164 kB 00:00 2026-03-08T23:55:24.982 INFO:teuthology.orchestra.run.vm02.stdout:(44/136): python3-ply-3.11-14.el9.noarch.rpm 196 kB/s | 106 kB 00:00 2026-03-08T23:55:24.992 INFO:teuthology.orchestra.run.vm05.stdout:(56/136): librabbitmq-0.11.0-7.el9.x86_64.rpm 922 kB/s | 45 kB 00:00 2026-03-08T23:55:25.003 INFO:teuthology.orchestra.run.vm02.stdout:(45/136): python3-cryptography-36.0.1-5.el9.x86 2.0 MB/s | 1.2 MB 00:00 2026-03-08T23:55:25.012 INFO:teuthology.orchestra.run.vm02.stdout:(46/136): python3-cffi-1.14.5-5.el9.x86_64.rpm 399 kB/s | 253 kB 00:00 2026-03-08T23:55:25.042 INFO:teuthology.orchestra.run.vm05.stdout:(57/136): libpmemobj-1.12.1-1.el9.x86_64.rpm 806 kB/s | 160 kB 00:00 2026-03-08T23:55:25.057 INFO:teuthology.orchestra.run.vm09.stdout:(30/136): ceph-mgr-modules-core-19.2.3-678.ge91 2.0 MB/s | 253 kB 00:00 2026-03-08T23:55:25.093 INFO:teuthology.orchestra.run.vm05.stdout:(58/136): librdkafka-1.6.1-102.el9.x86_64.rpm 6.4 MB/s | 662 kB 00:00 2026-03-08T23:55:25.138 INFO:teuthology.orchestra.run.vm02.stdout:(47/136): python3-requests-2.25.1-10.el9.noarch 942 kB/s | 126 kB 00:00 2026-03-08T23:55:25.138 INFO:teuthology.orchestra.run.vm05.stdout:(59/136): libstoragemgmt-1.10.1-1.el9.x86_64.rp 2.5 MB/s | 246 kB 00:00 2026-03-08T23:55:25.144 INFO:teuthology.orchestra.run.vm02.stdout:(48/136): python3-urllib3-1.26.5-7.el9.noarch.r 1.6 MB/s | 218 kB 00:00 2026-03-08T23:55:25.145 INFO:teuthology.orchestra.run.vm05.stdout:(60/136): libxslt-1.1.34-12.el9.x86_64.rpm 4.4 MB/s | 233 kB 00:00 2026-03-08T23:55:25.177 INFO:teuthology.orchestra.run.vm05.stdout:(61/136): flexiblas-netlib-3.0.4-9.el9.x86_64.r 6.8 MB/s | 3.0 MB 00:00 2026-03-08T23:55:25.179 INFO:teuthology.orchestra.run.vm09.stdout:(31/136): ceph-mgr-rook-19.2.3-678.ge911bdeb.el 401 kB/s | 49 kB 00:00 2026-03-08T23:55:25.191 INFO:teuthology.orchestra.run.vm05.stdout:(62/136): lttng-ust-2.12.0-6.el9.x86_64.rpm 5.5 MB/s | 292 kB 00:00 2026-03-08T23:55:25.196 INFO:teuthology.orchestra.run.vm05.stdout:(63/136): lua-5.4.4-4.el9.x86_64.rpm 3.6 MB/s | 188 kB 00:00 2026-03-08T23:55:25.226 INFO:teuthology.orchestra.run.vm05.stdout:(64/136): openblas-0.3.29-1.el9.x86_64.rpm 857 kB/s | 42 kB 00:00 2026-03-08T23:55:25.269 INFO:teuthology.orchestra.run.vm02.stdout:(49/136): unzip-6.0-59.el9.x86_64.rpm 1.4 MB/s | 182 kB 00:00 2026-03-08T23:55:25.305 INFO:teuthology.orchestra.run.vm09.stdout:(32/136): ceph-prometheus-alerts-19.2.3-678.ge9 134 kB/s | 17 kB 00:00 2026-03-08T23:55:25.434 INFO:teuthology.orchestra.run.vm09.stdout:(33/136): ceph-volume-19.2.3-678.ge911bdeb.el9. 2.3 MB/s | 299 kB 00:00 2026-03-08T23:55:25.454 INFO:teuthology.orchestra.run.vm05.stdout:(65/136): openblas-openmp-0.3.29-1.el9.x86_64.r 20 MB/s | 5.3 MB 00:00 2026-03-08T23:55:25.457 INFO:teuthology.orchestra.run.vm05.stdout:(66/136): protobuf-3.14.0-17.el9.x86_64.rpm 3.9 MB/s | 1.0 MB 00:00 2026-03-08T23:55:25.470 INFO:teuthology.orchestra.run.vm09.stdout:(34/136): ceph-mgr-diskprediction-local-19.2.3- 6.8 MB/s | 7.4 MB 00:01 2026-03-08T23:55:25.498 INFO:teuthology.orchestra.run.vm02.stdout:(50/136): python3-pycparser-2.20-6.el9.noarch.r 262 kB/s | 135 kB 00:00 2026-03-08T23:55:25.510 INFO:teuthology.orchestra.run.vm05.stdout:(67/136): python3-devel-3.9.25-3.el9.x86_64.rpm 4.3 MB/s | 244 kB 00:00 2026-03-08T23:55:25.513 INFO:teuthology.orchestra.run.vm05.stdout:(68/136): python3-jinja2-2.11.3-8.el9.noarch.rp 4.4 MB/s | 249 kB 00:00 2026-03-08T23:55:25.564 INFO:teuthology.orchestra.run.vm05.stdout:(69/136): python3-jmespath-1.0.1-1.el9.noarch.r 883 kB/s | 48 kB 00:00 2026-03-08T23:55:25.565 INFO:teuthology.orchestra.run.vm09.stdout:(35/136): cephadm-19.2.3-678.ge911bdeb.el9.noar 5.7 MB/s | 769 kB 00:00 2026-03-08T23:55:25.565 INFO:teuthology.orchestra.run.vm05.stdout:(70/136): python3-libstoragemgmt-1.10.1-1.el9.x 3.3 MB/s | 177 kB 00:00 2026-03-08T23:55:25.583 INFO:teuthology.orchestra.run.vm05.stdout:(71/136): python3-babel-2.9.1-2.el9.noarch.rpm 17 MB/s | 6.0 MB 00:00 2026-03-08T23:55:25.585 INFO:teuthology.orchestra.run.vm02.stdout:(51/136): boost-program-options-1.75.0-13.el9.x 329 kB/s | 104 kB 00:00 2026-03-08T23:55:25.605 INFO:teuthology.orchestra.run.vm02.stdout:(52/136): flexiblas-3.0.4-9.el9.x86_64.rpm 278 kB/s | 30 kB 00:00 2026-03-08T23:55:25.616 INFO:teuthology.orchestra.run.vm05.stdout:(72/136): python3-mako-1.1.4-6.el9.noarch.rpm 3.2 MB/s | 172 kB 00:00 2026-03-08T23:55:25.617 INFO:teuthology.orchestra.run.vm05.stdout:(73/136): python3-markupsafe-1.1.1-12.el9.x86_6 679 kB/s | 35 kB 00:00 2026-03-08T23:55:25.657 INFO:teuthology.orchestra.run.vm02.stdout:(53/136): flexiblas-openblas-openmp-3.0.4-9.el9 288 kB/s | 15 kB 00:00 2026-03-08T23:55:25.671 INFO:teuthology.orchestra.run.vm05.stdout:(74/136): python3-numpy-f2py-1.23.5-2.el9.x86_6 8.0 MB/s | 442 kB 00:00 2026-03-08T23:55:25.671 INFO:teuthology.orchestra.run.vm05.stdout:(75/136): python3-packaging-20.9-5.el9.noarch.r 1.4 MB/s | 77 kB 00:00 2026-03-08T23:55:25.685 INFO:teuthology.orchestra.run.vm09.stdout:(36/136): ledmon-libs-1.1.0-3.el9.x86_64.rpm 338 kB/s | 40 kB 00:00 2026-03-08T23:55:25.694 INFO:teuthology.orchestra.run.vm09.stdout:(37/136): cryptsetup-2.8.1-3.el9.x86_64.rpm 1.5 MB/s | 351 kB 00:00 2026-03-08T23:55:25.722 INFO:teuthology.orchestra.run.vm05.stdout:(76/136): python3-protobuf-3.14.0-17.el9.noarch 5.1 MB/s | 267 kB 00:00 2026-03-08T23:55:25.724 INFO:teuthology.orchestra.run.vm05.stdout:(77/136): python3-pyasn1-0.4.8-7.el9.noarch.rpm 3.0 MB/s | 157 kB 00:00 2026-03-08T23:55:25.738 INFO:teuthology.orchestra.run.vm09.stdout:(38/136): libconfig-1.7.2-9.el9.x86_64.rpm 1.3 MB/s | 72 kB 00:00 2026-03-08T23:55:25.769 INFO:teuthology.orchestra.run.vm02.stdout:(54/136): libnbd-1.20.3-4.el9.x86_64.rpm 1.4 MB/s | 164 kB 00:00 2026-03-08T23:55:25.771 INFO:teuthology.orchestra.run.vm09.stdout:(39/136): libgfortran-11.5.0-14.el9.x86_64.rpm 10 MB/s | 794 kB 00:00 2026-03-08T23:55:25.776 INFO:teuthology.orchestra.run.vm05.stdout:(78/136): python3-pyasn1-modules-0.4.8-7.el9.no 5.1 MB/s | 277 kB 00:00 2026-03-08T23:55:25.777 INFO:teuthology.orchestra.run.vm02.stdout:(55/136): zip-3.0-35.el9.x86_64.rpm 420 kB/s | 266 kB 00:00 2026-03-08T23:55:25.778 INFO:teuthology.orchestra.run.vm05.stdout:(79/136): python3-requests-oauthlib-1.3.0-12.el 999 kB/s | 54 kB 00:00 2026-03-08T23:55:25.793 INFO:teuthology.orchestra.run.vm09.stdout:(40/136): mailcap-2.1.49-5.el9.noarch.rpm 1.5 MB/s | 33 kB 00:00 2026-03-08T23:55:25.813 INFO:teuthology.orchestra.run.vm09.stdout:(41/136): libquadmath-11.5.0-14.el9.x86_64.rpm 2.4 MB/s | 184 kB 00:00 2026-03-08T23:55:25.818 INFO:teuthology.orchestra.run.vm09.stdout:(42/136): pciutils-3.7.0-7.el9.x86_64.rpm 3.7 MB/s | 93 kB 00:00 2026-03-08T23:55:25.818 INFO:teuthology.orchestra.run.vm02.stdout:(56/136): libpmemobj-1.12.1-1.el9.x86_64.rpm 3.2 MB/s | 160 kB 00:00 2026-03-08T23:55:25.841 INFO:teuthology.orchestra.run.vm05.stdout:(80/136): python3-toml-0.10.2-6.el9.noarch.rpm 664 kB/s | 42 kB 00:00 2026-03-08T23:55:25.897 INFO:teuthology.orchestra.run.vm02.stdout:(57/136): librdkafka-1.6.1-102.el9.x86_64.rpm 8.3 MB/s | 662 kB 00:00 2026-03-08T23:55:25.897 INFO:teuthology.orchestra.run.vm05.stdout:(81/136): qatlib-25.08.0-2.el9.x86_64.rpm 4.2 MB/s | 240 kB 00:00 2026-03-08T23:55:25.919 INFO:teuthology.orchestra.run.vm09.stdout:(43/136): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.4 MB/s | 253 kB 00:00 2026-03-08T23:55:25.933 INFO:teuthology.orchestra.run.vm02.stdout:(58/136): librabbitmq-0.11.0-7.el9.x86_64.rpm 290 kB/s | 45 kB 00:00 2026-03-08T23:55:25.948 INFO:teuthology.orchestra.run.vm05.stdout:(82/136): qatlib-service-25.08.0-2.el9.x86_64.r 727 kB/s | 37 kB 00:00 2026-03-08T23:55:25.964 INFO:teuthology.orchestra.run.vm02.stdout:(59/136): libstoragemgmt-1.10.1-1.el9.x86_64.rp 3.6 MB/s | 246 kB 00:00 2026-03-08T23:55:25.971 INFO:teuthology.orchestra.run.vm09.stdout:(44/136): python3-ply-3.11-14.el9.noarch.rpm 2.0 MB/s | 106 kB 00:00 2026-03-08T23:55:26.009 INFO:teuthology.orchestra.run.vm09.stdout:(45/136): python3-pycparser-2.20-6.el9.noarch.r 3.5 MB/s | 135 kB 00:00 2026-03-08T23:55:26.009 INFO:teuthology.orchestra.run.vm05.stdout:(83/136): python3-numpy-1.23.5-2.el9.x86_64.rpm 14 MB/s | 6.1 MB 00:00 2026-03-08T23:55:26.010 INFO:teuthology.orchestra.run.vm05.stdout:(84/136): qatzip-libs-1.3.1-1.el9.x86_64.rpm 1.0 MB/s | 66 kB 00:00 2026-03-08T23:55:26.015 INFO:teuthology.orchestra.run.vm02.stdout:(60/136): lttng-ust-2.12.0-6.el9.x86_64.rpm 5.7 MB/s | 292 kB 00:00 2026-03-08T23:55:26.037 INFO:teuthology.orchestra.run.vm09.stdout:(46/136): python3-requests-2.25.1-10.el9.noarch 4.5 MB/s | 126 kB 00:00 2026-03-08T23:55:26.040 INFO:teuthology.orchestra.run.vm09.stdout:(47/136): python3-cryptography-36.0.1-5.el9.x86 5.6 MB/s | 1.2 MB 00:00 2026-03-08T23:55:26.063 INFO:teuthology.orchestra.run.vm05.stdout:(85/136): socat-1.7.4.1-8.el9.x86_64.rpm 5.6 MB/s | 303 kB 00:00 2026-03-08T23:55:26.064 INFO:teuthology.orchestra.run.vm05.stdout:(86/136): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.2 MB/s | 64 kB 00:00 2026-03-08T23:55:26.069 INFO:teuthology.orchestra.run.vm09.stdout:(48/136): unzip-6.0-59.el9.x86_64.rpm 6.3 MB/s | 182 kB 00:00 2026-03-08T23:55:26.071 INFO:teuthology.orchestra.run.vm09.stdout:(49/136): python3-urllib3-1.26.5-7.el9.noarch.r 6.3 MB/s | 218 kB 00:00 2026-03-08T23:55:26.081 INFO:teuthology.orchestra.run.vm02.stdout:(61/136): lua-5.4.4-4.el9.x86_64.rpm 2.8 MB/s | 188 kB 00:00 2026-03-08T23:55:26.100 INFO:teuthology.orchestra.run.vm09.stdout:(50/136): zip-3.0-35.el9.x86_64.rpm 8.5 MB/s | 266 kB 00:00 2026-03-08T23:55:26.127 INFO:teuthology.orchestra.run.vm02.stdout:(62/136): openblas-0.3.29-1.el9.x86_64.rpm 919 kB/s | 42 kB 00:00 2026-03-08T23:55:26.169 INFO:teuthology.orchestra.run.vm05.stdout:(87/136): lua-devel-5.4.4-4.el9.x86_64.rpm 210 kB/s | 22 kB 00:00 2026-03-08T23:55:26.174 INFO:teuthology.orchestra.run.vm02.stdout:(63/136): flexiblas-netlib-3.0.4-9.el9.x86_64.r 5.1 MB/s | 3.0 MB 00:00 2026-03-08T23:55:26.176 INFO:teuthology.orchestra.run.vm02.stdout:(64/136): libxslt-1.1.34-12.el9.x86_64.rpm 961 kB/s | 233 kB 00:00 2026-03-08T23:55:26.185 INFO:teuthology.orchestra.run.vm05.stdout:(88/136): abseil-cpp-20211102.0-4.el9.x86_64.rp 36 MB/s | 551 kB 00:00 2026-03-08T23:55:26.195 INFO:teuthology.orchestra.run.vm05.stdout:(89/136): gperftools-libs-2.9.1-3.el9.x86_64.rp 31 MB/s | 308 kB 00:00 2026-03-08T23:55:26.199 INFO:teuthology.orchestra.run.vm05.stdout:(90/136): grpc-data-1.46.7-10.el9.noarch.rpm 5.7 MB/s | 19 kB 00:00 2026-03-08T23:55:26.343 INFO:teuthology.orchestra.run.vm05.stdout:(91/136): libarrow-9.0.0-15.el9.x86_64.rpm 31 MB/s | 4.4 MB 00:00 2026-03-08T23:55:26.345 INFO:teuthology.orchestra.run.vm05.stdout:(92/136): libarrow-doc-9.0.0-15.el9.noarch.rpm 9.7 MB/s | 25 kB 00:00 2026-03-08T23:55:26.348 INFO:teuthology.orchestra.run.vm05.stdout:(93/136): liboath-2.6.12-1.el9.x86_64.rpm 18 MB/s | 49 kB 00:00 2026-03-08T23:55:26.353 INFO:teuthology.orchestra.run.vm05.stdout:(94/136): protobuf-compiler-3.14.0-17.el9.x86_6 2.9 MB/s | 862 kB 00:00 2026-03-08T23:55:26.355 INFO:teuthology.orchestra.run.vm05.stdout:(95/136): libunwind-1.6.2-1.el9.x86_64.rpm 9.7 MB/s | 67 kB 00:00 2026-03-08T23:55:26.362 INFO:teuthology.orchestra.run.vm05.stdout:(96/136): luarocks-3.9.2-5.el9.noarch.rpm 16 MB/s | 151 kB 00:00 2026-03-08T23:55:26.375 INFO:teuthology.orchestra.run.vm05.stdout:(97/136): python3-asyncssh-2.13.2-5.el9.noarch. 44 MB/s | 548 kB 00:00 2026-03-08T23:55:26.377 INFO:teuthology.orchestra.run.vm05.stdout:(98/136): python3-autocommand-2.2.2-8.el9.noarc 12 MB/s | 29 kB 00:00 2026-03-08T23:55:26.380 INFO:teuthology.orchestra.run.vm05.stdout:(99/136): parquet-libs-9.0.0-15.el9.x86_64.rpm 34 MB/s | 838 kB 00:00 2026-03-08T23:55:26.381 INFO:teuthology.orchestra.run.vm05.stdout:(100/136): python3-backports-tarfile-1.2.0-1.el 19 MB/s | 60 kB 00:00 2026-03-08T23:55:26.383 INFO:teuthology.orchestra.run.vm05.stdout:(101/136): python3-bcrypt-3.2.2-1.el9.x86_64.rp 15 MB/s | 43 kB 00:00 2026-03-08T23:55:26.384 INFO:teuthology.orchestra.run.vm05.stdout:(102/136): python3-cachetools-4.2.4-1.el9.noarc 11 MB/s | 32 kB 00:00 2026-03-08T23:55:26.385 INFO:teuthology.orchestra.run.vm05.stdout:(103/136): python3-certifi-2023.05.07-4.el9.noa 6.5 MB/s | 14 kB 00:00 2026-03-08T23:55:26.388 INFO:teuthology.orchestra.run.vm05.stdout:(104/136): python3-cheroot-10.0.1-4.el9.noarch. 39 MB/s | 173 kB 00:00 2026-03-08T23:55:26.395 INFO:teuthology.orchestra.run.vm05.stdout:(105/136): python3-google-auth-2.45.0-1.el9.noa 38 MB/s | 254 kB 00:00 2026-03-08T23:55:26.397 INFO:teuthology.orchestra.run.vm05.stdout:(106/136): python3-cherrypy-18.6.1-2.el9.noarch 30 MB/s | 358 kB 00:00 2026-03-08T23:55:26.405 INFO:teuthology.orchestra.run.vm05.stdout:(107/136): python3-grpcio-tools-1.46.7-10.el9.x 19 MB/s | 144 kB 00:00 2026-03-08T23:55:26.408 INFO:teuthology.orchestra.run.vm05.stdout:(108/136): python3-jaraco-8.2.1-3.el9.noarch.rp 4.1 MB/s | 11 kB 00:00 2026-03-08T23:55:26.411 INFO:teuthology.orchestra.run.vm05.stdout:(109/136): python3-jaraco-classes-3.2.1-5.el9.n 5.6 MB/s | 18 kB 00:00 2026-03-08T23:55:26.415 INFO:teuthology.orchestra.run.vm05.stdout:(110/136): python3-jaraco-collections-3.0.0-8.e 6.1 MB/s | 23 kB 00:00 2026-03-08T23:55:26.420 INFO:teuthology.orchestra.run.vm05.stdout:(111/136): python3-jaraco-context-6.0.1-3.el9.n 4.3 MB/s | 20 kB 00:00 2026-03-08T23:55:26.426 INFO:teuthology.orchestra.run.vm05.stdout:(112/136): python3-grpcio-1.46.7-10.el9.x86_64. 66 MB/s | 2.0 MB 00:00 2026-03-08T23:55:26.427 INFO:teuthology.orchestra.run.vm05.stdout:(113/136): python3-jaraco-functools-3.5.0-2.el9 2.9 MB/s | 19 kB 00:00 2026-03-08T23:55:26.429 INFO:teuthology.orchestra.run.vm05.stdout:(114/136): python3-jaraco-text-4.0.0-2.el9.noar 11 MB/s | 26 kB 00:00 2026-03-08T23:55:26.433 INFO:teuthology.orchestra.run.vm05.stdout:(115/136): python3-logutils-0.3.5-21.el9.noarch 14 MB/s | 46 kB 00:00 2026-03-08T23:55:26.439 INFO:teuthology.orchestra.run.vm05.stdout:(116/136): python3-more-itertools-8.12.0-2.el9. 13 MB/s | 79 kB 00:00 2026-03-08T23:55:26.443 INFO:teuthology.orchestra.run.vm05.stdout:(117/136): python3-natsort-7.1.1-5.el9.noarch.r 19 MB/s | 58 kB 00:00 2026-03-08T23:55:26.449 INFO:teuthology.orchestra.run.vm05.stdout:(118/136): python3-pecan-1.4.2-3.el9.noarch.rpm 48 MB/s | 272 kB 00:00 2026-03-08T23:55:26.451 INFO:teuthology.orchestra.run.vm05.stdout:(119/136): python3-portend-3.1.0-2.el9.noarch.r 6.7 MB/s | 16 kB 00:00 2026-03-08T23:55:26.454 INFO:teuthology.orchestra.run.vm02.stdout:(65/136): protobuf-3.14.0-17.el9.x86_64.rpm 3.6 MB/s | 1.0 MB 00:00 2026-03-08T23:55:26.456 INFO:teuthology.orchestra.run.vm05.stdout:(120/136): python3-pyOpenSSL-21.0.0-1.el9.noarc 20 MB/s | 90 kB 00:00 2026-03-08T23:55:26.460 INFO:teuthology.orchestra.run.vm05.stdout:(121/136): python3-kubernetes-26.1.0-3.el9.noar 32 MB/s | 1.0 MB 00:00 2026-03-08T23:55:26.461 INFO:teuthology.orchestra.run.vm05.stdout:(122/136): python3-repoze-lru-0.7-16.el9.noarch 7.5 MB/s | 31 kB 00:00 2026-03-08T23:55:26.464 INFO:teuthology.orchestra.run.vm05.stdout:(123/136): python3-routes-2.5.1-5.el9.noarch.rp 44 MB/s | 188 kB 00:00 2026-03-08T23:55:26.465 INFO:teuthology.orchestra.run.vm05.stdout:(124/136): python3-rsa-4.9-2.el9.noarch.rpm 15 MB/s | 59 kB 00:00 2026-03-08T23:55:26.467 INFO:teuthology.orchestra.run.vm05.stdout:(125/136): python3-tempora-5.0.0-2.el9.noarch.r 13 MB/s | 36 kB 00:00 2026-03-08T23:55:26.469 INFO:teuthology.orchestra.run.vm05.stdout:(126/136): python3-typing-extensions-4.15.0-1.e 23 MB/s | 86 kB 00:00 2026-03-08T23:55:26.472 INFO:teuthology.orchestra.run.vm05.stdout:(127/136): python3-webob-1.8.8-2.el9.noarch.rpm 49 MB/s | 230 kB 00:00 2026-03-08T23:55:26.475 INFO:teuthology.orchestra.run.vm05.stdout:(128/136): python3-websocket-client-1.2.3-2.el9 19 MB/s | 90 kB 00:00 2026-03-08T23:55:26.480 INFO:teuthology.orchestra.run.vm05.stdout:(129/136): python3-xmltodict-0.12.0-15.el9.noar 4.4 MB/s | 22 kB 00:00 2026-03-08T23:55:26.482 INFO:teuthology.orchestra.run.vm05.stdout:(130/136): python3-werkzeug-2.0.3-3.el9.1.noarc 47 MB/s | 427 kB 00:00 2026-03-08T23:55:26.483 INFO:teuthology.orchestra.run.vm05.stdout:(131/136): python3-zc-lockfile-2.0-10.el9.noarc 8.2 MB/s | 20 kB 00:00 2026-03-08T23:55:26.486 INFO:teuthology.orchestra.run.vm05.stdout:(132/136): re2-20211101-20.el9.x86_64.rpm 49 MB/s | 191 kB 00:00 2026-03-08T23:55:26.504 INFO:teuthology.orchestra.run.vm02.stdout:(66/136): python3-devel-3.9.25-3.el9.x86_64.rpm 4.9 MB/s | 244 kB 00:00 2026-03-08T23:55:26.516 INFO:teuthology.orchestra.run.vm05.stdout:(133/136): thrift-0.15.0-4.el9.x86_64.rpm 49 MB/s | 1.6 MB 00:00 2026-03-08T23:55:26.552 INFO:teuthology.orchestra.run.vm02.stdout:(67/136): python3-jinja2-2.11.3-8.el9.noarch.rp 5.1 MB/s | 249 kB 00:00 2026-03-08T23:55:26.593 INFO:teuthology.orchestra.run.vm02.stdout:(68/136): python3-jmespath-1.0.1-1.el9.noarch.r 1.1 MB/s | 48 kB 00:00 2026-03-08T23:55:26.637 INFO:teuthology.orchestra.run.vm02.stdout:(69/136): python3-libstoragemgmt-1.10.1-1.el9.x 4.0 MB/s | 177 kB 00:00 2026-03-08T23:55:26.685 INFO:teuthology.orchestra.run.vm02.stdout:(70/136): python3-mako-1.1.4-6.el9.noarch.rpm 3.5 MB/s | 172 kB 00:00 2026-03-08T23:55:26.727 INFO:teuthology.orchestra.run.vm02.stdout:(71/136): python3-markupsafe-1.1.1-12.el9.x86_6 840 kB/s | 35 kB 00:00 2026-03-08T23:55:26.773 INFO:teuthology.orchestra.run.vm02.stdout:(72/136): openblas-openmp-0.3.29-1.el9.x86_64.r 8.2 MB/s | 5.3 MB 00:00 2026-03-08T23:55:26.827 INFO:teuthology.orchestra.run.vm02.stdout:(73/136): python3-numpy-f2py-1.23.5-2.el9.x86_6 8.1 MB/s | 442 kB 00:00 2026-03-08T23:55:26.869 INFO:teuthology.orchestra.run.vm02.stdout:(74/136): python3-packaging-20.9-5.el9.noarch.r 1.8 MB/s | 77 kB 00:00 2026-03-08T23:55:26.922 INFO:teuthology.orchestra.run.vm02.stdout:(75/136): python3-protobuf-3.14.0-17.el9.noarch 5.0 MB/s | 267 kB 00:00 2026-03-08T23:55:26.944 INFO:teuthology.orchestra.run.vm02.stdout:(76/136): python3-numpy-1.23.5-2.el9.x86_64.rpm 28 MB/s | 6.1 MB 00:00 2026-03-08T23:55:26.988 INFO:teuthology.orchestra.run.vm02.stdout:(77/136): python3-pyasn1-0.4.8-7.el9.noarch.rpm 2.3 MB/s | 157 kB 00:00 2026-03-08T23:55:27.017 INFO:teuthology.orchestra.run.vm02.stdout:(78/136): python3-pyasn1-modules-0.4.8-7.el9.no 3.7 MB/s | 277 kB 00:00 2026-03-08T23:55:27.033 INFO:teuthology.orchestra.run.vm02.stdout:(79/136): python3-requests-oauthlib-1.3.0-12.el 1.2 MB/s | 54 kB 00:00 2026-03-08T23:55:27.097 INFO:teuthology.orchestra.run.vm05.stdout:(134/136): python3-scipy-1.9.3-2.el9.x86_64.rpm 15 MB/s | 19 MB 00:01 2026-03-08T23:55:27.147 INFO:teuthology.orchestra.run.vm02.stdout:(80/136): python3-toml-0.10.2-6.el9.noarch.rpm 366 kB/s | 42 kB 00:00 2026-03-08T23:55:27.207 INFO:teuthology.orchestra.run.vm02.stdout:(81/136): qatlib-25.08.0-2.el9.x86_64.rpm 3.9 MB/s | 240 kB 00:00 2026-03-08T23:55:27.251 INFO:teuthology.orchestra.run.vm02.stdout:(82/136): qatlib-service-25.08.0-2.el9.x86_64.r 848 kB/s | 37 kB 00:00 2026-03-08T23:55:27.290 INFO:teuthology.orchestra.run.vm02.stdout:(83/136): qatzip-libs-1.3.1-1.el9.x86_64.rpm 1.7 MB/s | 66 kB 00:00 2026-03-08T23:55:27.346 INFO:teuthology.orchestra.run.vm02.stdout:(84/136): socat-1.7.4.1-8.el9.x86_64.rpm 5.3 MB/s | 303 kB 00:00 2026-03-08T23:55:27.394 INFO:teuthology.orchestra.run.vm02.stdout:(85/136): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.3 MB/s | 64 kB 00:00 2026-03-08T23:55:27.499 INFO:teuthology.orchestra.run.vm02.stdout:(86/136): lua-devel-5.4.4-4.el9.x86_64.rpm 211 kB/s | 22 kB 00:00 2026-03-08T23:55:27.531 INFO:teuthology.orchestra.run.vm05.stdout:(135/136): librbd1-19.2.3-678.ge911bdeb.el9.x86 3.1 MB/s | 3.2 MB 00:01 2026-03-08T23:55:27.631 INFO:teuthology.orchestra.run.vm02.stdout:(87/136): python3-scipy-1.9.3-2.el9.x86_64.rpm 31 MB/s | 19 MB 00:00 2026-03-08T23:55:27.633 INFO:teuthology.orchestra.run.vm05.stdout:(136/136): librados2-19.2.3-678.ge911bdeb.el9.x 3.0 MB/s | 3.4 MB 00:01 2026-03-08T23:55:27.635 INFO:teuthology.orchestra.run.vm05.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:55:27.636 INFO:teuthology.orchestra.run.vm05.stdout:Total 15 MB/s | 210 MB 00:13 2026-03-08T23:55:27.645 INFO:teuthology.orchestra.run.vm02.stdout:(88/136): abseil-cpp-20211102.0-4.el9.x86_64.rp 38 MB/s | 551 kB 00:00 2026-03-08T23:55:27.652 INFO:teuthology.orchestra.run.vm02.stdout:(89/136): gperftools-libs-2.9.1-3.el9.x86_64.rp 48 MB/s | 308 kB 00:00 2026-03-08T23:55:27.654 INFO:teuthology.orchestra.run.vm02.stdout:(90/136): grpc-data-1.46.7-10.el9.noarch.rpm 8.6 MB/s | 19 kB 00:00 2026-03-08T23:55:27.710 INFO:teuthology.orchestra.run.vm09.stdout:(51/136): flexiblas-3.0.4-9.el9.x86_64.rpm 18 kB/s | 30 kB 00:01 2026-03-08T23:55:27.710 INFO:teuthology.orchestra.run.vm02.stdout:(91/136): libarrow-9.0.0-15.el9.x86_64.rpm 80 MB/s | 4.4 MB 00:00 2026-03-08T23:55:27.712 INFO:teuthology.orchestra.run.vm02.stdout:(92/136): libarrow-doc-9.0.0-15.el9.noarch.rpm 11 MB/s | 25 kB 00:00 2026-03-08T23:55:27.715 INFO:teuthology.orchestra.run.vm02.stdout:(93/136): liboath-2.6.12-1.el9.x86_64.rpm 20 MB/s | 49 kB 00:00 2026-03-08T23:55:27.718 INFO:teuthology.orchestra.run.vm02.stdout:(94/136): libunwind-1.6.2-1.el9.x86_64.rpm 23 MB/s | 67 kB 00:00 2026-03-08T23:55:27.722 INFO:teuthology.orchestra.run.vm02.stdout:(95/136): luarocks-3.9.2-5.el9.noarch.rpm 41 MB/s | 151 kB 00:00 2026-03-08T23:55:27.733 INFO:teuthology.orchestra.run.vm02.stdout:(96/136): parquet-libs-9.0.0-15.el9.x86_64.rpm 73 MB/s | 838 kB 00:00 2026-03-08T23:55:27.741 INFO:teuthology.orchestra.run.vm02.stdout:(97/136): python3-asyncssh-2.13.2-5.el9.noarch. 70 MB/s | 548 kB 00:00 2026-03-08T23:55:27.743 INFO:teuthology.orchestra.run.vm02.stdout:(98/136): python3-autocommand-2.2.2-8.el9.noarc 13 MB/s | 29 kB 00:00 2026-03-08T23:55:27.746 INFO:teuthology.orchestra.run.vm02.stdout:(99/136): python3-backports-tarfile-1.2.0-1.el9 24 MB/s | 60 kB 00:00 2026-03-08T23:55:27.749 INFO:teuthology.orchestra.run.vm02.stdout:(100/136): python3-bcrypt-3.2.2-1.el9.x86_64.rp 15 MB/s | 43 kB 00:00 2026-03-08T23:55:27.751 INFO:teuthology.orchestra.run.vm02.stdout:(101/136): python3-cachetools-4.2.4-1.el9.noarc 14 MB/s | 32 kB 00:00 2026-03-08T23:55:27.754 INFO:teuthology.orchestra.run.vm02.stdout:(102/136): python3-certifi-2023.05.07-4.el9.noa 6.0 MB/s | 14 kB 00:00 2026-03-08T23:55:27.758 INFO:teuthology.orchestra.run.vm02.stdout:(103/136): python3-cheroot-10.0.1-4.el9.noarch. 44 MB/s | 173 kB 00:00 2026-03-08T23:55:27.764 INFO:teuthology.orchestra.run.vm09.stdout:(52/136): boost-program-options-1.75.0-13.el9.x 61 kB/s | 104 kB 00:01 2026-03-08T23:55:27.765 INFO:teuthology.orchestra.run.vm02.stdout:(104/136): python3-cherrypy-18.6.1-2.el9.noarch 60 MB/s | 358 kB 00:00 2026-03-08T23:55:27.769 INFO:teuthology.orchestra.run.vm02.stdout:(105/136): python3-google-auth-2.45.0-1.el9.noa 56 MB/s | 254 kB 00:00 2026-03-08T23:55:27.796 INFO:teuthology.orchestra.run.vm02.stdout:(106/136): python3-grpcio-1.46.7-10.el9.x86_64. 76 MB/s | 2.0 MB 00:00 2026-03-08T23:55:27.796 INFO:teuthology.orchestra.run.vm09.stdout:(53/136): flexiblas-openblas-openmp-3.0.4-9.el9 471 kB/s | 15 kB 00:00 2026-03-08T23:55:27.801 INFO:teuthology.orchestra.run.vm02.stdout:(107/136): python3-grpcio-tools-1.46.7-10.el9.x 33 MB/s | 144 kB 00:00 2026-03-08T23:55:27.802 INFO:teuthology.orchestra.run.vm02.stdout:(108/136): python3-jaraco-8.2.1-3.el9.noarch.rp 6.0 MB/s | 11 kB 00:00 2026-03-08T23:55:27.805 INFO:teuthology.orchestra.run.vm02.stdout:(109/136): python3-jaraco-classes-3.2.1-5.el9.n 8.1 MB/s | 18 kB 00:00 2026-03-08T23:55:27.807 INFO:teuthology.orchestra.run.vm02.stdout:(110/136): python3-jaraco-collections-3.0.0-8.e 9.6 MB/s | 23 kB 00:00 2026-03-08T23:55:27.810 INFO:teuthology.orchestra.run.vm02.stdout:(111/136): python3-jaraco-context-6.0.1-3.el9.n 7.1 MB/s | 20 kB 00:00 2026-03-08T23:55:27.812 INFO:teuthology.orchestra.run.vm02.stdout:(112/136): python3-jaraco-functools-3.5.0-2.el9 8.5 MB/s | 19 kB 00:00 2026-03-08T23:55:27.814 INFO:teuthology.orchestra.run.vm02.stdout:(113/136): python3-jaraco-text-4.0.0-2.el9.noar 13 MB/s | 26 kB 00:00 2026-03-08T23:55:27.829 INFO:teuthology.orchestra.run.vm02.stdout:(114/136): python3-kubernetes-26.1.0-3.el9.noar 72 MB/s | 1.0 MB 00:00 2026-03-08T23:55:27.844 INFO:teuthology.orchestra.run.vm02.stdout:(115/136): python3-logutils-0.3.5-21.el9.noarch 3.0 MB/s | 46 kB 00:00 2026-03-08T23:55:27.849 INFO:teuthology.orchestra.run.vm02.stdout:(116/136): python3-more-itertools-8.12.0-2.el9. 15 MB/s | 79 kB 00:00 2026-03-08T23:55:27.853 INFO:teuthology.orchestra.run.vm02.stdout:(117/136): python3-natsort-7.1.1-5.el9.noarch.r 18 MB/s | 58 kB 00:00 2026-03-08T23:55:27.858 INFO:teuthology.orchestra.run.vm02.stdout:(118/136): python3-pecan-1.4.2-3.el9.noarch.rpm 55 MB/s | 272 kB 00:00 2026-03-08T23:55:27.865 INFO:teuthology.orchestra.run.vm09.stdout:(54/136): libnbd-1.20.3-4.el9.x86_64.rpm 2.3 MB/s | 164 kB 00:00 2026-03-08T23:55:27.867 INFO:teuthology.orchestra.run.vm02.stdout:(119/136): python3-portend-3.1.0-2.el9.noarch.r 1.8 MB/s | 16 kB 00:00 2026-03-08T23:55:27.871 INFO:teuthology.orchestra.run.vm02.stdout:(120/136): python3-pyOpenSSL-21.0.0-1.el9.noarc 23 MB/s | 90 kB 00:00 2026-03-08T23:55:27.874 INFO:teuthology.orchestra.run.vm02.stdout:(121/136): python3-repoze-lru-0.7-16.el9.noarch 11 MB/s | 31 kB 00:00 2026-03-08T23:55:27.878 INFO:teuthology.orchestra.run.vm02.stdout:(122/136): python3-routes-2.5.1-5.el9.noarch.rp 45 MB/s | 188 kB 00:00 2026-03-08T23:55:27.881 INFO:teuthology.orchestra.run.vm02.stdout:(123/136): python3-rsa-4.9-2.el9.noarch.rpm 22 MB/s | 59 kB 00:00 2026-03-08T23:55:27.884 INFO:teuthology.orchestra.run.vm02.stdout:(124/136): python3-tempora-5.0.0-2.el9.noarch.r 13 MB/s | 36 kB 00:00 2026-03-08T23:55:27.887 INFO:teuthology.orchestra.run.vm02.stdout:(125/136): python3-typing-extensions-4.15.0-1.e 27 MB/s | 86 kB 00:00 2026-03-08T23:55:27.900 INFO:teuthology.orchestra.run.vm02.stdout:(126/136): python3-webob-1.8.8-2.el9.noarch.rpm 19 MB/s | 230 kB 00:00 2026-03-08T23:55:27.901 INFO:teuthology.orchestra.run.vm09.stdout:(55/136): libpmemobj-1.12.1-1.el9.x86_64.rpm 4.4 MB/s | 160 kB 00:00 2026-03-08T23:55:27.903 INFO:teuthology.orchestra.run.vm02.stdout:(127/136): python3-websocket-client-1.2.3-2.el9 30 MB/s | 90 kB 00:00 2026-03-08T23:55:27.910 INFO:teuthology.orchestra.run.vm02.stdout:(128/136): python3-werkzeug-2.0.3-3.el9.1.noarc 60 MB/s | 427 kB 00:00 2026-03-08T23:55:27.913 INFO:teuthology.orchestra.run.vm02.stdout:(129/136): python3-xmltodict-0.12.0-15.el9.noar 9.8 MB/s | 22 kB 00:00 2026-03-08T23:55:27.915 INFO:teuthology.orchestra.run.vm02.stdout:(130/136): python3-zc-lockfile-2.0-10.el9.noarc 9.5 MB/s | 20 kB 00:00 2026-03-08T23:55:27.920 INFO:teuthology.orchestra.run.vm02.stdout:(131/136): re2-20211101-20.el9.x86_64.rpm 39 MB/s | 191 kB 00:00 2026-03-08T23:55:27.934 INFO:teuthology.orchestra.run.vm09.stdout:(56/136): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.4 MB/s | 45 kB 00:00 2026-03-08T23:55:27.942 INFO:teuthology.orchestra.run.vm02.stdout:(132/136): thrift-0.15.0-4.el9.x86_64.rpm 73 MB/s | 1.6 MB 00:00 2026-03-08T23:55:27.954 INFO:teuthology.orchestra.run.vm09.stdout:(57/136): flexiblas-netlib-3.0.4-9.el9.x86_64.r 12 MB/s | 3.0 MB 00:00 2026-03-08T23:55:27.988 INFO:teuthology.orchestra.run.vm09.stdout:(58/136): libstoragemgmt-1.10.1-1.el9.x86_64.rp 7.1 MB/s | 246 kB 00:00 2026-03-08T23:55:28.021 INFO:teuthology.orchestra.run.vm09.stdout:(59/136): libxslt-1.1.34-12.el9.x86_64.rpm 7.1 MB/s | 233 kB 00:00 2026-03-08T23:55:28.024 INFO:teuthology.orchestra.run.vm09.stdout:(60/136): librdkafka-1.6.1-102.el9.x86_64.rpm 7.2 MB/s | 662 kB 00:00 2026-03-08T23:55:28.055 INFO:teuthology.orchestra.run.vm09.stdout:(61/136): lttng-ust-2.12.0-6.el9.x86_64.rpm 8.3 MB/s | 292 kB 00:00 2026-03-08T23:55:28.056 INFO:teuthology.orchestra.run.vm09.stdout:(62/136): lua-5.4.4-4.el9.x86_64.rpm 5.6 MB/s | 188 kB 00:00 2026-03-08T23:55:28.086 INFO:teuthology.orchestra.run.vm09.stdout:(63/136): openblas-0.3.29-1.el9.x86_64.rpm 1.4 MB/s | 42 kB 00:00 2026-03-08T23:55:28.119 INFO:teuthology.orchestra.run.vm02.stdout:(133/136): protobuf-compiler-3.14.0-17.el9.x86_ 1.4 MB/s | 862 kB 00:00 2026-03-08T23:55:28.309 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-08T23:55:28.364 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-08T23:55:28.364 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-08T23:55:28.431 INFO:teuthology.orchestra.run.vm09.stdout:(64/136): protobuf-3.14.0-17.el9.x86_64.rpm 2.9 MB/s | 1.0 MB 00:00 2026-03-08T23:55:28.469 INFO:teuthology.orchestra.run.vm09.stdout:(65/136): openblas-openmp-0.3.29-1.el9.x86_64.r 13 MB/s | 5.3 MB 00:00 2026-03-08T23:55:28.503 INFO:teuthology.orchestra.run.vm09.stdout:(66/136): python3-devel-3.9.25-3.el9.x86_64.rpm 7.2 MB/s | 244 kB 00:00 2026-03-08T23:55:28.537 INFO:teuthology.orchestra.run.vm09.stdout:(67/136): python3-jinja2-2.11.3-8.el9.noarch.rp 7.2 MB/s | 249 kB 00:00 2026-03-08T23:55:28.568 INFO:teuthology.orchestra.run.vm09.stdout:(68/136): python3-jmespath-1.0.1-1.el9.noarch.r 1.5 MB/s | 48 kB 00:00 2026-03-08T23:55:28.601 INFO:teuthology.orchestra.run.vm09.stdout:(69/136): python3-libstoragemgmt-1.10.1-1.el9.x 5.3 MB/s | 177 kB 00:00 2026-03-08T23:55:28.635 INFO:teuthology.orchestra.run.vm09.stdout:(70/136): python3-mako-1.1.4-6.el9.noarch.rpm 5.0 MB/s | 172 kB 00:00 2026-03-08T23:55:28.654 INFO:teuthology.orchestra.run.vm09.stdout:(71/136): python3-babel-2.9.1-2.el9.noarch.rpm 27 MB/s | 6.0 MB 00:00 2026-03-08T23:55:28.667 INFO:teuthology.orchestra.run.vm09.stdout:(72/136): python3-markupsafe-1.1.1-12.el9.x86_6 1.1 MB/s | 35 kB 00:00 2026-03-08T23:55:28.703 INFO:teuthology.orchestra.run.vm09.stdout:(73/136): python3-numpy-f2py-1.23.5-2.el9.x86_6 12 MB/s | 442 kB 00:00 2026-03-08T23:55:28.733 INFO:teuthology.orchestra.run.vm09.stdout:(74/136): python3-packaging-20.9-5.el9.noarch.r 2.5 MB/s | 77 kB 00:00 2026-03-08T23:55:28.767 INFO:teuthology.orchestra.run.vm09.stdout:(75/136): python3-protobuf-3.14.0-17.el9.noarch 7.7 MB/s | 267 kB 00:00 2026-03-08T23:55:28.803 INFO:teuthology.orchestra.run.vm09.stdout:(76/136): python3-pyasn1-0.4.8-7.el9.noarch.rpm 4.4 MB/s | 157 kB 00:00 2026-03-08T23:55:28.838 INFO:teuthology.orchestra.run.vm09.stdout:(77/136): python3-pyasn1-modules-0.4.8-7.el9.no 8.0 MB/s | 277 kB 00:00 2026-03-08T23:55:28.870 INFO:teuthology.orchestra.run.vm09.stdout:(78/136): python3-requests-oauthlib-1.3.0-12.el 1.6 MB/s | 54 kB 00:00 2026-03-08T23:55:28.910 INFO:teuthology.orchestra.run.vm09.stdout:(79/136): python3-numpy-1.23.5-2.el9.x86_64.rpm 24 MB/s | 6.1 MB 00:00 2026-03-08T23:55:28.942 INFO:teuthology.orchestra.run.vm09.stdout:(80/136): python3-toml-0.10.2-6.el9.noarch.rpm 1.3 MB/s | 42 kB 00:00 2026-03-08T23:55:28.977 INFO:teuthology.orchestra.run.vm09.stdout:(81/136): qatlib-25.08.0-2.el9.x86_64.rpm 6.9 MB/s | 240 kB 00:00 2026-03-08T23:55:29.009 INFO:teuthology.orchestra.run.vm09.stdout:(82/136): qatlib-service-25.08.0-2.el9.x86_64.r 1.1 MB/s | 37 kB 00:00 2026-03-08T23:55:29.042 INFO:teuthology.orchestra.run.vm09.stdout:(83/136): qatzip-libs-1.3.1-1.el9.x86_64.rpm 2.0 MB/s | 66 kB 00:00 2026-03-08T23:55:29.047 INFO:teuthology.orchestra.run.vm02.stdout:(134/136): librados2-19.2.3-678.ge911bdeb.el9.x 3.1 MB/s | 3.4 MB 00:01 2026-03-08T23:55:29.075 INFO:teuthology.orchestra.run.vm09.stdout:(84/136): socat-1.7.4.1-8.el9.x86_64.rpm 8.9 MB/s | 303 kB 00:00 2026-03-08T23:55:29.107 INFO:teuthology.orchestra.run.vm09.stdout:(85/136): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.0 MB/s | 64 kB 00:00 2026-03-08T23:55:29.181 INFO:teuthology.orchestra.run.vm02.stdout:(135/136): python3-babel-2.9.1-2.el9.noarch.rpm 2.0 MB/s | 6.0 MB 00:03 2026-03-08T23:55:29.222 INFO:teuthology.orchestra.run.vm09.stdout:(86/136): lua-devel-5.4.4-4.el9.x86_64.rpm 195 kB/s | 22 kB 00:00 2026-03-08T23:55:29.245 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-08T23:55:29.245 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-08T23:55:29.338 INFO:teuthology.orchestra.run.vm02.stdout:(136/136): librbd1-19.2.3-678.ge911bdeb.el9.x86 2.6 MB/s | 3.2 MB 00:01 2026-03-08T23:55:29.341 INFO:teuthology.orchestra.run.vm02.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:55:29.341 INFO:teuthology.orchestra.run.vm02.stdout:Total 14 MB/s | 210 MB 00:15 2026-03-08T23:55:29.371 INFO:teuthology.orchestra.run.vm09.stdout:(87/136): protobuf-compiler-3.14.0-17.el9.x86_6 5.7 MB/s | 862 kB 00:00 2026-03-08T23:55:29.392 INFO:teuthology.orchestra.run.vm09.stdout:(88/136): abseil-cpp-20211102.0-4.el9.x86_64.rp 26 MB/s | 551 kB 00:00 2026-03-08T23:55:29.400 INFO:teuthology.orchestra.run.vm09.stdout:(89/136): gperftools-libs-2.9.1-3.el9.x86_64.rp 36 MB/s | 308 kB 00:00 2026-03-08T23:55:29.403 INFO:teuthology.orchestra.run.vm09.stdout:(90/136): grpc-data-1.46.7-10.el9.noarch.rpm 8.2 MB/s | 19 kB 00:00 2026-03-08T23:55:29.489 INFO:teuthology.orchestra.run.vm09.stdout:(91/136): libarrow-9.0.0-15.el9.x86_64.rpm 52 MB/s | 4.4 MB 00:00 2026-03-08T23:55:29.545 INFO:teuthology.orchestra.run.vm09.stdout:(92/136): python3-scipy-1.9.3-2.el9.x86_64.rpm 29 MB/s | 19 MB 00:00 2026-03-08T23:55:29.546 INFO:teuthology.orchestra.run.vm09.stdout:(93/136): libarrow-doc-9.0.0-15.el9.noarch.rpm 434 kB/s | 25 kB 00:00 2026-03-08T23:55:29.548 INFO:teuthology.orchestra.run.vm09.stdout:(94/136): liboath-2.6.12-1.el9.x86_64.rpm 21 MB/s | 49 kB 00:00 2026-03-08T23:55:29.552 INFO:teuthology.orchestra.run.vm09.stdout:(95/136): luarocks-3.9.2-5.el9.noarch.rpm 37 MB/s | 151 kB 00:00 2026-03-08T23:55:29.553 INFO:teuthology.orchestra.run.vm09.stdout:(96/136): libunwind-1.6.2-1.el9.x86_64.rpm 9.9 MB/s | 67 kB 00:00 2026-03-08T23:55:29.564 INFO:teuthology.orchestra.run.vm09.stdout:(97/136): parquet-libs-9.0.0-15.el9.x86_64.rpm 73 MB/s | 838 kB 00:00 2026-03-08T23:55:29.566 INFO:teuthology.orchestra.run.vm09.stdout:(98/136): python3-autocommand-2.2.2-8.el9.noarc 13 MB/s | 29 kB 00:00 2026-03-08T23:55:29.569 INFO:teuthology.orchestra.run.vm09.stdout:(99/136): python3-backports-tarfile-1.2.0-1.el9 25 MB/s | 60 kB 00:00 2026-03-08T23:55:29.571 INFO:teuthology.orchestra.run.vm09.stdout:(100/136): python3-bcrypt-3.2.2-1.el9.x86_64.rp 18 MB/s | 43 kB 00:00 2026-03-08T23:55:29.573 INFO:teuthology.orchestra.run.vm09.stdout:(101/136): python3-cachetools-4.2.4-1.el9.noarc 15 MB/s | 32 kB 00:00 2026-03-08T23:55:29.576 INFO:teuthology.orchestra.run.vm09.stdout:(102/136): python3-asyncssh-2.13.2-5.el9.noarch 24 MB/s | 548 kB 00:00 2026-03-08T23:55:29.576 INFO:teuthology.orchestra.run.vm09.stdout:(103/136): python3-certifi-2023.05.07-4.el9.noa 5.4 MB/s | 14 kB 00:00 2026-03-08T23:55:29.579 INFO:teuthology.orchestra.run.vm09.stdout:(104/136): python3-cheroot-10.0.1-4.el9.noarch. 48 MB/s | 173 kB 00:00 2026-03-08T23:55:29.584 INFO:teuthology.orchestra.run.vm09.stdout:(105/136): python3-google-auth-2.45.0-1.el9.noa 52 MB/s | 254 kB 00:00 2026-03-08T23:55:29.594 INFO:teuthology.orchestra.run.vm09.stdout:(106/136): python3-cherrypy-18.6.1-2.el9.noarch 20 MB/s | 358 kB 00:00 2026-03-08T23:55:29.604 INFO:teuthology.orchestra.run.vm09.stdout:(107/136): python3-grpcio-tools-1.46.7-10.el9.x 14 MB/s | 144 kB 00:00 2026-03-08T23:55:29.607 INFO:teuthology.orchestra.run.vm09.stdout:(108/136): python3-jaraco-8.2.1-3.el9.noarch.rp 3.7 MB/s | 11 kB 00:00 2026-03-08T23:55:29.613 INFO:teuthology.orchestra.run.vm09.stdout:(109/136): python3-grpcio-1.46.7-10.el9.x86_64. 72 MB/s | 2.0 MB 00:00 2026-03-08T23:55:29.614 INFO:teuthology.orchestra.run.vm09.stdout:(110/136): python3-jaraco-classes-3.2.1-5.el9.n 2.4 MB/s | 18 kB 00:00 2026-03-08T23:55:29.616 INFO:teuthology.orchestra.run.vm09.stdout:(111/136): python3-jaraco-collections-3.0.0-8.e 8.9 MB/s | 23 kB 00:00 2026-03-08T23:55:29.617 INFO:teuthology.orchestra.run.vm09.stdout:(112/136): python3-jaraco-context-6.0.1-3.el9.n 6.9 MB/s | 20 kB 00:00 2026-03-08T23:55:29.618 INFO:teuthology.orchestra.run.vm09.stdout:(113/136): python3-jaraco-functools-3.5.0-2.el9 10 MB/s | 19 kB 00:00 2026-03-08T23:55:29.619 INFO:teuthology.orchestra.run.vm09.stdout:(114/136): python3-jaraco-text-4.0.0-2.el9.noar 12 MB/s | 26 kB 00:00 2026-03-08T23:55:29.622 INFO:teuthology.orchestra.run.vm09.stdout:(115/136): python3-logutils-0.3.5-21.el9.noarch 20 MB/s | 46 kB 00:00 2026-03-08T23:55:29.625 INFO:teuthology.orchestra.run.vm09.stdout:(116/136): python3-more-itertools-8.12.0-2.el9. 26 MB/s | 79 kB 00:00 2026-03-08T23:55:29.628 INFO:teuthology.orchestra.run.vm09.stdout:(117/136): python3-natsort-7.1.1-5.el9.noarch.r 18 MB/s | 58 kB 00:00 2026-03-08T23:55:29.635 INFO:teuthology.orchestra.run.vm09.stdout:(118/136): python3-pecan-1.4.2-3.el9.noarch.rpm 44 MB/s | 272 kB 00:00 2026-03-08T23:55:29.638 INFO:teuthology.orchestra.run.vm09.stdout:(119/136): python3-portend-3.1.0-2.el9.noarch.r 6.1 MB/s | 16 kB 00:00 2026-03-08T23:55:29.641 INFO:teuthology.orchestra.run.vm09.stdout:(120/136): python3-kubernetes-26.1.0-3.el9.noar 46 MB/s | 1.0 MB 00:00 2026-03-08T23:55:29.642 INFO:teuthology.orchestra.run.vm09.stdout:(121/136): python3-pyOpenSSL-21.0.0-1.el9.noarc 26 MB/s | 90 kB 00:00 2026-03-08T23:55:29.643 INFO:teuthology.orchestra.run.vm09.stdout:(122/136): python3-repoze-lru-0.7-16.el9.noarch 14 MB/s | 31 kB 00:00 2026-03-08T23:55:29.645 INFO:teuthology.orchestra.run.vm09.stdout:(123/136): python3-routes-2.5.1-5.el9.noarch.rp 51 MB/s | 188 kB 00:00 2026-03-08T23:55:29.646 INFO:teuthology.orchestra.run.vm09.stdout:(124/136): python3-rsa-4.9-2.el9.noarch.rpm 22 MB/s | 59 kB 00:00 2026-03-08T23:55:29.648 INFO:teuthology.orchestra.run.vm09.stdout:(125/136): python3-tempora-5.0.0-2.el9.noarch.r 16 MB/s | 36 kB 00:00 2026-03-08T23:55:29.650 INFO:teuthology.orchestra.run.vm09.stdout:(126/136): python3-typing-extensions-4.15.0-1.e 26 MB/s | 86 kB 00:00 2026-03-08T23:55:29.652 INFO:teuthology.orchestra.run.vm09.stdout:(127/136): python3-webob-1.8.8-2.el9.noarch.rpm 49 MB/s | 230 kB 00:00 2026-03-08T23:55:29.653 INFO:teuthology.orchestra.run.vm09.stdout:(128/136): python3-websocket-client-1.2.3-2.el9 25 MB/s | 90 kB 00:00 2026-03-08T23:55:29.659 INFO:teuthology.orchestra.run.vm09.stdout:(129/136): python3-werkzeug-2.0.3-3.el9.1.noarc 67 MB/s | 427 kB 00:00 2026-03-08T23:55:29.660 INFO:teuthology.orchestra.run.vm09.stdout:(130/136): python3-xmltodict-0.12.0-15.el9.noar 3.5 MB/s | 22 kB 00:00 2026-03-08T23:55:29.661 INFO:teuthology.orchestra.run.vm09.stdout:(131/136): python3-zc-lockfile-2.0-10.el9.noarc 9.4 MB/s | 20 kB 00:00 2026-03-08T23:55:29.664 INFO:teuthology.orchestra.run.vm09.stdout:(132/136): re2-20211101-20.el9.x86_64.rpm 45 MB/s | 191 kB 00:00 2026-03-08T23:55:29.681 INFO:teuthology.orchestra.run.vm09.stdout:(133/136): thrift-0.15.0-4.el9.x86_64.rpm 83 MB/s | 1.6 MB 00:00 2026-03-08T23:55:29.970 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-08T23:55:30.021 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-08T23:55:30.021 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-08T23:55:30.184 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-08T23:55:30.199 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/138 2026-03-08T23:55:30.213 INFO:teuthology.orchestra.run.vm05.stdout: Installing : thrift-0.15.0-4.el9.x86_64 2/138 2026-03-08T23:55:30.389 INFO:teuthology.orchestra.run.vm05.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 3/138 2026-03-08T23:55:30.391 INFO:teuthology.orchestra.run.vm05.stdout: Upgrading : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:30.456 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:30.457 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 5/138 2026-03-08T23:55:30.492 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 5/138 2026-03-08T23:55:30.503 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 6/138 2026-03-08T23:55:30.512 INFO:teuthology.orchestra.run.vm05.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/138 2026-03-08T23:55:30.528 INFO:teuthology.orchestra.run.vm05.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/138 2026-03-08T23:55:30.544 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 9/138 2026-03-08T23:55:30.554 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 10/138 2026-03-08T23:55:30.555 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:30.600 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:30.602 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 12/138 2026-03-08T23:55:30.620 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 12/138 2026-03-08T23:55:30.658 INFO:teuthology.orchestra.run.vm05.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/138 2026-03-08T23:55:30.699 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/138 2026-03-08T23:55:30.777 INFO:teuthology.orchestra.run.vm09.stdout:(134/136): ceph-test-19.2.3-678.ge911bdeb.el9.x 5.6 MB/s | 50 MB 00:08 2026-03-08T23:55:30.778 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 15/138 2026-03-08T23:55:30.789 INFO:teuthology.orchestra.run.vm09.stdout:(135/136): librados2-19.2.3-678.ge911bdeb.el9.x 3.1 MB/s | 3.4 MB 00:01 2026-03-08T23:55:30.807 INFO:teuthology.orchestra.run.vm05.stdout: Installing : liboath-2.6.12-1.el9.x86_64 16/138 2026-03-08T23:55:30.825 INFO:teuthology.orchestra.run.vm09.stdout:(136/136): librbd1-19.2.3-678.ge911bdeb.el9.x86 2.8 MB/s | 3.2 MB 00:01 2026-03-08T23:55:30.826 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-pyasn1-0.4.8-7.el9.noarch 17/138 2026-03-08T23:55:30.828 INFO:teuthology.orchestra.run.vm09.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:55:30.828 INFO:teuthology.orchestra.run.vm09.stdout:Total 14 MB/s | 210 MB 00:15 2026-03-08T23:55:30.835 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/138 2026-03-08T23:55:30.846 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/138 2026-03-08T23:55:30.852 INFO:teuthology.orchestra.run.vm05.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 20/138 2026-03-08T23:55:30.857 INFO:teuthology.orchestra.run.vm05.stdout: Installing : lua-5.4.4-4.el9.x86_64 21/138 2026-03-08T23:55:30.864 INFO:teuthology.orchestra.run.vm05.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 22/138 2026-03-08T23:55:30.880 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-08T23:55:30.880 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-08T23:55:30.895 INFO:teuthology.orchestra.run.vm05.stdout: Installing : unzip-6.0-59.el9.x86_64 23/138 2026-03-08T23:55:30.912 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 24/138 2026-03-08T23:55:30.917 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 25/138 2026-03-08T23:55:30.925 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 26/138 2026-03-08T23:55:30.927 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 27/138 2026-03-08T23:55:30.960 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 28/138 2026-03-08T23:55:30.968 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 29/138 2026-03-08T23:55:30.979 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9 30/138 2026-03-08T23:55:30.995 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 31/138 2026-03-08T23:55:31.004 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 32/138 2026-03-08T23:55:31.037 INFO:teuthology.orchestra.run.vm05.stdout: Installing : zip-3.0-35.el9.x86_64 33/138 2026-03-08T23:55:31.043 INFO:teuthology.orchestra.run.vm05.stdout: Installing : luarocks-3.9.2-5.el9.noarch 34/138 2026-03-08T23:55:31.052 INFO:teuthology.orchestra.run.vm05.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 35/138 2026-03-08T23:55:31.086 INFO:teuthology.orchestra.run.vm05.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 36/138 2026-03-08T23:55:31.149 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 37/138 2026-03-08T23:55:31.172 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-pyasn1-modules-0.4.8-7.el9.noarch 38/138 2026-03-08T23:55:31.180 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-rsa-4.9-2.el9.noarch 39/138 2026-03-08T23:55:31.189 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 40/138 2026-03-08T23:55:31.197 INFO:teuthology.orchestra.run.vm05.stdout: Installing : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 41/138 2026-03-08T23:55:31.203 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 42/138 2026-03-08T23:55:31.224 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 43/138 2026-03-08T23:55:31.250 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 44/138 2026-03-08T23:55:31.257 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 45/138 2026-03-08T23:55:31.263 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 46/138 2026-03-08T23:55:31.279 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 47/138 2026-03-08T23:55:31.293 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 48/138 2026-03-08T23:55:31.304 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 49/138 2026-03-08T23:55:31.372 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 50/138 2026-03-08T23:55:31.380 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 51/138 2026-03-08T23:55:31.390 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 52/138 2026-03-08T23:55:31.414 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-08T23:55:31.438 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 53/138 2026-03-08T23:55:31.464 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-08T23:55:31.465 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-08T23:55:31.827 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-08T23:55:31.828 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 54/138 2026-03-08T23:55:31.851 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/138 2026-03-08T23:55:31.853 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 55/138 2026-03-08T23:55:31.862 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 56/138 2026-03-08T23:55:31.867 INFO:teuthology.orchestra.run.vm02.stdout: Installing : thrift-0.15.0-4.el9.x86_64 2/138 2026-03-08T23:55:31.877 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 57/138 2026-03-08T23:55:31.882 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 58/138 2026-03-08T23:55:31.892 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 59/138 2026-03-08T23:55:31.903 INFO:teuthology.orchestra.run.vm05.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 60/138 2026-03-08T23:55:31.910 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 61/138 2026-03-08T23:55:31.950 INFO:teuthology.orchestra.run.vm05.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 62/138 2026-03-08T23:55:32.019 INFO:teuthology.orchestra.run.vm05.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 63/138 2026-03-08T23:55:32.055 INFO:teuthology.orchestra.run.vm02.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 3/138 2026-03-08T23:55:32.104 INFO:teuthology.orchestra.run.vm02.stdout: Upgrading : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:32.120 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 64/138 2026-03-08T23:55:32.135 INFO:teuthology.orchestra.run.vm05.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 65/138 2026-03-08T23:55:32.141 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 66/138 2026-03-08T23:55:32.150 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 67/138 2026-03-08T23:55:32.160 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 68/138 2026-03-08T23:55:32.174 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 69/138 2026-03-08T23:55:32.175 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:32.178 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 5/138 2026-03-08T23:55:32.186 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 70/138 2026-03-08T23:55:32.214 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 5/138 2026-03-08T23:55:32.226 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 71/138 2026-03-08T23:55:32.228 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 6/138 2026-03-08T23:55:32.238 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/138 2026-03-08T23:55:32.241 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/138 2026-03-08T23:55:32.251 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 72/138 2026-03-08T23:55:32.252 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 9/138 2026-03-08T23:55:32.266 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 10/138 2026-03-08T23:55:32.273 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:32.300 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 73/138 2026-03-08T23:55:32.316 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:32.327 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-08T23:55:32.327 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-08T23:55:32.328 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 12/138 2026-03-08T23:55:32.392 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 12/138 2026-03-08T23:55:32.429 INFO:teuthology.orchestra.run.vm02.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/138 2026-03-08T23:55:32.473 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/138 2026-03-08T23:55:32.481 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 15/138 2026-03-08T23:55:32.521 INFO:teuthology.orchestra.run.vm02.stdout: Installing : liboath-2.6.12-1.el9.x86_64 16/138 2026-03-08T23:55:32.539 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyasn1-0.4.8-7.el9.noarch 17/138 2026-03-08T23:55:32.549 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/138 2026-03-08T23:55:32.559 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/138 2026-03-08T23:55:32.571 INFO:teuthology.orchestra.run.vm02.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 20/138 2026-03-08T23:55:32.575 INFO:teuthology.orchestra.run.vm02.stdout: Installing : lua-5.4.4-4.el9.x86_64 21/138 2026-03-08T23:55:32.585 INFO:teuthology.orchestra.run.vm02.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 22/138 2026-03-08T23:55:32.617 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 74/138 2026-03-08T23:55:32.619 INFO:teuthology.orchestra.run.vm02.stdout: Installing : unzip-6.0-59.el9.x86_64 23/138 2026-03-08T23:55:32.643 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 24/138 2026-03-08T23:55:32.648 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 25/138 2026-03-08T23:55:32.661 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 75/138 2026-03-08T23:55:32.661 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 26/138 2026-03-08T23:55:32.666 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 27/138 2026-03-08T23:55:32.671 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 76/138 2026-03-08T23:55:32.700 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 28/138 2026-03-08T23:55:32.715 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 29/138 2026-03-08T23:55:32.729 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9 30/138 2026-03-08T23:55:32.738 INFO:teuthology.orchestra.run.vm05.stdout: Installing : openblas-0.3.29-1.el9.x86_64 77/138 2026-03-08T23:55:32.742 INFO:teuthology.orchestra.run.vm05.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 78/138 2026-03-08T23:55:32.751 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 31/138 2026-03-08T23:55:32.766 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 32/138 2026-03-08T23:55:32.774 INFO:teuthology.orchestra.run.vm05.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 79/138 2026-03-08T23:55:32.806 INFO:teuthology.orchestra.run.vm02.stdout: Installing : zip-3.0-35.el9.x86_64 33/138 2026-03-08T23:55:32.825 INFO:teuthology.orchestra.run.vm02.stdout: Installing : luarocks-3.9.2-5.el9.noarch 34/138 2026-03-08T23:55:32.835 INFO:teuthology.orchestra.run.vm02.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 35/138 2026-03-08T23:55:32.871 INFO:teuthology.orchestra.run.vm02.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 36/138 2026-03-08T23:55:32.934 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 37/138 2026-03-08T23:55:32.954 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyasn1-modules-0.4.8-7.el9.noarch 38/138 2026-03-08T23:55:32.962 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rsa-4.9-2.el9.noarch 39/138 2026-03-08T23:55:32.972 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 40/138 2026-03-08T23:55:32.979 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 41/138 2026-03-08T23:55:32.983 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 42/138 2026-03-08T23:55:33.002 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 43/138 2026-03-08T23:55:33.036 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 44/138 2026-03-08T23:55:33.063 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 45/138 2026-03-08T23:55:33.076 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 46/138 2026-03-08T23:55:33.105 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 47/138 2026-03-08T23:55:33.122 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 48/138 2026-03-08T23:55:33.134 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 49/138 2026-03-08T23:55:33.192 INFO:teuthology.orchestra.run.vm05.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 80/138 2026-03-08T23:55:33.205 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 50/138 2026-03-08T23:55:33.214 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 51/138 2026-03-08T23:55:33.224 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 52/138 2026-03-08T23:55:33.279 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 53/138 2026-03-08T23:55:33.284 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 81/138 2026-03-08T23:55:33.437 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-08T23:55:33.454 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/138 2026-03-08T23:55:33.469 INFO:teuthology.orchestra.run.vm09.stdout: Installing : thrift-0.15.0-4.el9.x86_64 2/138 2026-03-08T23:55:33.651 INFO:teuthology.orchestra.run.vm09.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 3/138 2026-03-08T23:55:33.653 INFO:teuthology.orchestra.run.vm09.stdout: Upgrading : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:33.684 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 54/138 2026-03-08T23:55:33.702 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 55/138 2026-03-08T23:55:33.709 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 56/138 2026-03-08T23:55:33.717 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 57/138 2026-03-08T23:55:33.718 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:33.737 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 5/138 2026-03-08T23:55:33.743 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 58/138 2026-03-08T23:55:33.752 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 59/138 2026-03-08T23:55:33.758 INFO:teuthology.orchestra.run.vm02.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 60/138 2026-03-08T23:55:33.762 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 61/138 2026-03-08T23:55:33.768 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 5/138 2026-03-08T23:55:33.777 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 6/138 2026-03-08T23:55:33.782 INFO:teuthology.orchestra.run.vm09.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/138 2026-03-08T23:55:33.784 INFO:teuthology.orchestra.run.vm09.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/138 2026-03-08T23:55:33.789 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 9/138 2026-03-08T23:55:33.798 INFO:teuthology.orchestra.run.vm02.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 62/138 2026-03-08T23:55:33.800 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 10/138 2026-03-08T23:55:33.801 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:33.843 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:33.845 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 12/138 2026-03-08T23:55:33.861 INFO:teuthology.orchestra.run.vm02.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 63/138 2026-03-08T23:55:33.867 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 12/138 2026-03-08T23:55:33.877 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 64/138 2026-03-08T23:55:33.886 INFO:teuthology.orchestra.run.vm02.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 65/138 2026-03-08T23:55:33.893 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 66/138 2026-03-08T23:55:33.902 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 67/138 2026-03-08T23:55:33.903 INFO:teuthology.orchestra.run.vm09.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/138 2026-03-08T23:55:33.909 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 68/138 2026-03-08T23:55:33.920 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 69/138 2026-03-08T23:55:33.927 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 70/138 2026-03-08T23:55:33.942 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/138 2026-03-08T23:55:33.947 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-werkzeug-2.0.3-3.el9.1.noarch 15/138 2026-03-08T23:55:33.964 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 71/138 2026-03-08T23:55:33.974 INFO:teuthology.orchestra.run.vm09.stdout: Installing : liboath-2.6.12-1.el9.x86_64 16/138 2026-03-08T23:55:33.979 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 72/138 2026-03-08T23:55:33.990 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-pyasn1-0.4.8-7.el9.noarch 17/138 2026-03-08T23:55:33.998 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-packaging-20.9-5.el9.noarch 18/138 2026-03-08T23:55:34.010 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 19/138 2026-03-08T23:55:34.017 INFO:teuthology.orchestra.run.vm09.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 20/138 2026-03-08T23:55:34.022 INFO:teuthology.orchestra.run.vm09.stdout: Installing : lua-5.4.4-4.el9.x86_64 21/138 2026-03-08T23:55:34.028 INFO:teuthology.orchestra.run.vm09.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 22/138 2026-03-08T23:55:34.030 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 73/138 2026-03-08T23:55:34.058 INFO:teuthology.orchestra.run.vm09.stdout: Installing : unzip-6.0-59.el9.x86_64 23/138 2026-03-08T23:55:34.075 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 24/138 2026-03-08T23:55:34.081 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 25/138 2026-03-08T23:55:34.089 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 26/138 2026-03-08T23:55:34.094 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 27/138 2026-03-08T23:55:34.133 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 28/138 2026-03-08T23:55:34.143 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 29/138 2026-03-08T23:55:34.147 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 82/138 2026-03-08T23:55:34.153 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9 30/138 2026-03-08T23:55:34.169 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 31/138 2026-03-08T23:55:34.180 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 32/138 2026-03-08T23:55:34.182 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 83/138 2026-03-08T23:55:34.192 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 84/138 2026-03-08T23:55:34.199 INFO:teuthology.orchestra.run.vm05.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 85/138 2026-03-08T23:55:34.211 INFO:teuthology.orchestra.run.vm09.stdout: Installing : zip-3.0-35.el9.x86_64 33/138 2026-03-08T23:55:34.217 INFO:teuthology.orchestra.run.vm09.stdout: Installing : luarocks-3.9.2-5.el9.noarch 34/138 2026-03-08T23:55:34.227 INFO:teuthology.orchestra.run.vm09.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 35/138 2026-03-08T23:55:34.258 INFO:teuthology.orchestra.run.vm09.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 36/138 2026-03-08T23:55:34.322 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-mako-1.1.4-6.el9.noarch 37/138 2026-03-08T23:55:34.326 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 74/138 2026-03-08T23:55:34.355 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-pyasn1-modules-0.4.8-7.el9.noarch 38/138 2026-03-08T23:55:34.364 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-rsa-4.9-2.el9.noarch 39/138 2026-03-08T23:55:34.365 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 75/138 2026-03-08T23:55:34.373 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 76/138 2026-03-08T23:55:34.374 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 40/138 2026-03-08T23:55:34.377 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 86/138 2026-03-08T23:55:34.380 INFO:teuthology.orchestra.run.vm05.stdout: Upgrading : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 87/138 2026-03-08T23:55:34.381 INFO:teuthology.orchestra.run.vm09.stdout: Installing : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 41/138 2026-03-08T23:55:34.387 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 42/138 2026-03-08T23:55:34.406 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 43/138 2026-03-08T23:55:34.424 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 87/138 2026-03-08T23:55:34.430 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 88/138 2026-03-08T23:55:34.435 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 44/138 2026-03-08T23:55:34.439 INFO:teuthology.orchestra.run.vm05.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 89/138 2026-03-08T23:55:34.444 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-webob-1.8.8-2.el9.noarch 45/138 2026-03-08T23:55:34.445 INFO:teuthology.orchestra.run.vm02.stdout: Installing : openblas-0.3.29-1.el9.x86_64 77/138 2026-03-08T23:55:34.449 INFO:teuthology.orchestra.run.vm02.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 78/138 2026-03-08T23:55:34.453 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 46/138 2026-03-08T23:55:34.468 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 47/138 2026-03-08T23:55:34.482 INFO:teuthology.orchestra.run.vm02.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 79/138 2026-03-08T23:55:34.483 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 48/138 2026-03-08T23:55:34.498 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 49/138 2026-03-08T23:55:34.564 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-logutils-0.3.5-21.el9.noarch 50/138 2026-03-08T23:55:34.574 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-pecan-1.4.2-3.el9.noarch 51/138 2026-03-08T23:55:34.585 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 52/138 2026-03-08T23:55:34.651 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 53/138 2026-03-08T23:55:34.746 INFO:teuthology.orchestra.run.vm05.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 90/138 2026-03-08T23:55:34.753 INFO:teuthology.orchestra.run.vm05.stdout: Installing : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 91/138 2026-03-08T23:55:34.782 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 91/138 2026-03-08T23:55:34.784 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 92/138 2026-03-08T23:55:34.937 INFO:teuthology.orchestra.run.vm02.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 80/138 2026-03-08T23:55:35.036 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 81/138 2026-03-08T23:55:35.063 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 54/138 2026-03-08T23:55:35.082 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 55/138 2026-03-08T23:55:35.090 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 56/138 2026-03-08T23:55:35.101 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 57/138 2026-03-08T23:55:35.107 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 58/138 2026-03-08T23:55:35.115 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 59/138 2026-03-08T23:55:35.118 INFO:teuthology.orchestra.run.vm09.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 60/138 2026-03-08T23:55:35.121 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 61/138 2026-03-08T23:55:35.155 INFO:teuthology.orchestra.run.vm09.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 62/138 2026-03-08T23:55:35.235 INFO:teuthology.orchestra.run.vm09.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 63/138 2026-03-08T23:55:35.257 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 64/138 2026-03-08T23:55:35.267 INFO:teuthology.orchestra.run.vm09.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 65/138 2026-03-08T23:55:35.273 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 66/138 2026-03-08T23:55:35.284 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 67/138 2026-03-08T23:55:35.290 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 68/138 2026-03-08T23:55:35.301 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 69/138 2026-03-08T23:55:35.308 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 70/138 2026-03-08T23:55:35.343 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 71/138 2026-03-08T23:55:35.357 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 72/138 2026-03-08T23:55:35.405 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 73/138 2026-03-08T23:55:35.698 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 74/138 2026-03-08T23:55:35.738 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 75/138 2026-03-08T23:55:35.745 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 76/138 2026-03-08T23:55:35.814 INFO:teuthology.orchestra.run.vm09.stdout: Installing : openblas-0.3.29-1.el9.x86_64 77/138 2026-03-08T23:55:35.818 INFO:teuthology.orchestra.run.vm09.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 78/138 2026-03-08T23:55:35.852 INFO:teuthology.orchestra.run.vm09.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 79/138 2026-03-08T23:55:35.939 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 82/138 2026-03-08T23:55:35.971 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 83/138 2026-03-08T23:55:35.981 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 84/138 2026-03-08T23:55:35.987 INFO:teuthology.orchestra.run.vm02.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 85/138 2026-03-08T23:55:35.999 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:36.070 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:36.095 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:36.116 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-ply-3.11-14.el9.noarch 94/138 2026-03-08T23:55:36.137 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 95/138 2026-03-08T23:55:36.159 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 86/138 2026-03-08T23:55:36.162 INFO:teuthology.orchestra.run.vm02.stdout: Upgrading : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 87/138 2026-03-08T23:55:36.199 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 87/138 2026-03-08T23:55:36.204 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 88/138 2026-03-08T23:55:36.212 INFO:teuthology.orchestra.run.vm02.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 89/138 2026-03-08T23:55:36.238 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 96/138 2026-03-08T23:55:36.253 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 97/138 2026-03-08T23:55:36.271 INFO:teuthology.orchestra.run.vm09.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 80/138 2026-03-08T23:55:36.291 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 98/138 2026-03-08T23:55:36.336 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 99/138 2026-03-08T23:55:36.368 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 81/138 2026-03-08T23:55:36.406 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 100/138 2026-03-08T23:55:36.420 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 101/138 2026-03-08T23:55:36.430 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 102/138 2026-03-08T23:55:36.439 INFO:teuthology.orchestra.run.vm05.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 103/138 2026-03-08T23:55:36.444 INFO:teuthology.orchestra.run.vm05.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 104/138 2026-03-08T23:55:36.446 INFO:teuthology.orchestra.run.vm05.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 105/138 2026-03-08T23:55:36.469 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 105/138 2026-03-08T23:55:36.504 INFO:teuthology.orchestra.run.vm02.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 90/138 2026-03-08T23:55:36.508 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 91/138 2026-03-08T23:55:36.535 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 91/138 2026-03-08T23:55:36.540 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 92/138 2026-03-08T23:55:36.801 INFO:teuthology.orchestra.run.vm05.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 106/138 2026-03-08T23:55:36.807 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 107/138 2026-03-08T23:55:36.853 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 107/138 2026-03-08T23:55:36.853 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-03-08T23:55:36.853 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-03-08T23:55:36.853 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:36.858 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 108/138 2026-03-08T23:55:37.260 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 82/138 2026-03-08T23:55:37.294 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 83/138 2026-03-08T23:55:37.301 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 84/138 2026-03-08T23:55:37.306 INFO:teuthology.orchestra.run.vm09.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 85/138 2026-03-08T23:55:37.478 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 86/138 2026-03-08T23:55:37.482 INFO:teuthology.orchestra.run.vm09.stdout: Upgrading : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 87/138 2026-03-08T23:55:37.525 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 87/138 2026-03-08T23:55:37.530 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 88/138 2026-03-08T23:55:37.541 INFO:teuthology.orchestra.run.vm09.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 89/138 2026-03-08T23:55:37.769 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:37.811 INFO:teuthology.orchestra.run.vm09.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 90/138 2026-03-08T23:55:37.841 INFO:teuthology.orchestra.run.vm09.stdout: Installing : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 91/138 2026-03-08T23:55:37.842 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:37.865 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 91/138 2026-03-08T23:55:37.868 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 92/138 2026-03-08T23:55:37.870 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:37.896 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-ply-3.11-14.el9.noarch 94/138 2026-03-08T23:55:37.921 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 95/138 2026-03-08T23:55:38.021 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 96/138 2026-03-08T23:55:38.037 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 97/138 2026-03-08T23:55:38.069 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 98/138 2026-03-08T23:55:38.112 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 99/138 2026-03-08T23:55:38.187 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 100/138 2026-03-08T23:55:38.199 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 101/138 2026-03-08T23:55:38.206 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 102/138 2026-03-08T23:55:38.213 INFO:teuthology.orchestra.run.vm02.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 103/138 2026-03-08T23:55:38.218 INFO:teuthology.orchestra.run.vm02.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 104/138 2026-03-08T23:55:38.220 INFO:teuthology.orchestra.run.vm02.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 105/138 2026-03-08T23:55:38.245 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 105/138 2026-03-08T23:55:38.623 INFO:teuthology.orchestra.run.vm02.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 106/138 2026-03-08T23:55:38.629 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 107/138 2026-03-08T23:55:38.676 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 107/138 2026-03-08T23:55:38.676 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-03-08T23:55:38.676 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-03-08T23:55:38.676 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:38.696 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 108/138 2026-03-08T23:55:39.152 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:39.271 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:39.300 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 93/138 2026-03-08T23:55:39.318 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-ply-3.11-14.el9.noarch 94/138 2026-03-08T23:55:39.338 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 95/138 2026-03-08T23:55:39.438 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 96/138 2026-03-08T23:55:39.452 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 97/138 2026-03-08T23:55:39.482 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 98/138 2026-03-08T23:55:39.523 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 99/138 2026-03-08T23:55:39.594 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 100/138 2026-03-08T23:55:39.606 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 101/138 2026-03-08T23:55:39.614 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 102/138 2026-03-08T23:55:39.622 INFO:teuthology.orchestra.run.vm09.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 103/138 2026-03-08T23:55:39.626 INFO:teuthology.orchestra.run.vm09.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 104/138 2026-03-08T23:55:39.628 INFO:teuthology.orchestra.run.vm09.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 105/138 2026-03-08T23:55:39.650 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 105/138 2026-03-08T23:55:39.990 INFO:teuthology.orchestra.run.vm09.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 106/138 2026-03-08T23:55:39.995 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 107/138 2026-03-08T23:55:40.051 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 107/138 2026-03-08T23:55:40.051 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-03-08T23:55:40.051 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-03-08T23:55:40.051 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:40.057 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 108/138 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 108/138 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /sys 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /proc 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /mnt 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /var/tmp 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /home 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /root 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /tmp 2026-03-08T23:55:43.985 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:44.117 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 109/138 2026-03-08T23:55:44.149 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 109/138 2026-03-08T23:55:44.149 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:44.149 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-08T23:55:44.149 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-08T23:55:44.149 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-08T23:55:44.149 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:44.521 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 110/138 2026-03-08T23:55:44.546 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 110/138 2026-03-08T23:55:44.546 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:44.546 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-08T23:55:44.546 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-08T23:55:44.546 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-08T23:55:44.546 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:44.654 INFO:teuthology.orchestra.run.vm05.stdout: Installing : mailcap-2.1.49-5.el9.noarch 111/138 2026-03-08T23:55:44.717 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 112/138 2026-03-08T23:55:44.884 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:44.885 INFO:teuthology.orchestra.run.vm05.stdout:Creating group 'qat' with GID 994. 2026-03-08T23:55:44.885 INFO:teuthology.orchestra.run.vm05.stdout:Creating group 'libstoragemgmt' with GID 993. 2026-03-08T23:55:44.885 INFO:teuthology.orchestra.run.vm05.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 993 and GID 993. 2026-03-08T23:55:44.885 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:45.081 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:45.151 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:45.151 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-03-08T23:55:45.151 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:45.340 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 114/138 2026-03-08T23:55:45.421 INFO:teuthology.orchestra.run.vm05.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 115/138 2026-03-08T23:55:45.425 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 116/138 2026-03-08T23:55:45.444 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 116/138 2026-03-08T23:55:45.444 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:45.444 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-08T23:55:45.444 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 108/138 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /sys 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /proc 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /mnt 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /var/tmp 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /home 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /root 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /tmp 2026-03-08T23:55:45.896 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:46.200 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 109/138 2026-03-08T23:55:46.227 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 109/138 2026-03-08T23:55:46.253 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:46.253 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-08T23:55:46.253 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-08T23:55:46.253 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-08T23:55:46.253 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:46.357 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 117/138 2026-03-08T23:55:46.385 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 117/138 2026-03-08T23:55:46.396 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:46.397 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-08T23:55:46.397 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-08T23:55:46.397 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-08T23:55:46.397 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:46.692 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 110/138 2026-03-08T23:55:46.718 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 110/138 2026-03-08T23:55:46.718 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:46.718 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-08T23:55:46.718 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-08T23:55:46.718 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-08T23:55:46.718 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:46.730 INFO:teuthology.orchestra.run.vm02.stdout: Installing : mailcap-2.1.49-5.el9.noarch 111/138 2026-03-08T23:55:46.733 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 112/138 2026-03-08T23:55:46.755 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:46.755 INFO:teuthology.orchestra.run.vm02.stdout:Creating group 'qat' with GID 994. 2026-03-08T23:55:46.755 INFO:teuthology.orchestra.run.vm02.stdout:Creating group 'libstoragemgmt' with GID 993. 2026-03-08T23:55:46.755 INFO:teuthology.orchestra.run.vm02.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 993 and GID 993. 2026-03-08T23:55:46.755 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:46.762 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 118/138 2026-03-08T23:55:46.766 INFO:teuthology.orchestra.run.vm05.stdout: Installing : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 118/138 2026-03-08T23:55:46.767 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:46.773 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 119/138 2026-03-08T23:55:46.794 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:46.794 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-03-08T23:55:46.794 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:46.800 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 120/138 2026-03-08T23:55:46.803 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 121/138 2026-03-08T23:55:46.840 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 114/138 2026-03-08T23:55:46.928 INFO:teuthology.orchestra.run.vm02.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 115/138 2026-03-08T23:55:46.937 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 116/138 2026-03-08T23:55:46.955 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 116/138 2026-03-08T23:55:46.955 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:46.955 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-08T23:55:46.955 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 108/138 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /sys 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /proc 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /mnt 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /var/tmp 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /home 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /root 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /tmp 2026-03-08T23:55:47.300 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:47.371 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 121/138 2026-03-08T23:55:47.377 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 122/138 2026-03-08T23:55:47.434 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 109/138 2026-03-08T23:55:47.465 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 109/138 2026-03-08T23:55:47.465 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:47.465 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-08T23:55:47.465 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-08T23:55:47.465 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-08T23:55:47.465 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:47.717 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 110/138 2026-03-08T23:55:47.744 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 110/138 2026-03-08T23:55:47.744 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:47.744 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-08T23:55:47.744 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-08T23:55:47.744 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-08T23:55:47.744 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:47.763 INFO:teuthology.orchestra.run.vm09.stdout: Installing : mailcap-2.1.49-5.el9.noarch 111/138 2026-03-08T23:55:47.767 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 112/138 2026-03-08T23:55:47.787 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:47.787 INFO:teuthology.orchestra.run.vm09.stdout:Creating group 'qat' with GID 994. 2026-03-08T23:55:47.787 INFO:teuthology.orchestra.run.vm09.stdout:Creating group 'libstoragemgmt' with GID 993. 2026-03-08T23:55:47.787 INFO:teuthology.orchestra.run.vm09.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 993 and GID 993. 2026-03-08T23:55:47.787 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:47.799 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 117/138 2026-03-08T23:55:47.800 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:47.825 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 117/138 2026-03-08T23:55:47.825 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:47.825 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-08T23:55:47.825 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-08T23:55:47.825 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-08T23:55:47.825 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:47.826 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 113/138 2026-03-08T23:55:47.826 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-03-08T23:55:47.826 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:47.871 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 114/138 2026-03-08T23:55:47.882 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 118/138 2026-03-08T23:55:47.885 INFO:teuthology.orchestra.run.vm02.stdout: Installing : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 118/138 2026-03-08T23:55:47.891 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 119/138 2026-03-08T23:55:47.916 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 120/138 2026-03-08T23:55:47.919 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 121/138 2026-03-08T23:55:47.950 INFO:teuthology.orchestra.run.vm09.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 115/138 2026-03-08T23:55:47.952 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 122/138 2026-03-08T23:55:47.955 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 123/138 2026-03-08T23:55:47.955 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 116/138 2026-03-08T23:55:47.971 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 116/138 2026-03-08T23:55:47.971 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:47.971 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-08T23:55:47.971 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:48.020 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 123/138 2026-03-08T23:55:48.079 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 124/138 2026-03-08T23:55:48.081 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 125/138 2026-03-08T23:55:48.107 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 125/138 2026-03-08T23:55:48.107 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:48.107 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-08T23:55:48.107 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-08T23:55:48.107 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-08T23:55:48.107 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:48.122 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 126/138 2026-03-08T23:55:48.135 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 126/138 2026-03-08T23:55:48.481 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 121/138 2026-03-08T23:55:48.487 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 122/138 2026-03-08T23:55:48.665 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 127/138 2026-03-08T23:55:48.669 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 128/138 2026-03-08T23:55:48.694 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 128/138 2026-03-08T23:55:48.694 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:48.694 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-08T23:55:48.694 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-08T23:55:48.694 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-08T23:55:48.694 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:48.705 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 129/138 2026-03-08T23:55:48.732 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 129/138 2026-03-08T23:55:48.732 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:48.732 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-08T23:55:48.732 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:48.804 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 117/138 2026-03-08T23:55:48.829 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 117/138 2026-03-08T23:55:48.829 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:48.829 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-08T23:55:48.829 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-08T23:55:48.829 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-08T23:55:48.829 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:48.890 INFO:teuthology.orchestra.run.vm05.stdout: Installing : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 130/138 2026-03-08T23:55:48.893 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 118/138 2026-03-08T23:55:48.897 INFO:teuthology.orchestra.run.vm09.stdout: Installing : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 118/138 2026-03-08T23:55:48.903 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 119/138 2026-03-08T23:55:48.914 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 130/138 2026-03-08T23:55:48.914 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:48.914 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-08T23:55:48.914 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-08T23:55:48.914 INFO:teuthology.orchestra.run.vm05.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-08T23:55:48.914 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:48.927 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 120/138 2026-03-08T23:55:48.930 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 121/138 2026-03-08T23:55:49.042 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 122/138 2026-03-08T23:55:49.045 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 123/138 2026-03-08T23:55:49.109 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 123/138 2026-03-08T23:55:49.169 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 124/138 2026-03-08T23:55:49.172 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 125/138 2026-03-08T23:55:49.197 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 125/138 2026-03-08T23:55:49.197 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:49.197 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-08T23:55:49.198 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-08T23:55:49.198 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-08T23:55:49.198 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:49.213 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 126/138 2026-03-08T23:55:49.230 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 126/138 2026-03-08T23:55:49.490 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 121/138 2026-03-08T23:55:49.496 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 122/138 2026-03-08T23:55:49.768 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 127/138 2026-03-08T23:55:49.773 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 128/138 2026-03-08T23:55:49.800 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 128/138 2026-03-08T23:55:49.800 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:49.800 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-08T23:55:49.800 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-08T23:55:49.800 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-08T23:55:49.800 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:49.812 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 129/138 2026-03-08T23:55:49.839 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 129/138 2026-03-08T23:55:49.839 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:49.839 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-08T23:55:49.839 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:50.001 INFO:teuthology.orchestra.run.vm02.stdout: Installing : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 130/138 2026-03-08T23:55:50.025 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 130/138 2026-03-08T23:55:50.025 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:50.025 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-08T23:55:50.025 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-08T23:55:50.025 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-08T23:55:50.025 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:50.055 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 122/138 2026-03-08T23:55:50.058 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 123/138 2026-03-08T23:55:50.124 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 123/138 2026-03-08T23:55:50.185 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 124/138 2026-03-08T23:55:50.188 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 125/138 2026-03-08T23:55:50.214 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 125/138 2026-03-08T23:55:50.214 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:50.214 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-08T23:55:50.214 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-08T23:55:50.214 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-08T23:55:50.214 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:50.229 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 126/138 2026-03-08T23:55:50.239 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 126/138 2026-03-08T23:55:50.799 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 127/138 2026-03-08T23:55:50.802 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 128/138 2026-03-08T23:55:50.827 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 128/138 2026-03-08T23:55:50.827 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:50.827 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-08T23:55:50.827 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-08T23:55:50.827 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-08T23:55:50.827 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:50.838 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 129/138 2026-03-08T23:55:50.857 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 129/138 2026-03-08T23:55:50.857 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:50.857 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-08T23:55:50.857 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:51.023 INFO:teuthology.orchestra.run.vm09.stdout: Installing : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 130/138 2026-03-08T23:55:51.048 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 130/138 2026-03-08T23:55:51.048 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-08T23:55:51.048 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-08T23:55:51.049 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-08T23:55:51.049 INFO:teuthology.orchestra.run.vm09.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-08T23:55:51.049 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:51.598 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 131/138 2026-03-08T23:55:51.610 INFO:teuthology.orchestra.run.vm05.stdout: Installing : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 132/138 2026-03-08T23:55:51.616 INFO:teuthology.orchestra.run.vm05.stdout: Installing : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 133/138 2026-03-08T23:55:51.685 INFO:teuthology.orchestra.run.vm05.stdout: Installing : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_6 134/138 2026-03-08T23:55:51.700 INFO:teuthology.orchestra.run.vm05.stdout: Installing : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 135/138 2026-03-08T23:55:51.706 INFO:teuthology.orchestra.run.vm05.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 136/138 2026-03-08T23:55:51.707 INFO:teuthology.orchestra.run.vm05.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 137/138 2026-03-08T23:55:51.727 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 137/138 2026-03-08T23:55:51.727 INFO:teuthology.orchestra.run.vm05.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:52.885 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 131/138 2026-03-08T23:55:52.957 INFO:teuthology.orchestra.run.vm02.stdout: Installing : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 132/138 2026-03-08T23:55:53.029 INFO:teuthology.orchestra.run.vm02.stdout: Installing : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 133/138 2026-03-08T23:55:53.187 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_6 134/138 2026-03-08T23:55:53.299 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 135/138 2026-03-08T23:55:53.393 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 136/138 2026-03-08T23:55:53.393 INFO:teuthology.orchestra.run.vm02.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 137/138 2026-03-08T23:55:53.414 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 137/138 2026-03-08T23:55:53.414 INFO:teuthology.orchestra.run.vm02.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 3/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 5/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 6/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 7/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/138 2026-03-08T23:55:53.448 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 9/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 10/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 12/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_6 13/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 14/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 15/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 16/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 17/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 18/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9 19/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 20/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 21/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 22/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 23/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 24/138 2026-03-08T23:55:53.449 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 25/138 2026-03-08T23:55:53.450 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 26/138 2026-03-08T23:55:53.450 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 27/138 2026-03-08T23:55:53.450 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 28/138 2026-03-08T23:55:53.450 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 29/138 2026-03-08T23:55:53.450 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 30/138 2026-03-08T23:55:53.450 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 31/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 32/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 33/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 34/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 35/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 36/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 37/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 38/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 39/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 40/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 41/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 42/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 43/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 44/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 45/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-ply-3.11-14.el9.noarch 46/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 47/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 48/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 49/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : unzip-6.0-59.el9.x86_64 50/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : zip-3.0-35.el9.x86_64 51/138 2026-03-08T23:55:53.451 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 52/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 53/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 54/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 55/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 56/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 57/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 58/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 59/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 60/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 61/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 62/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : lua-5.4.4-4.el9.x86_64 63/138 2026-03-08T23:55:53.452 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 64/138 2026-03-08T23:55:53.453 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 65/138 2026-03-08T23:55:53.453 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 66/138 2026-03-08T23:55:53.453 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 67/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 68/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 69/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 70/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 71/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 72/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 73/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 74/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 75/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 76/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 77/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 78/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 79/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 80/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 81/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 82/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 83/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 84/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 85/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 86/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 87/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 88/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 89/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 90/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 91/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 92/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 93/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 94/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 95/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 96/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 97/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 98/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 99/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 100/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 101/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 102/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 103/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 104/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 105/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 106/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 107/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 108/138 2026-03-08T23:55:53.454 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 109/138 2026-03-08T23:55:53.455 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 110/138 2026-03-08T23:55:53.455 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 111/138 2026-03-08T23:55:53.455 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 112/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 113/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 114/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 115/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 116/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 117/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 118/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 119/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 120/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 121/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 122/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 123/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 124/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 125/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 126/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 127/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 128/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 129/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 130/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 131/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 132/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : re2-1:20211101-20.el9.x86_64 133/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 134/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 135/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 136/138 2026-03-08T23:55:53.456 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 137/138 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout:Upgraded: 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout:Installed: 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-immutable-object-cache-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-08T23:55:53.651 INFO:teuthology.orchestra.run.vm05.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: lua-5.4.4-4.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: mailcap-2.1.49-5.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-08T23:55:53.652 INFO:teuthology.orchestra.run.vm05.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-logutils-0.3.5-21.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-mako-1.1.4-6.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-pecan-1.4.2-3.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-ply-3.11-14.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-webob-1.8.8-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-08T23:55:53.653 INFO:teuthology.orchestra.run.vm05.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: re2-1:20211101-20.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: socat-1.7.4.1-8.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: unzip-6.0-59.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: zip-3.0-35.el9.x86_64 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:55:53.654 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-08T23:55:53.804 DEBUG:teuthology.parallel:result is None 2026-03-08T23:55:53.862 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 131/138 2026-03-08T23:55:53.946 INFO:teuthology.orchestra.run.vm09.stdout: Installing : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 132/138 2026-03-08T23:55:53.955 INFO:teuthology.orchestra.run.vm09.stdout: Installing : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 133/138 2026-03-08T23:55:54.021 INFO:teuthology.orchestra.run.vm09.stdout: Installing : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_6 134/138 2026-03-08T23:55:54.111 INFO:teuthology.orchestra.run.vm09.stdout: Installing : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 135/138 2026-03-08T23:55:54.136 INFO:teuthology.orchestra.run.vm09.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 136/138 2026-03-08T23:55:54.136 INFO:teuthology.orchestra.run.vm09.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 137/138 2026-03-08T23:55:54.196 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 137/138 2026-03-08T23:55:54.196 INFO:teuthology.orchestra.run.vm09.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 3/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 5/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 6/138 2026-03-08T23:55:55.362 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 7/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 9/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 10/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 12/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_6 13/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 14/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 15/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 16/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 17/138 2026-03-08T23:55:55.363 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 18/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9 19/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 20/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 21/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 22/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 23/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 24/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 25/138 2026-03-08T23:55:55.364 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 26/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 27/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 28/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 29/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 30/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 31/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 32/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 33/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 34/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 35/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 36/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 37/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 38/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 39/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 40/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 41/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 42/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 43/138 2026-03-08T23:55:55.365 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 44/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 45/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ply-3.11-14.el9.noarch 46/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 47/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 48/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 49/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : unzip-6.0-59.el9.x86_64 50/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : zip-3.0-35.el9.x86_64 51/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 52/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 53/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 54/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 55/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 56/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 57/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 58/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 59/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 60/138 2026-03-08T23:55:55.366 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 61/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 62/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-5.4.4-4.el9.x86_64 63/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 64/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 65/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 66/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 67/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 68/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 69/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 70/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 71/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 72/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 73/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 74/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 75/138 2026-03-08T23:55:55.367 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 76/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 77/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 78/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 79/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 80/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 81/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 82/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 83/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 84/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 85/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 86/138 2026-03-08T23:55:55.368 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 87/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 88/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 89/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 90/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 91/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 92/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 93/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 94/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 95/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 96/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 97/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 98/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 99/138 2026-03-08T23:55:55.369 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 100/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 101/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 102/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 103/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 104/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 105/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 106/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 107/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 108/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 109/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 110/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 111/138 2026-03-08T23:55:55.370 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 112/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 113/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 114/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 115/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 116/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 117/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 118/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 119/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 120/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 121/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 122/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 123/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 124/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 125/138 2026-03-08T23:55:55.371 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 126/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 127/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 128/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 129/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 130/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 131/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 132/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : re2-1:20211101-20.el9.x86_64 133/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 134/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 135/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 136/138 2026-03-08T23:55:55.372 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 137/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 3/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 4/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 5/138 2026-03-08T23:55:56.241 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 6/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 7/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 9/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 10/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 11/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 12/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_6 13/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 14/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 15/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 16/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 17/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 18/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9 19/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 20/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 21/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 22/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 23/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 24/138 2026-03-08T23:55:56.242 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 25/138 2026-03-08T23:55:56.245 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 26/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 27/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 28/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 29/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 30/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 31/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 32/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 33/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 34/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 35/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 36/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 37/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 38/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 39/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 40/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 41/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 42/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 43/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 44/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 45/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-ply-3.11-14.el9.noarch 46/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 47/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 48/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 49/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : unzip-6.0-59.el9.x86_64 50/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : zip-3.0-35.el9.x86_64 51/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 52/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 53/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 54/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 55/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 56/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 57/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 58/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 59/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 60/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 61/138 2026-03-08T23:55:56.246 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 62/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : lua-5.4.4-4.el9.x86_64 63/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 64/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 65/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 66/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 67/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 68/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 69/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 70/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 71/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 72/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 73/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 74/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 75/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 76/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 77/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 78/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 79/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 80/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 81/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 82/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 83/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 84/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 85/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 86/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 87/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 88/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 89/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 90/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 91/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 92/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 93/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 94/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 95/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 96/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 97/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 98/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 99/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 100/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 101/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 102/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 103/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 104/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 105/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 106/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 107/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 108/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 109/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 110/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 111/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 112/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 113/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 114/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 115/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 116/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 117/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 118/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 119/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 120/138 2026-03-08T23:55:56.247 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 121/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 122/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 123/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 124/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 125/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 126/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 127/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 128/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 129/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 130/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 131/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 132/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : re2-1:20211101-20.el9.x86_64 133/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 134/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 135/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 136/138 2026-03-08T23:55:56.248 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 137/138 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout:Upgraded: 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout:Installed: 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.275 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: lua-5.4.4-4.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: mailcap-2.1.49-5.el9.noarch 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-08T23:55:56.276 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-logutils-0.3.5-21.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-mako-1.1.4-6.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-pecan-1.4.2-3.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply-3.11-14.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-08T23:55:56.277 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-webob-1.8.8-2.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: re2-1:20211101-20.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: socat-1.7.4.1-8.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: unzip-6.0-59.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: zip-3.0-35.el9.x86_64 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:55:56.278 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-08T23:55:56.379 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 138/138 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout:Upgraded: 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout:Installed: 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-immutable-object-cache-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.380 INFO:teuthology.orchestra.run.vm09.stdout: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: lua-5.4.4-4.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: mailcap-2.1.49-5.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-08T23:55:56.381 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-logutils-0.3.5-21.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-mako-1.1.4-6.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-pecan-1.4.2-3.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-ply-3.11-14.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-webob-1.8.8-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-08T23:55:56.382 INFO:teuthology.orchestra.run.vm09.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: re2-1:20211101-20.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: socat-1.7.4.1-8.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: unzip-6.0-59.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: zip-3.0-35.el9.x86_64 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:55:56.383 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-08T23:55:56.389 DEBUG:teuthology.parallel:result is None 2026-03-08T23:55:56.525 DEBUG:teuthology.parallel:result is None 2026-03-08T23:55:56.525 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:55:57.085 DEBUG:teuthology.orchestra.run.vm02:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-03-08T23:55:57.108 INFO:teuthology.orchestra.run.vm02.stdout:19.2.3-678.ge911bdeb.el9 2026-03-08T23:55:57.108 INFO:teuthology.packaging:The installed version of ceph is 19.2.3-678.ge911bdeb.el9 2026-03-08T23:55:57.109 INFO:teuthology.task.install:The correct ceph version 19.2.3-678.ge911bdeb is installed. 2026-03-08T23:55:57.110 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:55:57.782 DEBUG:teuthology.orchestra.run.vm05:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-03-08T23:55:57.809 INFO:teuthology.orchestra.run.vm05.stdout:19.2.3-678.ge911bdeb.el9 2026-03-08T23:55:57.809 INFO:teuthology.packaging:The installed version of ceph is 19.2.3-678.ge911bdeb.el9 2026-03-08T23:55:57.809 INFO:teuthology.task.install:The correct ceph version 19.2.3-678.ge911bdeb is installed. 2026-03-08T23:55:57.810 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:55:58.420 DEBUG:teuthology.orchestra.run.vm09:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-03-08T23:55:58.444 INFO:teuthology.orchestra.run.vm09.stdout:19.2.3-678.ge911bdeb.el9 2026-03-08T23:55:58.444 INFO:teuthology.packaging:The installed version of ceph is 19.2.3-678.ge911bdeb.el9 2026-03-08T23:55:58.444 INFO:teuthology.task.install:The correct ceph version 19.2.3-678.ge911bdeb is installed. 2026-03-08T23:55:58.445 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-03-08T23:55:58.445 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:55:58.445 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-03-08T23:55:58.475 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:55:58.475 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-03-08T23:55:58.502 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:55:58.502 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-03-08T23:55:58.533 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-03-08T23:55:58.533 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:55:58.533 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/usr/bin/daemon-helper 2026-03-08T23:55:58.559 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-03-08T23:55:58.625 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:55:58.625 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/usr/bin/daemon-helper 2026-03-08T23:55:58.651 DEBUG:teuthology.orchestra.run.vm05:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-03-08T23:55:58.718 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:55:58.718 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/usr/bin/daemon-helper 2026-03-08T23:55:58.744 DEBUG:teuthology.orchestra.run.vm09:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-03-08T23:55:58.814 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-03-08T23:55:58.815 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:55:58.815 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/usr/bin/adjust-ulimits 2026-03-08T23:55:58.842 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-03-08T23:55:58.906 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:55:58.906 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/usr/bin/adjust-ulimits 2026-03-08T23:55:58.932 DEBUG:teuthology.orchestra.run.vm05:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-03-08T23:55:59.000 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:55:59.000 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/usr/bin/adjust-ulimits 2026-03-08T23:55:59.026 DEBUG:teuthology.orchestra.run.vm09:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-03-08T23:55:59.093 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-03-08T23:55:59.093 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:55:59.093 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/usr/bin/stdin-killer 2026-03-08T23:55:59.119 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-03-08T23:55:59.182 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:55:59.182 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/usr/bin/stdin-killer 2026-03-08T23:55:59.207 DEBUG:teuthology.orchestra.run.vm05:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-03-08T23:55:59.271 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:55:59.271 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/usr/bin/stdin-killer 2026-03-08T23:55:59.299 DEBUG:teuthology.orchestra.run.vm09:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-03-08T23:55:59.364 INFO:teuthology.run_tasks:Running task cephadm... 2026-03-08T23:55:59.411 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, 'osd mclock iops capacity threshold hdd': 49000}}, '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': 'e911bdebe5c8faa3800735d1568fcdca65db60df'} 2026-03-08T23:55:59.411 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:55:59.411 INFO:tasks.cephadm:Cluster fsid is 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:55:59.411 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-03-08T23:55:59.411 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '192.168.123.102', 'mon.b': '192.168.123.105', 'mon.c': '192.168.123.109'} 2026-03-08T23:55:59.411 INFO:tasks.cephadm:First mon is mon.a on vm02 2026-03-08T23:55:59.411 INFO:tasks.cephadm:First mgr is a 2026-03-08T23:55:59.412 INFO:tasks.cephadm:Normalizing hostnames... 2026-03-08T23:55:59.412 DEBUG:teuthology.orchestra.run.vm02:> sudo hostname $(hostname -s) 2026-03-08T23:55:59.436 DEBUG:teuthology.orchestra.run.vm05:> sudo hostname $(hostname -s) 2026-03-08T23:55:59.461 DEBUG:teuthology.orchestra.run.vm09:> sudo hostname $(hostname -s) 2026-03-08T23:55:59.490 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-03-08T23:55:59.490 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:56:00.150 INFO:tasks.cephadm:builder_project result: [{'url': 'https://3.chacra.ceph.com/r/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/flavors/default/', 'ref': 'squid', 'sha1': 'e911bdebe5c8faa3800735d1568fcdca65db60df', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-25 18:55:15.146628', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['source', 'x86_64'], 'extra': {'version': '19.2.3-678-ge911bdeb', 'package_manager_version': '19.2.3-678.ge911bdeb', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3275/', 'root_build_cause': '', 'node_name': '10.20.192.26+soko16', 'job_name': 'ceph-dev-pipeline'}}] 2026-03-08T23:56:00.737 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref squid, sha1 e911bdebe5c8faa3800735d1568fcdca65db60df from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:56:00.738 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/x86_64/flavors/default/cephadm 2026-03-08T23:56:00.738 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/x86_64/flavors/default/cephadm 2026-03-08T23:56:00.739 DEBUG:teuthology.orchestra.run.vm02:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:02.156 INFO:teuthology.orchestra.run.vm02.stdout:-rw-r--r--. 1 ubuntu ubuntu 788355 Mar 8 23:56 /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:02.156 DEBUG:teuthology.orchestra.run.vm05:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:03.591 INFO:teuthology.orchestra.run.vm05.stdout:-rw-r--r--. 1 ubuntu ubuntu 788355 Mar 8 23:56 /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:03.591 DEBUG:teuthology.orchestra.run.vm09:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/squid/e911bdebe5c8faa3800735d1568fcdca65db60df/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:04.948 INFO:teuthology.orchestra.run.vm09.stdout:-rw-r--r--. 1 ubuntu ubuntu 788355 Mar 8 23:56 /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:04.949 DEBUG:teuthology.orchestra.run.vm02:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:04.966 DEBUG:teuthology.orchestra.run.vm05:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:04.982 DEBUG:teuthology.orchestra.run.vm09:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-03-08T23:56:05.004 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df on all hosts... 2026-03-08T23:56:05.004 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df pull 2026-03-08T23:56:05.008 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df pull 2026-03-08T23:56:05.025 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df pull 2026-03-08T23:56:05.174 INFO:teuthology.orchestra.run.vm02.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df... 2026-03-08T23:56:05.194 INFO:teuthology.orchestra.run.vm05.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df... 2026-03-08T23:56:05.207 INFO:teuthology.orchestra.run.vm09.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df... 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout:{ 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout: "ceph_version": "ceph version 19.2.3-678-ge911bdeb (e911bdebe5c8faa3800735d1568fcdca65db60df) squid (stable)", 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout: "image_id": "654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c", 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout: "repo_digests": [ 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc" 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout: ] 2026-03-08T23:57:16.058 INFO:teuthology.orchestra.run.vm09.stdout:} 2026-03-08T23:57:24.751 INFO:teuthology.orchestra.run.vm02.stdout:{ 2026-03-08T23:57:24.752 INFO:teuthology.orchestra.run.vm02.stdout: "ceph_version": "ceph version 19.2.3-678-ge911bdeb (e911bdebe5c8faa3800735d1568fcdca65db60df) squid (stable)", 2026-03-08T23:57:24.752 INFO:teuthology.orchestra.run.vm02.stdout: "image_id": "654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c", 2026-03-08T23:57:24.752 INFO:teuthology.orchestra.run.vm02.stdout: "repo_digests": [ 2026-03-08T23:57:24.752 INFO:teuthology.orchestra.run.vm02.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc" 2026-03-08T23:57:24.752 INFO:teuthology.orchestra.run.vm02.stdout: ] 2026-03-08T23:57:24.752 INFO:teuthology.orchestra.run.vm02.stdout:} 2026-03-08T23:57:25.433 INFO:teuthology.orchestra.run.vm05.stdout:{ 2026-03-08T23:57:25.434 INFO:teuthology.orchestra.run.vm05.stdout: "ceph_version": "ceph version 19.2.3-678-ge911bdeb (e911bdebe5c8faa3800735d1568fcdca65db60df) squid (stable)", 2026-03-08T23:57:25.434 INFO:teuthology.orchestra.run.vm05.stdout: "image_id": "654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c", 2026-03-08T23:57:25.434 INFO:teuthology.orchestra.run.vm05.stdout: "repo_digests": [ 2026-03-08T23:57:25.434 INFO:teuthology.orchestra.run.vm05.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc" 2026-03-08T23:57:25.434 INFO:teuthology.orchestra.run.vm05.stdout: ] 2026-03-08T23:57:25.434 INFO:teuthology.orchestra.run.vm05.stdout:} 2026-03-08T23:57:25.456 DEBUG:teuthology.orchestra.run.vm02:> sudo mkdir -p /etc/ceph 2026-03-08T23:57:25.488 DEBUG:teuthology.orchestra.run.vm05:> sudo mkdir -p /etc/ceph 2026-03-08T23:57:25.520 DEBUG:teuthology.orchestra.run.vm09:> sudo mkdir -p /etc/ceph 2026-03-08T23:57:25.550 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod 777 /etc/ceph 2026-03-08T23:57:25.577 DEBUG:teuthology.orchestra.run.vm05:> sudo chmod 777 /etc/ceph 2026-03-08T23:57:25.602 DEBUG:teuthology.orchestra.run.vm09:> sudo chmod 777 /etc/ceph 2026-03-08T23:57:25.626 INFO:tasks.cephadm:Writing seed config... 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [global] mon election default strategy = 3 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = True 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-03-08T23:57:25.626 INFO:tasks.cephadm: override: [osd] osd mclock iops capacity threshold hdd = 49000 2026-03-08T23:57:25.627 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:57:25.627 DEBUG:teuthology.orchestra.run.vm02:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-03-08T23:57:25.642 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=jerasure 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 = 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 mon election default strategy = 3 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops 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 osd mclock iops capacity threshold hdd = 49000 [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-03-08T23:57:25.642 DEBUG:teuthology.orchestra.run.vm02:mon.a> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a.service 2026-03-08T23:57:25.684 DEBUG:teuthology.orchestra.run.vm02:mgr.a> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service 2026-03-08T23:57:25.726 INFO:tasks.cephadm:Bootstrapping... 2026-03-08T23:57:25.726 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df -v bootstrap --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --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 192.168.123.102 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-03-08T23:57:25.872 INFO:teuthology.orchestra.run.vm02.stdout:-------------------------------------------------------------------------------- 2026-03-08T23:57:25.872 INFO:teuthology.orchestra.run.vm02.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df', '-v', 'bootstrap', '--fsid', '5b0a27d4-1b4a-11f1-9a7f-35684a443fe9', '--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', '192.168.123.102', '--skip-admin-label'] 2026-03-08T23:57:25.872 INFO:teuthology.orchestra.run.vm02.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-03-08T23:57:25.872 INFO:teuthology.orchestra.run.vm02.stdout:Verifying podman|docker is present... 2026-03-08T23:57:25.898 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stdout 5.8.0 2026-03-08T23:57:25.898 INFO:teuthology.orchestra.run.vm02.stdout:Verifying lvm2 is present... 2026-03-08T23:57:25.898 INFO:teuthology.orchestra.run.vm02.stdout:Verifying time synchronization is in place... 2026-03-08T23:57:25.907 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-03-08T23:57:25.907 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-03-08T23:57:25.913 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-03-08T23:57:25.913 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout inactive 2026-03-08T23:57:25.919 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout enabled 2026-03-08T23:57:25.925 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout active 2026-03-08T23:57:25.925 INFO:teuthology.orchestra.run.vm02.stdout:Unit chronyd.service is enabled and running 2026-03-08T23:57:25.925 INFO:teuthology.orchestra.run.vm02.stdout:Repeating the final host check... 2026-03-08T23:57:25.945 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stdout 5.8.0 2026-03-08T23:57:25.945 INFO:teuthology.orchestra.run.vm02.stdout:podman (/bin/podman) version 5.8.0 is present 2026-03-08T23:57:25.945 INFO:teuthology.orchestra.run.vm02.stdout:systemctl is present 2026-03-08T23:57:25.945 INFO:teuthology.orchestra.run.vm02.stdout:lvcreate is present 2026-03-08T23:57:25.951 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-03-08T23:57:25.951 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-03-08T23:57:25.957 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-03-08T23:57:25.957 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout inactive 2026-03-08T23:57:25.963 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout enabled 2026-03-08T23:57:25.969 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout active 2026-03-08T23:57:25.969 INFO:teuthology.orchestra.run.vm02.stdout:Unit chronyd.service is enabled and running 2026-03-08T23:57:25.969 INFO:teuthology.orchestra.run.vm02.stdout:Host looks OK 2026-03-08T23:57:25.969 INFO:teuthology.orchestra.run.vm02.stdout:Cluster fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:25.969 INFO:teuthology.orchestra.run.vm02.stdout:Acquiring lock 139814202600176 on /run/cephadm/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.lock 2026-03-08T23:57:25.970 INFO:teuthology.orchestra.run.vm02.stdout:Lock 139814202600176 acquired on /run/cephadm/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.lock 2026-03-08T23:57:25.970 INFO:teuthology.orchestra.run.vm02.stdout:Verifying IP 192.168.123.102 port 3300 ... 2026-03-08T23:57:25.970 INFO:teuthology.orchestra.run.vm02.stdout:Verifying IP 192.168.123.102 port 6789 ... 2026-03-08T23:57:25.970 INFO:teuthology.orchestra.run.vm02.stdout:Base mon IP(s) is [192.168.123.102:3300, 192.168.123.102:6789], mon addrv is [v2:192.168.123.102:3300,v1:192.168.123.102:6789] 2026-03-08T23:57:25.973 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout default via 192.168.123.1 dev eth0 proto dhcp src 192.168.123.102 metric 100 2026-03-08T23:57:25.973 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout 192.168.123.0/24 dev eth0 proto kernel scope link src 192.168.123.102 metric 100 2026-03-08T23:57:25.975 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-03-08T23:57:25.975 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout fe80::/64 dev eth0 proto kernel metric 1024 pref medium 2026-03-08T23:57:25.977 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-03-08T23:57:25.977 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-03-08T23:57:25.977 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-03-08T23:57:25.977 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout 2: eth0: mtu 1500 state UP qlen 1000 2026-03-08T23:57:25.978 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout inet6 fe80::5055:ff:fe00:2/64 scope link noprefixroute 2026-03-08T23:57:25.978 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-03-08T23:57:25.978 INFO:teuthology.orchestra.run.vm02.stdout:Mon IP `192.168.123.102` is in CIDR network `192.168.123.0/24` 2026-03-08T23:57:25.978 INFO:teuthology.orchestra.run.vm02.stdout:Mon IP `192.168.123.102` is in CIDR network `192.168.123.0/24` 2026-03-08T23:57:25.978 INFO:teuthology.orchestra.run.vm02.stdout:Inferred mon public CIDR from local network configuration ['192.168.123.0/24', '192.168.123.0/24'] 2026-03-08T23:57:25.978 INFO:teuthology.orchestra.run.vm02.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-03-08T23:57:25.979 INFO:teuthology.orchestra.run.vm02.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df... 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stdout 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df... 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Getting image source signatures 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Copying blob sha256:1752b8d01aa0dd33bbe0ab24e8316174c94fbdcd5d26252e2680bba0624747a7 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Copying blob sha256:8e380faede39ebd4286247457b408d979ab568aafd8389c42ec304b8cfba4e92 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Copying config sha256:654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c 2026-03-08T23:57:27.323 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Writing manifest to image destination 2026-03-08T23:57:27.712 INFO:teuthology.orchestra.run.vm02.stdout:ceph: stdout ceph version 19.2.3-678-ge911bdeb (e911bdebe5c8faa3800735d1568fcdca65db60df) squid (stable) 2026-03-08T23:57:27.712 INFO:teuthology.orchestra.run.vm02.stdout:Ceph version: ceph version 19.2.3-678-ge911bdeb (e911bdebe5c8faa3800735d1568fcdca65db60df) squid (stable) 2026-03-08T23:57:27.712 INFO:teuthology.orchestra.run.vm02.stdout:Extracting ceph user uid/gid from container image... 2026-03-08T23:57:28.071 INFO:teuthology.orchestra.run.vm02.stdout:stat: stdout 167 167 2026-03-08T23:57:28.071 INFO:teuthology.orchestra.run.vm02.stdout:Creating initial keys... 2026-03-08T23:57:28.183 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph-authtool: stdout AQDoDK5p9funCRAA0lA6kY0MWARJcb95ZZ4gWg== 2026-03-08T23:57:28.298 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph-authtool: stdout AQDoDK5pyNVVDxAAVUBMXld8OV0gmRXz95y1+w== 2026-03-08T23:57:28.409 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph-authtool: stdout AQDoDK5p85nfFRAANw/pvwvpKmhM7D+XavhAUQ== 2026-03-08T23:57:28.409 INFO:teuthology.orchestra.run.vm02.stdout:Creating initial monmap... 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:monmaptool for a [v2:192.168.123.102:3300,v1:192.168.123.102:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:setting min_mon_release = quincy 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: set fsid to 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:28.513 INFO:teuthology.orchestra.run.vm02.stdout:Creating mon... 2026-03-08T23:57:28.672 INFO:teuthology.orchestra.run.vm02.stdout:create mon.a on 2026-03-08T23:57:28.872 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2026-03-08T23:57:29.032 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-03-08T23:57:29.184 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.target → /etc/systemd/system/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.target. 2026-03-08T23:57:29.184 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.target → /etc/systemd/system/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.target. 2026-03-08T23:57:29.357 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a 2026-03-08T23:57:29.357 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to reset failed state of unit ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a.service: Unit ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a.service not loaded. 2026-03-08T23:57:29.508 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.target.wants/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a.service → /etc/systemd/system/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@.service. 2026-03-08T23:57:29.684 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-08T23:57:29.684 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to enable service . firewalld.service is not available 2026-03-08T23:57:29.684 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mon to start... 2026-03-08T23:57:29.684 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mon... 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout cluster: 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout id: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout services: 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.139908s) 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout data: 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout pgs: 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:mon is available 2026-03-08T23:57:29.878 INFO:teuthology.orchestra.run.vm02.stdout:Assimilating anything we can from ceph.conf... 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [global] 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout fsid = 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_host = [v2:192.168.123.102:3300,v1:192.168.123.102:6789] 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [mgr] 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = True 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-03-08T23:57:30.097 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:30.098 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [osd] 2026-03-08T23:57:30.098 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-03-08T23:57:30.098 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-03-08T23:57:30.098 INFO:teuthology.orchestra.run.vm02.stdout:Generating new minimal ceph.conf... 2026-03-08T23:57:30.320 INFO:teuthology.orchestra.run.vm02.stdout:Restarting the monitor... 2026-03-08T23:57:30.700 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 podman[50801]: 2026-03-08 23:57:30.687735644 +0000 UTC m=+0.277853983 container died d710e23a32c1c7a8439e2156f40d79e8161d7d6ab87ecef941034578befc402c (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.label-schema.build-date=20260223, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, CEPH_REF=squid, io.buildah.version=1.41.3, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-08T23:57:30.941 INFO:teuthology.orchestra.run.vm02.stdout:Setting public_network to 192.168.123.0/24 in mon config section 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 podman[50801]: 2026-03-08 23:57:30.706164003 +0000 UTC m=+0.296282342 container remove d710e23a32c1c7a8439e2156f40d79e8161d7d6ab87ecef941034578befc402c (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, CEPH_REF=squid, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260223, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.schema-version=1.0, io.buildah.version=1.41.3, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 bash[50801]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a.service: Deactivated successfully. 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 systemd[1]: Stopped Ceph mon.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9. 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 systemd[1]: Starting Ceph mon.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 podman[50872]: 2026-03-08 23:57:30.896222049 +0000 UTC m=+0.016665912 container create c2fa0755ad466e6725c84580b93efd90e8252c98605484faa2e674364fad7c13 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=squid, io.buildah.version=1.41.3, OSD_FLAVOR=default, ceph=True) 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 podman[50872]: 2026-03-08 23:57:30.92735157 +0000 UTC m=+0.047795433 container init c2fa0755ad466e6725c84580b93efd90e8252c98605484faa2e674364fad7c13 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, 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, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.license=GPLv2, CEPH_REF=squid, io.buildah.version=1.41.3, org.label-schema.build-date=20260223, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS) 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 podman[50872]: 2026-03-08 23:57:30.930860187 +0000 UTC m=+0.051304040 container start c2fa0755ad466e6725c84580b93efd90e8252c98605484faa2e674364fad7c13 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260223, CEPH_REF=squid, io.buildah.version=1.41.3, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.vendor=CentOS) 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 bash[50872]: c2fa0755ad466e6725c84580b93efd90e8252c98605484faa2e674364fad7c13 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 podman[50872]: 2026-03-08 23:57:30.889408367 +0000 UTC m=+0.009852230 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:57:30.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 systemd[1]: Started Ceph mon.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9. 2026-03-08T23:57:30.957 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: set uid:gid to 167:167 (ceph:ceph) 2026-03-08T23:57:31.141 INFO:teuthology.orchestra.run.vm02.stdout:Wrote config to /etc/ceph/ceph.conf 2026-03-08T23:57:31.143 INFO:teuthology.orchestra.run.vm02.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-03-08T23:57:31.143 INFO:teuthology.orchestra.run.vm02.stdout:Creating mgr... 2026-03-08T23:57:31.143 INFO:teuthology.orchestra.run.vm02.stdout:Verifying port 0.0.0.0:9283 ... 2026-03-08T23:57:31.143 INFO:teuthology.orchestra.run.vm02.stdout:Verifying port 0.0.0.0:8765 ... 2026-03-08T23:57:31.218 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: ceph version 19.2.3-678-ge911bdeb (e911bdebe5c8faa3800735d1568fcdca65db60df) squid (stable), process ceph-mon, pid 2 2026-03-08T23:57:31.218 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: pidfile_write: ignore empty --pid-file 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: load: jerasure load: lrc 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: RocksDB version: 7.9.2 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Git sha 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Compile date 2026-02-25 18:11:04 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: DB SUMMARY 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: DB Session ID: QVSLZVZ7CGY5IU5X9NWX 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: CURRENT file: CURRENT 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: IDENTITY file: IDENTITY 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 75535 ; 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.error_if_exists: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.create_if_missing: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.paranoid_checks: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.flush_verify_memtable_count: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.env: 0x55ce09157dc0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.fs: PosixFileSystem 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.info_log: 0x55ce0a214700 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_file_opening_threads: 16 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.statistics: (nil) 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.use_fsync: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_log_file_size: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.log_file_time_to_roll: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.keep_log_file_num: 1000 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.recycle_log_file_num: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.allow_fallocate: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.allow_mmap_reads: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.allow_mmap_writes: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.use_direct_reads: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.create_missing_column_families: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.db_log_dir: 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.wal_dir: 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.table_cache_numshardbits: 6 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.WAL_ttl_seconds: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.WAL_size_limit_MB: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.is_fd_close_on_exec: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.advise_random_on_open: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.db_write_buffer_size: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.write_buffer_manager: 0x55ce0a219900 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.use_adaptive_mutex: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.rate_limiter: (nil) 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.wal_recovery_mode: 2 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.enable_thread_tracking: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.enable_pipelined_write: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.unordered_write: 0 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.row_cache: None 2026-03-08T23:57:31.219 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.wal_filter: None 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.allow_ingest_behind: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.two_write_queues: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.manual_wal_flush: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.wal_compression: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.atomic_flush: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.persist_stats_to_disk: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.write_dbid_to_manifest: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.log_readahead_size: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.best_efforts_recovery: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.allow_data_in_errors: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.db_host_id: __hostname__ 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.enforce_single_del_contracts: true 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_background_jobs: 2 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_background_compactions: -1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_subcompactions: 1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.delayed_write_rate : 16777216 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_total_wal_size: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.stats_dump_period_sec: 600 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.stats_persist_period_sec: 600 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_open_files: -1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bytes_per_sync: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.wal_bytes_per_sync: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.strict_bytes_per_sync: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_readahead_size: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_background_flushes: -1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Compression algorithms supported: 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kZSTD supported: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kXpressCompression supported: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kBZip2Compression supported: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kLZ4Compression supported: 1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kZlibCompression supported: 1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kLZ4HCCompression supported: 1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: kSnappyCompression supported: 1 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Fast CRC32 supported: Supported on x86 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: DMutex implementation: pthread_mutex_t 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-03-08T23:57:31.220 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.merge_operator: 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_filter: None 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_filter_factory: None 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.sst_partitioner_factory: None 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.memtable_factory: SkipListFactory 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.table_factory: BlockBasedTable 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55ce0a214640) 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: cache_index_and_filter_blocks: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: pin_top_level_index_and_filter: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: index_type: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: data_block_index_type: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: index_shortening: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: data_block_hash_table_util_ratio: 0.750000 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: checksum: 4 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: no_block_cache: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_cache: 0x55ce0a239350 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_cache_name: BinnedLRUCache 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_cache_options: 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: capacity : 536870912 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: num_shard_bits : 4 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: strict_capacity_limit : 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: high_pri_pool_ratio: 0.000 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_cache_compressed: (nil) 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: persistent_cache: (nil) 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_size: 4096 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_size_deviation: 10 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_restart_interval: 16 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: index_block_restart_interval: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: metadata_block_size: 4096 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: partition_filters: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: use_delta_encoding: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: filter_policy: bloomfilter 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: whole_key_filtering: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: verify_compression: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: read_amp_bytes_per_bit: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: format_version: 5 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: enable_index_compression: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: block_align: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: max_auto_readahead_size: 262144 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: prepopulate_block_cache: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: initial_auto_readahead_size: 8192 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout: num_file_reads_for_auto_readahead: 2 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.write_buffer_size: 33554432 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_write_buffer_number: 2 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression: NoCompression 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression: Disabled 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.prefix_extractor: nullptr 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.num_levels: 7 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-03-08T23:57:31.221 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.window_bits: -14 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.level: 32767 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.strategy: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.enabled: false 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.target_file_size_base: 67108864 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.target_file_size_multiplier: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.arena_block_size: 1048576 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.disable_auto_compactions: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.inplace_update_support: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.inplace_update_num_locks: 10000 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.memtable_huge_page_size: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.bloom_locality: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.max_successive_merges: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.optimize_filters_for_hits: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.paranoid_file_checks: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.force_consistency_checks: 1 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.report_bg_io_stats: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.ttl: 2592000 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.periodic_compaction_seconds: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.enable_blob_files: false 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.min_blob_size: 0 2026-03-08T23:57:31.222 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.blob_file_size: 268435456 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.blob_compression_type: NoCompression 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.enable_blob_garbage_collection: false 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.blob_file_starting_level: 0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: 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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 3731b75a-b47b-42d1-978e-70d614871ac1 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: EVENT_LOG_v1 {"time_micros": 1773014250954968, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: EVENT_LOG_v1 {"time_micros": 1773014250957815, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 72616, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 225, "table_properties": {"data_size": 70895, "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": 9705, "raw_average_key_size": 49, "raw_value_size": 65374, "raw_average_value_size": 333, "num_data_blocks": 8, "num_entries": 196, "num_filter_entries": 196, "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": 1773014250, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "3731b75a-b47b-42d1-978e-70d614871ac1", "db_session_id": "QVSLZVZ7CGY5IU5X9NWX", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: EVENT_LOG_v1 {"time_micros": 1773014250957893, "job": 1, "event": "recovery_finished"} 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: 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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55ce0a23ae00 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: DB pointer 0x55ce0a350000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:30 vm02 ceph-mon[50886]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: ** DB Stats ** 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: ** Compaction Stats [default] ** 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: L0 2/0 72.77 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 26.0 0.00 0.00 1 0.003 0 0 0.0 0.0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Sum 2/0 72.77 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 26.0 0.00 0.00 1 0.003 0 0 0.0 0.0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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 26.0 0.00 0.00 1 0.003 0 0 0.0 0.0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: ** Compaction Stats [default] ** 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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 26.0 0.00 0.00 1 0.003 0 0 0.0 0.0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: AddFile(Keys): cumulative 0, interval 0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Cumulative compaction: 0.00 GB write, 7.92 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Interval compaction: 0.00 GB write, 7.92 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: Block cache BinnedLRUCache@0x55ce0a239350#2 capacity: 512.00 MB usage: 1.06 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.2e-05 secs_since: 0 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.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-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout: ** File Read Latency Histogram By Level [default] ** 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: mon.a is new leader, mons a in quorum (ranks 0) 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: monmap epoch 1 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: last_changed 2026-03-08T23:57:28.492803+0000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:57:31.223 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: min_mon_release 19 (squid) 2026-03-08T23:57:31.224 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: election_strategy: 1 2026-03-08T23:57:31.224 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:57:31.224 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: fsmap 2026-03-08T23:57:31.224 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: osdmap e1: 0 total, 0 up, 0 in 2026-03-08T23:57:31.224 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-mon[50886]: mgrmap e1: no daemons active 2026-03-08T23:57:31.312 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a 2026-03-08T23:57:31.312 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to reset failed state of unit ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service: Unit ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service not loaded. 2026-03-08T23:57:31.443 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9.target.wants/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service → /etc/systemd/system/ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@.service. 2026-03-08T23:57:31.580 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 systemd[1]: Starting Ceph mgr.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-08T23:57:31.641 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-08T23:57:31.641 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to enable service . firewalld.service is not available 2026-03-08T23:57:31.641 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-08T23:57:31.641 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-03-08T23:57:31.641 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr to start... 2026-03-08T23:57:31.641 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr... 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 podman[51082]: 2026-03-08 23:57:31.579620362 +0000 UTC m=+0.019192701 container create 50accb462ee3a4d0e760bab3e3c33e11093d032bb55f57ff16e54391876d4579 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3, org.label-schema.build-date=20260223, CEPH_REF=squid, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , ceph=True) 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 podman[51082]: 2026-03-08 23:57:31.626422716 +0000 UTC m=+0.065995055 container init 50accb462ee3a4d0e760bab3e3c33e11093d032bb55f57ff16e54391876d4579 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, CEPH_REF=squid, OSD_FLAVOR=default, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223) 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 podman[51082]: 2026-03-08 23:57:31.629637833 +0000 UTC m=+0.069210172 container start 50accb462ee3a4d0e760bab3e3c33e11093d032bb55f57ff16e54391876d4579 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260223, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.41.3, CEPH_REF=squid, org.label-schema.schema-version=1.0) 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 bash[51082]: 50accb462ee3a4d0e760bab3e3c33e11093d032bb55f57ff16e54391876d4579 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 podman[51082]: 2026-03-08 23:57:31.571675393 +0000 UTC m=+0.011247742 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 systemd[1]: Started Ceph mgr.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9. 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:31.744+0000 7fdf12364140 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2026-03-08T23:57:31.832 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:31 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:31.799+0000 7fdf12364140 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsid": "5b0a27d4-1b4a-11f1-9a7f-35684a443fe9", 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "health": { 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-03-08T23:57:31.879 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 0 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "a" 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "monmap": { 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "btime": "2026-03-08T23:57:29:711494+0000", 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": false, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modules": [ 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "iostat", 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "nfs", 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "restful" 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modified": "2026-03-08T23:57:29.713241+0000", 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:31.880 INFO:teuthology.orchestra.run.vm02.stdout:mgr not available, waiting (1/15)... 2026-03-08T23:57:32.476 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:32.244+0000 7fdf12364140 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2026-03-08T23:57:32.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/1952840036' entity='client.admin' 2026-03-08T23:57:32.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2445976131' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2026-03-08T23:57:32.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:32.587+0000 7fdf12364140 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2026-03-08T23:57:32.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-03-08T23:57:32.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-03-08T23:57:32.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: from numpy import show_config as show_numpy_config 2026-03-08T23:57:32.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:32.684+0000 7fdf12364140 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2026-03-08T23:57:32.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:32.723+0000 7fdf12364140 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2026-03-08T23:57:32.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:32 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:32.798+0000 7fdf12364140 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2026-03-08T23:57:33.639 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.364+0000 7fdf12364140 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2026-03-08T23:57:33.639 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.484+0000 7fdf12364140 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:57:33.639 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.526+0000 7fdf12364140 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2026-03-08T23:57:33.639 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.560+0000 7fdf12364140 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2026-03-08T23:57:33.639 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.601+0000 7fdf12364140 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2026-03-08T23:57:33.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.638+0000 7fdf12364140 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2026-03-08T23:57:33.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.819+0000 7fdf12364140 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2026-03-08T23:57:33.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:33.879+0000 7fdf12364140 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsid": "5b0a27d4-1b4a-11f1-9a7f-35684a443fe9", 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "health": { 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 0 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "a" 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "monmap": { 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-03-08T23:57:34.240 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "btime": "2026-03-08T23:57:29:711494+0000", 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": false, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modules": [ 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "iostat", 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "nfs", 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "restful" 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modified": "2026-03-08T23:57:29.713241+0000", 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:34.241 INFO:teuthology.orchestra.run.vm02.stdout:mgr not available, waiting (2/15)... 2026-03-08T23:57:34.454 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/146333412' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2026-03-08T23:57:34.454 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.141+0000 7fdf12364140 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2026-03-08T23:57:34.454 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.452+0000 7fdf12364140 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2026-03-08T23:57:34.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.492+0000 7fdf12364140 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2026-03-08T23:57:34.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.537+0000 7fdf12364140 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2026-03-08T23:57:34.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.623+0000 7fdf12364140 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2026-03-08T23:57:34.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.665+0000 7fdf12364140 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2026-03-08T23:57:35.023 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.752+0000 7fdf12364140 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2026-03-08T23:57:35.023 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:34 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:34.876+0000 7fdf12364140 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:57:35.476 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:35.022+0000 7fdf12364140 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:35.057+0000 7fdf12364140 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: Activating manager daemon a 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: mgrmap e2: a(active, starting, since 0.00425341s) 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: Manager daemon a is now available 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' 2026-03-08T23:57:35.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:35 vm02 ceph-mon[50886]: from='mgr.14100 192.168.123.102:0/907110882' entity='mgr.a' 2026-03-08T23:57:36.548 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:36.548 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:36.548 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsid": "5b0a27d4-1b4a-11f1-9a7f-35684a443fe9", 2026-03-08T23:57:36.548 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "health": { 2026-03-08T23:57:36.548 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 0 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "a" 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "monmap": { 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-03-08T23:57:36.549 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "btime": "2026-03-08T23:57:29:711494+0000", 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-03-08T23:57:36.550 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": true, 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modules": [ 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "iostat", 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "nfs", 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "restful" 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modified": "2026-03-08T23:57:29.713241+0000", 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:36.551 INFO:teuthology.orchestra.run.vm02.stdout:mgr is available 2026-03-08T23:57:36.829 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:36.829 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [global] 2026-03-08T23:57:36.829 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout fsid = 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:36.829 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-03-08T23:57:36.829 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_host = [v2:192.168.123.102:3300,v1:192.168.123.102:6789] 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [mgr] 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [osd] 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-03-08T23:57:36.830 INFO:teuthology.orchestra.run.vm02.stdout:Enabling cephadm module... 2026-03-08T23:57:37.068 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-mon[50886]: mgrmap e3: a(active, since 1.00839s) 2026-03-08T23:57:37.068 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/706759940' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2026-03-08T23:57:37.068 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/878142336' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2026-03-08T23:57:37.068 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/878142336' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-03-08T23:57:38.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: ignoring --setuser ceph since I am not root 2026-03-08T23:57:38.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: ignoring --setgroup ceph since I am not root 2026-03-08T23:57:38.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:37.933+0000 7f95f1f5c140 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2026-03-08T23:57:38.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:37 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:37.990+0000 7f95f1f5c140 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2026-03-08T23:57:38.180 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:38.180 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 4, 2026-03-08T23:57:38.180 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": true, 2026-03-08T23:57:38.180 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-03-08T23:57:38.180 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-03-08T23:57:38.180 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:38.182 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for the mgr to restart... 2026-03-08T23:57:38.182 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr epoch 4... 2026-03-08T23:57:38.453 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2448164785' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2026-03-08T23:57:38.453 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2448164785' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-03-08T23:57:38.453 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-mon[50886]: mgrmap e4: a(active, since 2s) 2026-03-08T23:57:38.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:38.452+0000 7f95f1f5c140 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:38.796+0000 7f95f1f5c140 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: from numpy import show_config as show_numpy_config 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:38.891+0000 7f95f1f5c140 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:38 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:38.930+0000 7f95f1f5c140 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2026-03-08T23:57:39.069 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.011+0000 7f95f1f5c140 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2026-03-08T23:57:39.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3322600775' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2026-03-08T23:57:39.848 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.565+0000 7f95f1f5c140 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2026-03-08T23:57:39.848 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.684+0000 7f95f1f5c140 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:57:39.848 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.728+0000 7f95f1f5c140 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2026-03-08T23:57:39.848 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.767+0000 7f95f1f5c140 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2026-03-08T23:57:39.848 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.809+0000 7f95f1f5c140 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2026-03-08T23:57:40.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:39 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:39.847+0000 7f95f1f5c140 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2026-03-08T23:57:40.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.034+0000 7f95f1f5c140 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2026-03-08T23:57:40.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.091+0000 7f95f1f5c140 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2026-03-08T23:57:40.671 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.345+0000 7f95f1f5c140 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2026-03-08T23:57:40.972 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.671+0000 7f95f1f5c140 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2026-03-08T23:57:40.972 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.712+0000 7f95f1f5c140 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2026-03-08T23:57:40.972 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.762+0000 7f95f1f5c140 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2026-03-08T23:57:40.972 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.845+0000 7f95f1f5c140 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2026-03-08T23:57:40.972 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.884+0000 7f95f1f5c140 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2026-03-08T23:57:41.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:40 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:40.971+0000 7f95f1f5c140 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2026-03-08T23:57:41.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:41.095+0000 7f95f1f5c140 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:57:41.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:41.249+0000 7f95f1f5c140 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2026-03-08T23:57:41.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:41.292+0000 7f95f1f5c140 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2026-03-08T23:57:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: Active manager daemon a restarted 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: Activating manager daemon a 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: osdmap e2: 0 total, 0 up, 0 in 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: mgrmap e5: a(active, starting, since 0.00532592s) 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: Manager daemon a is now available 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:41.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:41 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:42.337 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:42.337 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 6, 2026-03-08T23:57:42.337 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "initialized": true 2026-03-08T23:57:42.337 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:42.337 INFO:teuthology.orchestra.run.vm02.stdout:mgr epoch 4 is available 2026-03-08T23:57:42.337 INFO:teuthology.orchestra.run.vm02.stdout:Setting orchestrator backend to cephadm... 2026-03-08T23:57:42.602 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:42 vm02 ceph-mon[50886]: Found migration_current of "None". Setting to last migration. 2026-03-08T23:57:42.602 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:42 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2026-03-08T23:57:42.602 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:42 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2026-03-08T23:57:42.602 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:42 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:42.602 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:42 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:42.602 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:42 vm02 ceph-mon[50886]: mgrmap e6: a(active, since 1.00779s) 2026-03-08T23:57:42.880 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout value unchanged 2026-03-08T23:57:42.880 INFO:teuthology.orchestra.run.vm02.stdout:Generating ssh key... 2026-03-08T23:57:43.127 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: Generating public/private ed25519 key pair. 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: Your identification has been saved in /tmp/tmpg97h4n6w/key 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: Your public key has been saved in /tmp/tmpg97h4n6w/key.pub 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: The key fingerprint is: 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: SHA256:UNs5byRODzKDC5yvYGVv5JJ6u2jMhwvXNRGwg1lWQAE ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: The key's randomart image is: 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: +--[ED25519 256]--+ 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | EoB=o . | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | * o + o . | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | o O = = B . | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | o O + * B | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | o o O S . + | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | . + = . . | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: |.oo.+ | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | o=o.. | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: | .ooo. | 2026-03-08T23:57:43.128 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: +----[SHA256]-----+ 2026-03-08T23:57:43.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:43.418 INFO:teuthology.orchestra.run.vm02.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-03-08T23:57:43.418 INFO:teuthology.orchestra.run.vm02.stdout:Adding key to root@localhost authorized_keys... 2026-03-08T23:57:43.418 INFO:teuthology.orchestra.run.vm02.stdout:Adding host vm02... 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='client.14130 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:42] ENGINE Bus STARTING 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:43.643 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:43 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:42] ENGINE Serving on https://192.168.123.102:7150 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:42] ENGINE Client ('192.168.123.102', 55306) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:43] ENGINE Serving on http://192.168.123.102:8765 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:43] ENGINE Bus STARTED 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: Generating ssh key... 2026-03-08T23:57:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm02", "addr": "192.168.123.102", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:44 vm02 ceph-mon[50886]: mgrmap e7: a(active, since 2s) 2026-03-08T23:57:45.276 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Added host 'vm02' with addr '192.168.123.102' 2026-03-08T23:57:45.276 INFO:teuthology.orchestra.run.vm02.stdout:Deploying unmanaged mon service... 2026-03-08T23:57:45.832 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:45 vm02 ceph-mon[50886]: Deploying cephadm binary to vm02 2026-03-08T23:57:45.832 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:45 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:45.832 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:45 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:45.832 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:45 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:45.839 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-03-08T23:57:45.839 INFO:teuthology.orchestra.run.vm02.stdout:Deploying unmanaged mgr service... 2026-03-08T23:57:46.118 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-03-08T23:57:46.668 INFO:teuthology.orchestra.run.vm02.stdout:Enabling the dashboard module... 2026-03-08T23:57:46.879 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:46 vm02 ceph-mon[50886]: Added host vm02 2026-03-08T23:57:46.879 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:46 vm02 ceph-mon[50886]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:46.879 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:46 vm02 ceph-mon[50886]: Saving service mon spec with placement count:5 2026-03-08T23:57:46.879 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:46 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:46.879 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:46 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3854800900' entity='client.admin' 2026-03-08T23:57:46.879 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:46 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/1663508543' entity='client.admin' 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: Saving service mgr spec with placement count:2 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2786303678' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.vm02", "caps": []}]: dispatch 2026-03-08T23:57:47.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-mon[50886]: from='mgr.14118 192.168.123.102:0/2461559181' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.vm02", "caps": []}]': finished 2026-03-08T23:57:48.222 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: ignoring --setuser ceph since I am not root 2026-03-08T23:57:48.222 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:47 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: ignoring --setgroup ceph since I am not root 2026-03-08T23:57:48.222 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:48.045+0000 7ff34d560140 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2026-03-08T23:57:48.222 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:48.102+0000 7ff34d560140 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2026-03-08T23:57:48.254 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:48.254 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 8, 2026-03-08T23:57:48.254 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": true, 2026-03-08T23:57:48.254 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-03-08T23:57:48.254 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-03-08T23:57:48.255 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:48.255 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for the mgr to restart... 2026-03-08T23:57:48.255 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr epoch 8... 2026-03-08T23:57:48.865 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:48.576+0000 7ff34d560140 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2786303678' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-mon[50886]: mgrmap e8: a(active, since 6s) 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/1024218415' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:48.908+0000 7ff34d560140 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: from numpy import show_config as show_numpy_config 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.001+0000 7ff34d560140 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.041+0000 7ff34d560140 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2026-03-08T23:57:49.117 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.116+0000 7ff34d560140 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2026-03-08T23:57:49.921 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.646+0000 7ff34d560140 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2026-03-08T23:57:49.921 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.762+0000 7ff34d560140 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:57:49.921 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.802+0000 7ff34d560140 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2026-03-08T23:57:49.921 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.835+0000 7ff34d560140 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2026-03-08T23:57:49.921 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.881+0000 7ff34d560140 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2026-03-08T23:57:49.922 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:49.920+0000 7ff34d560140 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2026-03-08T23:57:50.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.098+0000 7ff34d560140 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2026-03-08T23:57:50.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.152+0000 7ff34d560140 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2026-03-08T23:57:50.688 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.381+0000 7ff34d560140 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2026-03-08T23:57:50.688 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.687+0000 7ff34d560140 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2026-03-08T23:57:50.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.726+0000 7ff34d560140 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2026-03-08T23:57:50.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.772+0000 7ff34d560140 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2026-03-08T23:57:50.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.855+0000 7ff34d560140 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2026-03-08T23:57:50.977 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.895+0000 7ff34d560140 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2026-03-08T23:57:51.241 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:50.979+0000 7ff34d560140 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2026-03-08T23:57:51.241 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:51.097+0000 7ff34d560140 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:57:51.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: Active manager daemon a restarted 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: Activating manager daemon a 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: osdmap e3: 0 total, 0 up, 0 in 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: mgrmap e9: a(active, starting, since 0.0494618s) 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "a", "id": "a"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mds metadata"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: Manager daemon a is now available 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"}]: dispatch 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:51.240+0000 7ff34d560140 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2026-03-08T23:57:51.727 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:57:51 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:57:51.281+0000 7ff34d560140 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2026-03-08T23:57:52.380 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-08T23:57:52.380 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 10, 2026-03-08T23:57:52.380 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "initialized": true 2026-03-08T23:57:52.380 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-08T23:57:52.380 INFO:teuthology.orchestra.run.vm02.stdout:mgr epoch 8 is available 2026-03-08T23:57:52.380 INFO:teuthology.orchestra.run.vm02.stdout:Generating a dashboard self-signed certificate... 2026-03-08T23:57:52.673 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"}]: dispatch 2026-03-08T23:57:52.673 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:52.673 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:57:52.673 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:52.673 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.vm02", "caps": []}]: dispatch 2026-03-08T23:57:52.673 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:52 vm02 ceph-mon[50886]: mgrmap e10: a(active, since 1.05305s) 2026-03-08T23:57:52.722 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Self-signed certificate created 2026-03-08T23:57:52.722 INFO:teuthology.orchestra.run.vm02.stdout:Creating initial admin user... 2026-03-08T23:57:53.138 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$7ZWEAAWe7YwH9BsRqF9FHenDI0r1Ej1sPoX7V2QBCZRJu80GlfjZ.", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1773014273, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-03-08T23:57:53.138 INFO:teuthology.orchestra.run.vm02.stdout:Fetching dashboard port number... 2026-03-08T23:57:53.385 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 8443 2026-03-08T23:57:53.385 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-08T23:57:53.385 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout:Ceph Dashboard is now available at: 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout: URL: https://vm02.local:8443/ 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout: User: admin 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout: Password: 8xibkjbizz 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:53.386 INFO:teuthology.orchestra.run.vm02.stdout:Saving cluster configuration to /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config directory 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: Deploying daemon agent.vm02 on vm02 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:52] ENGINE Bus STARTING 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:52] ENGINE Serving on https://192.168.123.102:7150 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:52] ENGINE Client ('192.168.123.102', 42996) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:52] ENGINE Serving on http://192.168.123.102:8765 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: [08/Mar/2026:23:57:52] ENGINE Bus STARTED 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: from='client.14162 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:54.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:54 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3898607176' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout:Or, if you are only running a single cluster on this host: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout:Please consider enabling telemetry to help improve Ceph: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: ceph telemetry on 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout:For more information see: 2026-03-08T23:57:54.279 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.280 INFO:teuthology.orchestra.run.vm02.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-03-08T23:57:54.280 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:54.280 INFO:teuthology.orchestra.run.vm02.stdout:Bootstrap complete. 2026-03-08T23:57:54.314 INFO:tasks.cephadm:Fetching config... 2026-03-08T23:57:54.315 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:57:54.315 DEBUG:teuthology.orchestra.run.vm02:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-03-08T23:57:54.338 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-03-08T23:57:54.338 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:57:54.338 DEBUG:teuthology.orchestra.run.vm02:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-03-08T23:57:54.405 INFO:tasks.cephadm:Fetching mon keyring... 2026-03-08T23:57:54.405 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:57:54.405 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/keyring of=/dev/stdout 2026-03-08T23:57:54.488 INFO:tasks.cephadm:Fetching pub ssh key... 2026-03-08T23:57:54.488 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:57:54.488 DEBUG:teuthology.orchestra.run.vm02:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-03-08T23:57:54.558 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-03-08T23:57:54.558 DEBUG:teuthology.orchestra.run.vm02:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-03-08T23:57:54.684 INFO:teuthology.orchestra.run.vm02.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:54.704 DEBUG:teuthology.orchestra.run.vm05:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-03-08T23:57:54.747 INFO:teuthology.orchestra.run.vm05.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:54.760 DEBUG:teuthology.orchestra.run.vm09:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-03-08T23:57:54.799 INFO:teuthology.orchestra.run.vm09.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAII+/ikHjHjPW3WyyOJ9/DZyapmo8b7PbhQIHPYpctr4x ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:57:54.811 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-03-08T23:57:55.083 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3055044893' entity='client.admin' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: mgrmap e11: a(active, since 2s) 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:55.359 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:55.572 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-03-08T23:57:55.572 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-03-08T23:57:55.891 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:57:56.348 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:56.348 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:56 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3113777902' entity='client.admin' 2026-03-08T23:57:56.348 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:56.348 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:56.730 INFO:tasks.cephadm:Writing (initial) conf and keyring to vm05 2026-03-08T23:57:56.730 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:57:56.730 DEBUG:teuthology.orchestra.run.vm05:> dd of=/etc/ceph/ceph.conf 2026-03-08T23:57:56.747 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:57:56.748 DEBUG:teuthology.orchestra.run.vm05:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:57:56.807 INFO:tasks.cephadm:Adding host vm05 to orchestrator... 2026-03-08T23:57:56.807 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch host add vm05 2026-03-08T23:57:57.089 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='client.14172 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: Updating vm02:/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.client.admin.keyring 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: from='client.14174 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm05", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: Deploying cephadm binary to vm05 2026-03-08T23:57:58.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:58 vm02 ceph-mon[50886]: mgrmap e12: a(active, since 7s) 2026-03-08T23:57:58.938 INFO:teuthology.orchestra.run.vm02.stdout:Added host 'vm05' with addr '192.168.123.105' 2026-03-08T23:57:58.994 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch host ls --format=json 2026-03-08T23:57:59.188 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:57:59.449 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:57:59.449 INFO:teuthology.orchestra.run.vm02.stdout:[{"addr": "192.168.123.102", "hostname": "vm02", "labels": [], "status": ""}, {"addr": "192.168.123.105", "hostname": "vm05", "labels": [], "status": ""}] 2026-03-08T23:57:59.534 INFO:tasks.cephadm:Writing (initial) conf and keyring to vm09 2026-03-08T23:57:59.534 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:57:59.534 DEBUG:teuthology.orchestra.run.vm09:> dd of=/etc/ceph/ceph.conf 2026-03-08T23:57:59.552 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:57:59.552 DEBUG:teuthology.orchestra.run.vm09:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:57:59.611 INFO:tasks.cephadm:Adding host vm09 to orchestrator... 2026-03-08T23:57:59.612 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch host add vm09 2026-03-08T23:57:59.806 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:00.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: Added host vm05 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.vm05", "caps": []}]: dispatch 2026-03-08T23:58:00.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:57:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.vm05", "caps": []}]': finished 2026-03-08T23:58:01.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:00 vm02 ceph-mon[50886]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:58:01.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:00 vm02 ceph-mon[50886]: from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:58:01.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:00 vm02 ceph-mon[50886]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:01.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:00 vm02 ceph-mon[50886]: Updating vm05:/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:58:01.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:00 vm02 ceph-mon[50886]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.client.admin.keyring 2026-03-08T23:58:01.696 INFO:teuthology.orchestra.run.vm02.stdout:Added host 'vm09' with addr '192.168.123.109' 2026-03-08T23:58:01.770 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch host ls --format=json 2026-03-08T23:58:01.971 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: Deploying cephadm binary to vm09 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: Deploying daemon agent.vm05 on vm05 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:01.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:01.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:01 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:02.228 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:58:02.228 INFO:teuthology.orchestra.run.vm02.stdout:[{"addr": "192.168.123.102", "hostname": "vm02", "labels": [], "status": ""}, {"addr": "192.168.123.105", "hostname": "vm05", "labels": [], "status": ""}, {"addr": "192.168.123.109", "hostname": "vm09", "labels": [], "status": ""}] 2026-03-08T23:58:02.297 INFO:tasks.cephadm:Setting crush tunables to default 2026-03-08T23:58:02.297 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd crush tunables default 2026-03-08T23:58:02.488 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: Added host vm09 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm09", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "client.agent.vm09", "caps": []}]: dispatch 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "client.agent.vm09", "caps": []}]': finished 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3653768569' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2026-03-08T23:58:03.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:03.616 INFO:teuthology.orchestra.run.vm02.stderr:adjusted tunables profile to default 2026-03-08T23:58:03.687 INFO:tasks.cephadm:Adding mon.a on vm02 2026-03-08T23:58:03.687 INFO:tasks.cephadm:Adding mon.b on vm05 2026-03-08T23:58:03.687 INFO:tasks.cephadm:Adding mon.c on vm09 2026-03-08T23:58:03.687 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch apply mon '3;vm02:192.168.123.102=a;vm05:192.168.123.105=b;vm09:192.168.123.109=c' 2026-03-08T23:58:03.938 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: Updating vm09:/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.client.admin.keyring 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3653768569' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:04.257 INFO:teuthology.orchestra.run.vm09.stdout:Scheduled mon update... 2026-03-08T23:58:04.355 DEBUG:teuthology.orchestra.run.vm05:mon.b> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.b.service 2026-03-08T23:58:04.357 DEBUG:teuthology.orchestra.run.vm09:mon.c> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.c.service 2026-03-08T23:58:04.359 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-03-08T23:58:04.359 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph mon dump -f json 2026-03-08T23:58:04.758 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:05.105 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:58:05.105 INFO:teuthology.orchestra.run.vm09.stdout:{"epoch":1,"fsid":"5b0a27d4-1b4a-11f1-9a7f-35684a443fe9","modified":"2026-03-08T23:57:28.492803Z","created":"2026-03-08T23:57:28.492803Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:3300","nonce":0},{"type":"v1","addr":"192.168.123.102:6789","nonce":0}]},"addr":"192.168.123.102:6789/0","public_addr":"192.168.123.102:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-03-08T23:58:05.107 INFO:teuthology.orchestra.run.vm09.stderr:dumped monmap epoch 1 2026-03-08T23:58:05.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: Deploying daemon agent.vm09 on vm09 2026-03-08T23:58:05.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:05.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:05.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:05.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:05.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:05.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:05.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:05.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:58:05.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:06.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:05 vm02 ceph-mon[50886]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;vm02:192.168.123.102=a;vm05:192.168.123.105=b;vm09:192.168.123.109=c", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:06.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:05 vm02 ceph-mon[50886]: Saving service mon spec with placement vm02:192.168.123.102=a;vm05:192.168.123.105=b;vm09:192.168.123.109=c;count:3 2026-03-08T23:58:06.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:05 vm02 ceph-mon[50886]: Deploying daemon mon.c on vm09 2026-03-08T23:58:06.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:05 vm02 ceph-mon[50886]: from='client.? 192.168.123.109:0/3409181341' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2026-03-08T23:58:06.309 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-03-08T23:58:06.309 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph mon dump -f json 2026-03-08T23:58:06.543 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:58:08.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:07 vm05 ceph-mon[78959]: mon.b@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2026-03-08T23:58:11.291 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:58:11.291 INFO:teuthology.orchestra.run.vm09.stdout:{"epoch":2,"fsid":"5b0a27d4-1b4a-11f1-9a7f-35684a443fe9","modified":"2026-03-08T23:58:06.074057Z","created":"2026-03-08T23:57:28.492803Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:3300","nonce":0},{"type":"v1","addr":"192.168.123.102:6789","nonce":0}]},"addr":"192.168.123.102:6789/0","public_addr":"192.168.123.102:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:3300","nonce":0},{"type":"v1","addr":"192.168.123.109:6789","nonce":0}]},"addr":"192.168.123.109:6789/0","public_addr":"192.168.123.109:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2026-03-08T23:58:11.291 INFO:teuthology.orchestra.run.vm09.stderr:dumped monmap epoch 2 2026-03-08T23:58:11.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: Deploying daemon mon.b on vm05 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: mon.a calling monitor election 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: mon.c calling monitor election 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: monmap epoch 2 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: last_changed 2026-03-08T23:58:06.074057+0000 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: min_mon_release 19 (squid) 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: election_strategy: 1 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: 1: [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] mon.c 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: fsmap 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: mgrmap e12: a(active, since 19s) 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: overall HEALTH_OK 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:11.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: Deploying daemon mon.b on vm05 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: mon.a calling monitor election 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: mon.c calling monitor election 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:12.262 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: monmap epoch 2 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: last_changed 2026-03-08T23:58:06.074057+0000 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: min_mon_release 19 (squid) 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: election_strategy: 1 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: 1: [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] mon.c 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: fsmap 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: mgrmap e12: a(active, since 19s) 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: overall HEALTH_OK 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.263 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:12.348 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-03-08T23:58:12.348 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph mon dump -f json 2026-03-08T23:58:12.476 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:58:12 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:58:12.073+0000 7ff3198c1640 -1 mgr.server handle_report got status from non-daemon mon.c 2026-03-08T23:58:12.566 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:58:17.295 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:58:17.296 INFO:teuthology.orchestra.run.vm09.stdout:{"epoch":3,"fsid":"5b0a27d4-1b4a-11f1-9a7f-35684a443fe9","modified":"2026-03-08T23:58:11.894609Z","created":"2026-03-08T23:57:28.492803Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:3300","nonce":0},{"type":"v1","addr":"192.168.123.102:6789","nonce":0}]},"addr":"192.168.123.102:6789/0","public_addr":"192.168.123.102:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:3300","nonce":0},{"type":"v1","addr":"192.168.123.109:6789","nonce":0}]},"addr":"192.168.123.109:6789/0","public_addr":"192.168.123.109:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:3300","nonce":0},{"type":"v1","addr":"192.168.123.105:6789","nonce":0}]},"addr":"192.168.123.105:6789/0","public_addr":"192.168.123.105:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2026-03-08T23:58:17.296 INFO:teuthology.orchestra.run.vm09.stderr:dumped monmap epoch 3 2026-03-08T23:58:17.366 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-03-08T23:58:17.366 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph config generate-minimal-conf 2026-03-08T23:58:17.396 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Reconfiguring mon.a (unknown last config time)... 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: Reconfiguring daemon mon.a on vm02 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: mon.a calling monitor election 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: mon.c calling monitor election 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: monmap epoch 3 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: last_changed 2026-03-08T23:58:11.894609+0000 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: min_mon_release 19 (squid) 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: election_strategy: 1 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: 1: [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] mon.c 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: 2: [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] mon.b 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: fsmap 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: mgrmap e12: a(active, since 25s) 2026-03-08T23:58:17.397 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:17 vm02 ceph-mon[50886]: overall HEALTH_OK 2026-03-08T23:58:17.584 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:17.884 INFO:teuthology.orchestra.run.vm02.stdout:# minimal ceph.conf for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:17.884 INFO:teuthology.orchestra.run.vm02.stdout:[global] 2026-03-08T23:58:17.884 INFO:teuthology.orchestra.run.vm02.stdout: fsid = 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:17.884 INFO:teuthology.orchestra.run.vm02.stdout: mon_host = [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] 2026-03-08T23:58:17.948 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-03-08T23:58:17.948 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:58:17.948 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/ceph/ceph.conf 2026-03-08T23:58:18.020 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:58:18.020 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:58:18.091 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:58:18.091 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/etc/ceph/ceph.conf 2026-03-08T23:58:18.121 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:58:18.121 DEBUG:teuthology.orchestra.run.vm05:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:58:18.187 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:58:18.187 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/etc/ceph/ceph.conf 2026-03-08T23:58:18.220 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:58:18.220 DEBUG:teuthology.orchestra.run.vm09:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:58:18.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Reconfiguring mon.b (monmap changed)... 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Reconfiguring daemon mon.b on vm05 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='client.? 192.168.123.109:0/1903990132' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:18.228 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/132906583' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.229 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:18.286 INFO:tasks.cephadm:Adding mgr.a on vm02 2026-03-08T23:58:18.286 INFO:tasks.cephadm:Adding mgr.b on vm05 2026-03-08T23:58:18.286 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch apply mgr '2;vm02=a;vm05=b' 2026-03-08T23:58:18.516 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:58:18.772 INFO:teuthology.orchestra.run.vm09.stdout:Scheduled mgr update... 2026-03-08T23:58:18.842 DEBUG:teuthology.orchestra.run.vm05:mgr.b> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.b.service 2026-03-08T23:58:18.844 INFO:tasks.cephadm:Deploying OSDs... 2026-03-08T23:58:18.844 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-08T23:58:18.844 DEBUG:teuthology.orchestra.run.vm02:> dd if=/scratch_devs of=/dev/stdout 2026-03-08T23:58:18.864 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:58:18.864 DEBUG:teuthology.orchestra.run.vm02:> ls /dev/[sv]d? 2026-03-08T23:58:18.923 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vda 2026-03-08T23:58:18.923 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vdb 2026-03-08T23:58:18.923 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vdc 2026-03-08T23:58:18.923 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vdd 2026-03-08T23:58:18.923 INFO:teuthology.orchestra.run.vm02.stdout:/dev/vde 2026-03-08T23:58:18.923 WARNING:teuthology.misc:Removing root device: /dev/vda from device list 2026-03-08T23:58:18.923 DEBUG:teuthology.misc:devs=['/dev/vdb', '/dev/vdc', '/dev/vdd', '/dev/vde'] 2026-03-08T23:58:18.923 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vdb 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vdb 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 223 Links: 1 Device type: fc,10 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 23:58:15.827171253 +0000 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 23:54:52.792589848 +0000 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 23:54:52.792589848 +0000 2026-03-08T23:58:18.986 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-08 23:40:43.240000000 +0000 2026-03-08T23:58:18.986 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vdb of=/dev/null count=1 2026-03-08T23:58:19.052 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T23:58:19.052 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T23:58:19.052 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000198752 s, 2.6 MB/s 2026-03-08T23:58:19.054 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vdb 2026-03-08T23:58:19.111 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vdc 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Reconfiguring mon.a (unknown last config time)... 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Reconfiguring daemon mon.a on vm02 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: mon.a calling monitor election 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: mon.c calling monitor election 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: monmap epoch 3 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: last_changed 2026-03-08T23:58:11.894609+0000 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: min_mon_release 19 (squid) 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: election_strategy: 1 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: 1: [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] mon.c 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: 2: [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] mon.b 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: fsmap 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: mgrmap e12: a(active, since 25s) 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: overall HEALTH_OK 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Reconfiguring mon.b (monmap changed)... 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Reconfiguring daemon mon.b on vm05 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='client.? 192.168.123.109:0/1903990132' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/132906583' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.126 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vdc 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 224 Links: 1 Device type: fc,20 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 23:58:15.831171256 +0000 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 23:54:52.787589844 +0000 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 23:54:52.787589844 +0000 2026-03-08T23:58:19.167 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-08 23:40:43.243000000 +0000 2026-03-08T23:58:19.167 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vdc of=/dev/null count=1 2026-03-08T23:58:19.229 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T23:58:19.229 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T23:58:19.230 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000141115 s, 3.6 MB/s 2026-03-08T23:58:19.231 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vdc 2026-03-08T23:58:19.289 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vdd 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vdd 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 225 Links: 1 Device type: fc,30 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 23:58:15.835171260 +0000 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 23:54:52.795589851 +0000 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 23:54:52.795589851 +0000 2026-03-08T23:58:19.348 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-08 23:40:43.249000000 +0000 2026-03-08T23:58:19.349 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vdd of=/dev/null count=1 2026-03-08T23:58:19.414 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T23:58:19.414 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T23:58:19.414 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.00018152 s, 2.8 MB/s 2026-03-08T23:58:19.416 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vdd 2026-03-08T23:58:19.473 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vde 2026-03-08T23:58:19.531 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vde 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 229 Links: 1 Device type: fc,40 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-08 23:58:15.839171264 +0000 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-08 23:54:52.780589838 +0000 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-08 23:54:52.780589838 +0000 2026-03-08T23:58:19.532 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-08 23:40:43.265000000 +0000 2026-03-08T23:58:19.532 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vde of=/dev/null count=1 2026-03-08T23:58:19.599 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-08T23:58:19.599 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-08T23:58:19.599 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000168856 s, 3.0 MB/s 2026-03-08T23:58:19.600 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vde 2026-03-08T23:58:19.659 DEBUG:teuthology.orchestra.run.vm05:> set -ex 2026-03-08T23:58:19.659 DEBUG:teuthology.orchestra.run.vm05:> dd if=/scratch_devs of=/dev/stdout 2026-03-08T23:58:19.681 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:58:19.681 DEBUG:teuthology.orchestra.run.vm05:> ls /dev/[sv]d? 2026-03-08T23:58:19.683 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:19.681+0000 7f2421619140 -1 mgr[py] Module alerts has missing NOTIFY_TYPES member 2026-03-08T23:58:19.704 INFO:teuthology.orchestra.run.vm05.stdout:/dev/vda 2026-03-08T23:58:19.704 INFO:teuthology.orchestra.run.vm05.stdout:/dev/vdb 2026-03-08T23:58:19.704 INFO:teuthology.orchestra.run.vm05.stdout:/dev/vdc 2026-03-08T23:58:19.704 INFO:teuthology.orchestra.run.vm05.stdout:/dev/vdd 2026-03-08T23:58:19.704 INFO:teuthology.orchestra.run.vm05.stdout:/dev/vde 2026-03-08T23:58:19.704 WARNING:teuthology.misc:Removing root device: /dev/vda from device list 2026-03-08T23:58:19.704 DEBUG:teuthology.misc:devs=['/dev/vdb', '/dev/vdc', '/dev/vdd', '/dev/vde'] 2026-03-08T23:58:19.704 DEBUG:teuthology.orchestra.run.vm05:> stat /dev/vdb 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout: File: /dev/vdb 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout:Device: 6h/6d Inode: 223 Links: 1 Device type: fc,10 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout:Access: 2026-03-08 23:58:13.129119655 +0000 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout:Modify: 2026-03-08 23:54:52.737776586 +0000 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout:Change: 2026-03-08 23:54:52.737776586 +0000 2026-03-08T23:58:19.773 INFO:teuthology.orchestra.run.vm05.stdout: Birth: 2026-03-08 23:41:14.314000000 +0000 2026-03-08T23:58:19.774 DEBUG:teuthology.orchestra.run.vm05:> sudo dd if=/dev/vdb of=/dev/null count=1 2026-03-08T23:58:19.842 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records in 2026-03-08T23:58:19.842 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records out 2026-03-08T23:58:19.842 INFO:teuthology.orchestra.run.vm05.stderr:512 bytes copied, 0.000190336 s, 2.7 MB/s 2026-03-08T23:58:19.843 DEBUG:teuthology.orchestra.run.vm05:> ! mount | grep -v devtmpfs | grep -q /dev/vdb 2026-03-08T23:58:19.907 DEBUG:teuthology.orchestra.run.vm05:> stat /dev/vdc 2026-03-08T23:58:19.974 INFO:teuthology.orchestra.run.vm05.stdout: File: /dev/vdc 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout:Device: 6h/6d Inode: 254 Links: 1 Device type: fc,20 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout:Access: 2026-03-08 23:58:13.133119659 +0000 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout:Modify: 2026-03-08 23:54:52.691776547 +0000 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout:Change: 2026-03-08 23:54:52.691776547 +0000 2026-03-08T23:58:19.975 INFO:teuthology.orchestra.run.vm05.stdout: Birth: 2026-03-08 23:41:14.330000000 +0000 2026-03-08T23:58:19.975 DEBUG:teuthology.orchestra.run.vm05:> sudo dd if=/dev/vdc of=/dev/null count=1 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: mon.b calling monitor election 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: Reconfiguring mon.a (monmap changed)... 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: Reconfiguring daemon mon.a on vm02 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: Reconfiguring mon.c (monmap changed)... 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: Reconfiguring daemon mon.c on vm09 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;vm02=a;vm05=b", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: Saving service mgr spec with placement vm02=a;vm05=b;count:2 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: Deploying daemon mgr.b on vm05 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: mon.b calling monitor election 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: mon.c calling monitor election 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: mon.a calling monitor election 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: monmap epoch 3 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: last_changed 2026-03-08T23:58:11.894609+0000 2026-03-08T23:58:19.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: min_mon_release 19 (squid) 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: election_strategy: 1 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: 1: [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] mon.c 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: 2: [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] mon.b 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: fsmap 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: mgrmap e12: a(active, since 27s) 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: overall HEALTH_OK 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:19.990 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:19 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:19.732+0000 7f2421619140 -1 mgr[py] Module balancer has missing NOTIFY_TYPES member 2026-03-08T23:58:20.022 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records in 2026-03-08T23:58:20.022 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records out 2026-03-08T23:58:20.022 INFO:teuthology.orchestra.run.vm05.stderr:512 bytes copied, 0.000145773 s, 3.5 MB/s 2026-03-08T23:58:20.023 DEBUG:teuthology.orchestra.run.vm05:> ! mount | grep -v devtmpfs | grep -q /dev/vdc 2026-03-08T23:58:20.032 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: mon.b calling monitor election 2026-03-08T23:58:20.032 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: Reconfiguring mon.a (monmap changed)... 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: Reconfiguring daemon mon.a on vm02 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: Reconfiguring mon.c (monmap changed)... 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: Reconfiguring daemon mon.c on vm09 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;vm02=a;vm05=b", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: Saving service mgr spec with placement vm02=a;vm05=b;count:2 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: Deploying daemon mgr.b on vm05 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: mon.b calling monitor election 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: mon.c calling monitor election 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: mon.a calling monitor election 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: monmap epoch 3 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: last_changed 2026-03-08T23:58:11.894609+0000 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: min_mon_release 19 (squid) 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: election_strategy: 1 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: 1: [v2:192.168.123.109:3300/0,v1:192.168.123.109:6789/0] mon.c 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: 2: [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] mon.b 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: fsmap 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: osdmap e4: 0 total, 0 up, 0 in 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: mgrmap e12: a(active, since 27s) 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: overall HEALTH_OK 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:20.033 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.087 DEBUG:teuthology.orchestra.run.vm05:> stat /dev/vdd 2026-03-08T23:58:20.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:19 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout: File: /dev/vdd 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout:Device: 6h/6d Inode: 256 Links: 1 Device type: fc,30 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout:Access: 2026-03-08 23:58:13.136119662 +0000 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout:Modify: 2026-03-08 23:54:52.681776538 +0000 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout:Change: 2026-03-08 23:54:52.681776538 +0000 2026-03-08T23:58:20.168 INFO:teuthology.orchestra.run.vm05.stdout: Birth: 2026-03-08 23:41:14.344000000 +0000 2026-03-08T23:58:20.168 DEBUG:teuthology.orchestra.run.vm05:> sudo dd if=/dev/vdd of=/dev/null count=1 2026-03-08T23:58:20.243 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records in 2026-03-08T23:58:20.243 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records out 2026-03-08T23:58:20.243 INFO:teuthology.orchestra.run.vm05.stderr:512 bytes copied, 0.000141504 s, 3.6 MB/s 2026-03-08T23:58:20.244 DEBUG:teuthology.orchestra.run.vm05:> ! mount | grep -v devtmpfs | grep -q /dev/vdd 2026-03-08T23:58:20.308 DEBUG:teuthology.orchestra.run.vm05:> stat /dev/vde 2026-03-08T23:58:20.385 INFO:teuthology.orchestra.run.vm05.stdout: File: /dev/vde 2026-03-08T23:58:20.385 INFO:teuthology.orchestra.run.vm05.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:20.385 INFO:teuthology.orchestra.run.vm05.stdout:Device: 6h/6d Inode: 257 Links: 1 Device type: fc,40 2026-03-08T23:58:20.385 INFO:teuthology.orchestra.run.vm05.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:20.385 INFO:teuthology.orchestra.run.vm05.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:20.386 INFO:teuthology.orchestra.run.vm05.stdout:Access: 2026-03-08 23:58:13.140119666 +0000 2026-03-08T23:58:20.386 INFO:teuthology.orchestra.run.vm05.stdout:Modify: 2026-03-08 23:54:52.717776569 +0000 2026-03-08T23:58:20.386 INFO:teuthology.orchestra.run.vm05.stdout:Change: 2026-03-08 23:54:52.717776569 +0000 2026-03-08T23:58:20.386 INFO:teuthology.orchestra.run.vm05.stdout: Birth: 2026-03-08 23:41:14.346000000 +0000 2026-03-08T23:58:20.386 DEBUG:teuthology.orchestra.run.vm05:> sudo dd if=/dev/vde of=/dev/null count=1 2026-03-08T23:58:20.471 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records in 2026-03-08T23:58:20.471 INFO:teuthology.orchestra.run.vm05.stderr:1+0 records out 2026-03-08T23:58:20.471 INFO:teuthology.orchestra.run.vm05.stderr:512 bytes copied, 0.000113713 s, 4.5 MB/s 2026-03-08T23:58:20.472 DEBUG:teuthology.orchestra.run.vm05:> ! mount | grep -v devtmpfs | grep -q /dev/vde 2026-03-08T23:58:20.507 DEBUG:teuthology.orchestra.run.vm09:> set -ex 2026-03-08T23:58:20.507 DEBUG:teuthology.orchestra.run.vm09:> dd if=/scratch_devs of=/dev/stdout 2026-03-08T23:58:20.523 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-08T23:58:20.523 DEBUG:teuthology.orchestra.run.vm09:> ls /dev/[sv]d? 2026-03-08T23:58:20.579 INFO:teuthology.orchestra.run.vm09.stdout:/dev/vda 2026-03-08T23:58:20.579 INFO:teuthology.orchestra.run.vm09.stdout:/dev/vdb 2026-03-08T23:58:20.579 INFO:teuthology.orchestra.run.vm09.stdout:/dev/vdc 2026-03-08T23:58:20.579 INFO:teuthology.orchestra.run.vm09.stdout:/dev/vdd 2026-03-08T23:58:20.579 INFO:teuthology.orchestra.run.vm09.stdout:/dev/vde 2026-03-08T23:58:20.579 WARNING:teuthology.misc:Removing root device: /dev/vda from device list 2026-03-08T23:58:20.579 DEBUG:teuthology.misc:devs=['/dev/vdb', '/dev/vdc', '/dev/vdd', '/dev/vde'] 2026-03-08T23:58:20.579 DEBUG:teuthology.orchestra.run.vm09:> stat /dev/vdb 2026-03-08T23:58:20.630 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:20.319+0000 7f2421619140 -1 mgr[py] Module crash has missing NOTIFY_TYPES member 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout: File: /dev/vdb 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout:Device: 6h/6d Inode: 221 Links: 1 Device type: fc,10 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout:Access: 2026-03-08 23:58:12.787263057 +0000 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout:Modify: 2026-03-08 23:54:52.486634375 +0000 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout:Change: 2026-03-08 23:54:52.486634375 +0000 2026-03-08T23:58:20.638 INFO:teuthology.orchestra.run.vm09.stdout: Birth: 2026-03-08 23:41:45.263000000 +0000 2026-03-08T23:58:20.639 DEBUG:teuthology.orchestra.run.vm09:> sudo dd if=/dev/vdb of=/dev/null count=1 2026-03-08T23:58:20.702 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records in 2026-03-08T23:58:20.703 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records out 2026-03-08T23:58:20.703 INFO:teuthology.orchestra.run.vm09.stderr:512 bytes copied, 0.000206306 s, 2.5 MB/s 2026-03-08T23:58:20.704 DEBUG:teuthology.orchestra.run.vm09:> ! mount | grep -v devtmpfs | grep -q /dev/vdb 2026-03-08T23:58:20.760 DEBUG:teuthology.orchestra.run.vm09:> stat /dev/vdc 2026-03-08T23:58:20.817 INFO:teuthology.orchestra.run.vm09.stdout: File: /dev/vdc 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout:Device: 6h/6d Inode: 255 Links: 1 Device type: fc,20 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout:Access: 2026-03-08 23:58:12.790263060 +0000 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout:Modify: 2026-03-08 23:54:52.507634392 +0000 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout:Change: 2026-03-08 23:54:52.507634392 +0000 2026-03-08T23:58:20.818 INFO:teuthology.orchestra.run.vm09.stdout: Birth: 2026-03-08 23:41:45.281000000 +0000 2026-03-08T23:58:20.818 DEBUG:teuthology.orchestra.run.vm09:> sudo dd if=/dev/vdc of=/dev/null count=1 2026-03-08T23:58:20.883 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records in 2026-03-08T23:58:20.883 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records out 2026-03-08T23:58:20.883 INFO:teuthology.orchestra.run.vm09.stderr:512 bytes copied, 0.000183554 s, 2.8 MB/s 2026-03-08T23:58:20.884 DEBUG:teuthology.orchestra.run.vm09:> ! mount | grep -v devtmpfs | grep -q /dev/vdc 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: Reconfiguring mgr.a (unknown last config time)... 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: Reconfiguring daemon mgr.a on vm02 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:20.920 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:20.921 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:20.795+0000 7f2421619140 -1 mgr[py] Module devicehealth has missing NOTIFY_TYPES member 2026-03-08T23:58:20.940 DEBUG:teuthology.orchestra.run.vm09:> stat /dev/vdd 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout: File: /dev/vdd 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout:Device: 6h/6d Inode: 256 Links: 1 Device type: fc,30 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout:Access: 2026-03-08 23:58:12.794263063 +0000 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout:Modify: 2026-03-08 23:54:52.505634390 +0000 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout:Change: 2026-03-08 23:54:52.505634390 +0000 2026-03-08T23:58:20.999 INFO:teuthology.orchestra.run.vm09.stdout: Birth: 2026-03-08 23:41:45.293000000 +0000 2026-03-08T23:58:21.000 DEBUG:teuthology.orchestra.run.vm09:> sudo dd if=/dev/vdd of=/dev/null count=1 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: Reconfiguring mgr.a (unknown last config time)... 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: Reconfiguring daemon mgr.a on vm02 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:21.061 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:20 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.062 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records in 2026-03-08T23:58:21.062 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records out 2026-03-08T23:58:21.062 INFO:teuthology.orchestra.run.vm09.stderr:512 bytes copied, 0.000124884 s, 4.1 MB/s 2026-03-08T23:58:21.063 DEBUG:teuthology.orchestra.run.vm09:> ! mount | grep -v devtmpfs | grep -q /dev/vdd 2026-03-08T23:58:21.126 DEBUG:teuthology.orchestra.run.vm09:> stat /dev/vde 2026-03-08T23:58:21.183 INFO:teuthology.orchestra.run.vm09.stdout: File: /dev/vde 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout: Size: 0 Blocks: 0 IO Block: 512 block special file 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout:Device: 6h/6d Inode: 257 Links: 1 Device type: fc,40 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout:Context: system_u:object_r:fixed_disk_device_t:s0 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout:Access: 2026-03-08 23:58:12.797263066 +0000 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout:Modify: 2026-03-08 23:54:52.527634407 +0000 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout:Change: 2026-03-08 23:54:52.527634407 +0000 2026-03-08T23:58:21.184 INFO:teuthology.orchestra.run.vm09.stdout: Birth: 2026-03-08 23:41:45.298000000 +0000 2026-03-08T23:58:21.184 DEBUG:teuthology.orchestra.run.vm09:> sudo dd if=/dev/vde of=/dev/null count=1 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: Reconfiguring mgr.a (unknown last config time)... 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: Reconfiguring daemon mgr.a on vm02 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:58:20 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:58:20.886+0000 7ff3198c1640 -1 mgr.server handle_report got status from non-daemon mon.b 2026-03-08T23:58:21.248 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records in 2026-03-08T23:58:21.248 INFO:teuthology.orchestra.run.vm09.stderr:1+0 records out 2026-03-08T23:58:21.248 INFO:teuthology.orchestra.run.vm09.stderr:512 bytes copied, 0.000168083 s, 3.0 MB/s 2026-03-08T23:58:21.252 DEBUG:teuthology.orchestra.run.vm09:> ! mount | grep -v devtmpfs | grep -q /dev/vde 2026-03-08T23:58:21.259 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: /lib64/python3.9/site-packages/scipy/__init__.py:73: UserWarning: NumPy was imported from a Python sub-interpreter but NumPy does not properly support sub-interpreters. This will likely work for most users but might cause hard to track down issues or subtle bugs. A common user of the rare sub-interpreter feature is wsgi which also allows single-interpreter mode. 2026-03-08T23:58:21.259 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: Improvements in the case of bugs are welcome, but is not on the NumPy roadmap, and full support may require significant effort to achieve. 2026-03-08T23:58:21.259 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: from numpy import show_config as show_numpy_config 2026-03-08T23:58:21.259 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:20.926+0000 7f2421619140 -1 mgr[py] Module diskprediction_local has missing NOTIFY_TYPES member 2026-03-08T23:58:21.259 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:20 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:20.975+0000 7f2421619140 -1 mgr[py] Module influx has missing NOTIFY_TYPES member 2026-03-08T23:58:21.259 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.102+0000 7f2421619140 -1 mgr[py] Module iostat has missing NOTIFY_TYPES member 2026-03-08T23:58:21.308 INFO:tasks.cephadm:Deploying osd.0 on vm02 with /dev/vde... 2026-03-08T23:58:21.308 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- lvm zap /dev/vde 2026-03-08T23:58:21.481 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.897 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.646+0000 7f2421619140 -1 mgr[py] Module nfs has missing NOTIFY_TYPES member 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.757+0000 7f2421619140 -1 mgr[py] Module orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.801+0000 7f2421619140 -1 mgr[py] Module osd_perf_query has missing NOTIFY_TYPES member 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.835+0000 7f2421619140 -1 mgr[py] Module osd_support has missing NOTIFY_TYPES member 2026-03-08T23:58:21.913 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.875+0000 7f2421619140 -1 mgr[py] Module pg_autoscaler has missing NOTIFY_TYPES member 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.311 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:58:22.329 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch daemon add osd vm02:/dev/vde 2026-03-08T23:58:22.348 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:21 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:21.912+0000 7f2421619140 -1 mgr[py] Module progress has missing NOTIFY_TYPES member 2026-03-08T23:58:22.348 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.075+0000 7f2421619140 -1 mgr[py] Module prometheus has missing NOTIFY_TYPES member 2026-03-08T23:58:22.348 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.124+0000 7f2421619140 -1 mgr[py] Module rbd_support has missing NOTIFY_TYPES member 2026-03-08T23:58:22.508 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:22.624 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.347+0000 7f2421619140 -1 mgr[py] Module rgw has missing NOTIFY_TYPES member 2026-03-08T23:58:22.790 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:22 vm02 ceph-mon[50886]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:22.790 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.790 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:22.790 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:22.790 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-mon[78959]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.623+0000 7f2421619140 -1 mgr[py] Module rook has missing NOTIFY_TYPES member 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.660+0000 7f2421619140 -1 mgr[py] Module selftest has missing NOTIFY_TYPES member 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.701+0000 7f2421619140 -1 mgr[py] Module snap_schedule has missing NOTIFY_TYPES member 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.777+0000 7f2421619140 -1 mgr[py] Module status has missing NOTIFY_TYPES member 2026-03-08T23:58:22.877 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.817+0000 7f2421619140 -1 mgr[py] Module telegraf has missing NOTIFY_TYPES member 2026-03-08T23:58:23.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:22 vm09 ceph-mon[52277]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:23.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:23.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:23.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:23.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:23.181 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:22 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:22.898+0000 7f2421619140 -1 mgr[py] Module telemetry has missing NOTIFY_TYPES member 2026-03-08T23:58:23.181 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:23.010+0000 7f2421619140 -1 mgr[py] Module test_orchestrator has missing NOTIFY_TYPES member 2026-03-08T23:58:23.181 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:23.143+0000 7f2421619140 -1 mgr[py] Module volumes has missing NOTIFY_TYPES member 2026-03-08T23:58:23.627 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-b[80390]: 2026-03-08T23:58:23.180+0000 7f2421619140 -1 mgr[py] Module zabbix has missing NOTIFY_TYPES member 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='client.14220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: Standby manager daemon b started 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3397554045' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69"}]: dispatch 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3397554045' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69"}]': finished 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: osdmap e5: 1 total, 0 up, 1 in 2026-03-08T23:58:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:23 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='client.14220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: Standby manager daemon b started 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/3397554045' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69"}]: dispatch 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/3397554045' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69"}]': finished 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: osdmap e5: 1 total, 0 up, 1 in 2026-03-08T23:58:24.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:23 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='client.14220 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: Standby manager daemon b started 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/crt"}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/b/key"}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='mgr.? 192.168.123.105:0/3208425541' entity='mgr.b' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/3397554045' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69"}]: dispatch 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/3397554045' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69"}]': finished 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: osdmap e5: 1 total, 0 up, 1 in 2026-03-08T23:58:24.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:23 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:25.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:24 vm09 ceph-mon[52277]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:25.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:24 vm09 ceph-mon[52277]: mgrmap e13: a(active, since 32s), standbys: b 2026-03-08T23:58:25.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:24 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2026-03-08T23:58:25.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:24 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/3234793736' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:25.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:24 vm05 ceph-mon[78959]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:25.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:24 vm05 ceph-mon[78959]: mgrmap e13: a(active, since 32s), standbys: b 2026-03-08T23:58:25.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:24 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2026-03-08T23:58:25.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:24 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/3234793736' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:24 vm02 ceph-mon[50886]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:24 vm02 ceph-mon[50886]: mgrmap e13: a(active, since 32s), standbys: b 2026-03-08T23:58:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:24 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr metadata", "who": "b", "id": "b"}]: dispatch 2026-03-08T23:58:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:24 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3234793736' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:26.973 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:26 vm02 ceph-mon[50886]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:27.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:26 vm09 ceph-mon[52277]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:27.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:26 vm05 ceph-mon[78959]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:27.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:27 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2026-03-08T23:58:27.941 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:27 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:28.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:27 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2026-03-08T23:58:28.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:27 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:28.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:27 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2026-03-08T23:58:28.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:27 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:29.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:28 vm02 ceph-mon[50886]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:29.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:28 vm02 ceph-mon[50886]: Deploying daemon osd.0 on vm02 2026-03-08T23:58:29.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:28 vm09 ceph-mon[52277]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:29.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:28 vm09 ceph-mon[52277]: Deploying daemon osd.0 on vm02 2026-03-08T23:58:29.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:28 vm05 ceph-mon[78959]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:29.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:28 vm05 ceph-mon[78959]: Deploying daemon osd.0 on vm02 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.212 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:30 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.246 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:30 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.314 INFO:teuthology.orchestra.run.vm02.stdout:Created osd(s) 0 on host 'vm02' 2026-03-08T23:58:31.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:31.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:31.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:31.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:31.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:30 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:31.387 DEBUG:teuthology.orchestra.run.vm02:osd.0> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.0.service 2026-03-08T23:58:31.388 INFO:tasks.cephadm:Deploying osd.1 on vm02 with /dev/vdd... 2026-03-08T23:58:31.388 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- lvm zap /dev/vdd 2026-03-08T23:58:31.639 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:31.953 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:31 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0[59329]: 2026-03-08T23:58:31.877+0000 7f0fa3d34740 -1 osd.0 0 log_to_monitors true 2026-03-08T23:58:31.953 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:31.953 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:32.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:32.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:32.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:31 vm02 ceph-mon[50886]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]: dispatch 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:31 vm09 ceph-mon[52277]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]: dispatch 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:31 vm05 ceph-mon[78959]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]: dispatch 2026-03-08T23:58:32.465 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:58:32.496 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch daemon add osd vm02:/dev/vdd 2026-03-08T23:58:32.675 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: osdmap e6: 1 total, 0 up, 1 in 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]: dispatch 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.956 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:32.957 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:32.957 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:32.957 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:32 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: osdmap e6: 1 total, 0 up, 1 in 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]: dispatch 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:33.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:32 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: osdmap e6: 1 total, 0 up, 1 in 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]: dispatch 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:33.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:32 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:33.521 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0[59329]: 2026-03-08T23:58:33.327+0000 7f0f9fcb5640 -1 osd.0 0 waiting for initial osdmap 2026-03-08T23:58:33.521 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:33 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0[59329]: 2026-03-08T23:58:33.332+0000 7f0f9badf640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='client.24119 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: osdmap e7: 1 total, 0 up, 1 in 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/1868159301' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7f3ac22a-d315-4ba8-991b-b6d353749ced"}]: dispatch 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/1868159301' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7f3ac22a-d315-4ba8-991b-b6d353749ced"}]': finished 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259] boot 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: osdmap e8: 2 total, 1 up, 2 in 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.181 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='client.24119 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: osdmap e7: 1 total, 0 up, 1 in 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/1868159301' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7f3ac22a-d315-4ba8-991b-b6d353749ced"}]: dispatch 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/1868159301' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7f3ac22a-d315-4ba8-991b-b6d353749ced"}]': finished 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259] boot 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: osdmap e8: 2 total, 1 up, 2 in 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='client.24119 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: osdmap e7: 1 total, 0 up, 1 in 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/1868159301' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "7f3ac22a-d315-4ba8-991b-b6d353749ced"}]: dispatch 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/1868159301' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7f3ac22a-d315-4ba8-991b-b6d353749ced"}]': finished 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: osd.0 [v2:192.168.123.102:6802/1292313259,v1:192.168.123.102:6803/1292313259] boot 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: osdmap e8: 2 total, 1 up, 2 in 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2026-03-08T23:58:34.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:35.198 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:34 vm02 ceph-mon[50886]: purged_snaps scrub starts 2026-03-08T23:58:35.198 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:34 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:58:35.198 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:34 vm02 ceph-mon[50886]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:35.198 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:34 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/1458052599' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:35.198 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:34 vm02 ceph-mon[50886]: osdmap e9: 2 total, 1 up, 2 in 2026-03-08T23:58:35.198 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:35.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:34 vm09 ceph-mon[52277]: purged_snaps scrub starts 2026-03-08T23:58:35.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:34 vm09 ceph-mon[52277]: purged_snaps scrub ok 2026-03-08T23:58:35.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:34 vm09 ceph-mon[52277]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:35.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:34 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/1458052599' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:35.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:34 vm09 ceph-mon[52277]: osdmap e9: 2 total, 1 up, 2 in 2026-03-08T23:58:35.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:35.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:34 vm05 ceph-mon[78959]: purged_snaps scrub starts 2026-03-08T23:58:35.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:34 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:58:35.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:34 vm05 ceph-mon[78959]: pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-08T23:58:35.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:34 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/1458052599' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:35.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:34 vm05 ceph-mon[78959]: osdmap e9: 2 total, 1 up, 2 in 2026-03-08T23:58:35.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:36.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:36 vm02 ceph-mon[50886]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:36.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:36 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:36.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:36 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:36.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:36 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:37.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:36 vm09 ceph-mon[52277]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:37.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:36 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:37.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:36 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:37.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:36 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:37.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:36 vm05 ceph-mon[78959]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:37.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:36 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:37.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:36 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:37.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:36 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:38.938 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:38 vm02 ceph-mon[50886]: pgmap v22: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:38.939 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2026-03-08T23:58:38.939 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:38.939 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:38 vm02 ceph-mon[50886]: Deploying daemon osd.1 on vm02 2026-03-08T23:58:39.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:38 vm09 ceph-mon[52277]: pgmap v22: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:39.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:38 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2026-03-08T23:58:39.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:38 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:39.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:38 vm09 ceph-mon[52277]: Deploying daemon osd.1 on vm02 2026-03-08T23:58:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:38 vm05 ceph-mon[78959]: pgmap v22: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2026-03-08T23:58:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:38 vm05 ceph-mon[78959]: Deploying daemon osd.1 on vm02 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:40.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.068 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:41.068 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:41.068 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:41.069 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:41.069 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.069 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.069 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:40 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:41.194 INFO:teuthology.orchestra.run.vm02.stdout:Created osd(s) 1 on host 'vm02' 2026-03-08T23:58:41.257 DEBUG:teuthology.orchestra.run.vm02:osd.1> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.1.service 2026-03-08T23:58:41.258 INFO:tasks.cephadm:Deploying osd.2 on vm05 with /dev/vde... 2026-03-08T23:58:41.258 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- lvm zap /dev/vde 2026-03-08T23:58:41.454 INFO:teuthology.orchestra.run.vm05.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.b/config 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:42.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:42.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: pgmap v24: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:42.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:42 vm05 ceph-mon[78959]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]: dispatch 2026-03-08T23:58:42.272 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:58:42.288 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch daemon add osd vm05:/dev/vde 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: pgmap v24: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:42.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:42 vm09 ceph-mon[52277]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]: dispatch 2026-03-08T23:58:42.458 INFO:teuthology.orchestra.run.vm05.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.b/config 2026-03-08T23:58:42.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:42.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:42.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:42.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:42.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:42.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: pgmap v24: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:42.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:42 vm02 ceph-mon[50886]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]: dispatch 2026-03-08T23:58:42.477 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:42 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1[62392]: 2026-03-08T23:58:42.039+0000 7efcfa1fc740 -1 osd.1 0 log_to_monitors true 2026-03-08T23:58:43.224 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-08T23:58:43.476 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1[62392]: 2026-03-08T23:58:43.219+0000 7efcf617d640 -1 osd.1 0 waiting for initial osdmap 2026-03-08T23:58:43.476 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1[62392]: 2026-03-08T23:58:43.222+0000 7efcf1fa7640 -1 osd.1 11 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: osdmap e10: 2 total, 1 up, 2 in 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]: dispatch 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm05:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:43 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: osdmap e10: 2 total, 1 up, 2 in 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]: dispatch 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm05:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:43.490 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:43 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: osdmap e10: 2 total, 1 up, 2 in 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]: dispatch 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='client.24143 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm05:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:43.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:43 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: osdmap e11: 2 total, 1 up, 2 in 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: pgmap v27: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='client.? 192.168.123.105:0/609097366' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]': finished 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305] boot 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: osdmap e12: 3 total, 2 up, 3 in 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:44.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:44 vm09 ceph-mon[52277]: from='client.? 192.168.123.105:0/2489101017' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:44.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-08T23:58:44.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: osdmap e11: 2 total, 1 up, 2 in 2026-03-08T23:58:44.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: pgmap v27: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='client.? 192.168.123.105:0/609097366' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]: dispatch 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]: dispatch 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]': finished 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305] boot 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: osdmap e12: 3 total, 2 up, 3 in 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:44.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:44 vm05 ceph-mon[78959]: from='client.? 192.168.123.105:0/2489101017' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: osdmap e11: 2 total, 1 up, 2 in 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: pgmap v27: 0 pgs: ; 0 B data, 26 MiB used, 20 GiB / 20 GiB avail 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='client.? 192.168.123.105:0/609097366' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]: dispatch 2026-03-08T23:58:44.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]: dispatch 2026-03-08T23:58:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "25f89ee0-d595-4e7b-a1c0-46863634ac48"}]': finished 2026-03-08T23:58:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: osd.1 [v2:192.168.123.102:6810/2147804305,v1:192.168.123.102:6811/2147804305] boot 2026-03-08T23:58:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: osdmap e12: 3 total, 2 up, 3 in 2026-03-08T23:58:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2026-03-08T23:58:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:44.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:44 vm02 ceph-mon[50886]: from='client.? 192.168.123.105:0/2489101017' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:45.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:45 vm02 ceph-mon[50886]: purged_snaps scrub starts 2026-03-08T23:58:45.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:45 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:58:45.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:45 vm02 ceph-mon[50886]: osdmap e13: 3 total, 2 up, 3 in 2026-03-08T23:58:45.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:45 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:45.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:45 vm09 ceph-mon[52277]: purged_snaps scrub starts 2026-03-08T23:58:45.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:45 vm09 ceph-mon[52277]: purged_snaps scrub ok 2026-03-08T23:58:45.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:45 vm09 ceph-mon[52277]: osdmap e13: 3 total, 2 up, 3 in 2026-03-08T23:58:45.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:45 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:45.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:45 vm05 ceph-mon[78959]: purged_snaps scrub starts 2026-03-08T23:58:45.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:45 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:58:45.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:45 vm05 ceph-mon[78959]: osdmap e13: 3 total, 2 up, 3 in 2026-03-08T23:58:45.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:45 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:46.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:46 vm02 ceph-mon[50886]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:46.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:46 vm09 ceph-mon[52277]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:46.866 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:46 vm05 ceph-mon[78959]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:48.596 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:48 vm05 ceph-mon[78959]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:48.596 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:48 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2026-03-08T23:58:48.596 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:48 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:48.596 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:48 vm05 ceph-mon[78959]: Deploying daemon osd.2 on vm05 2026-03-08T23:58:48.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:48 vm02 ceph-mon[50886]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:48.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:48 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2026-03-08T23:58:48.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:48 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:48.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:48 vm02 ceph-mon[50886]: Deploying daemon osd.2 on vm05 2026-03-08T23:58:48.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:48 vm09 ceph-mon[52277]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:48.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:48 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2026-03-08T23:58:48.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:48 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:48.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:48 vm09 ceph-mon[52277]: Deploying daemon osd.2 on vm05 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:50 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:50.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:52.481 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:52 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:52.481 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:52 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:52.498 INFO:teuthology.orchestra.run.vm05.stdout:Created osd(s) 2 on host 'vm05' 2026-03-08T23:58:52.618 DEBUG:teuthology.orchestra.run.vm05:osd.2> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.2.service 2026-03-08T23:58:52.620 INFO:tasks.cephadm:Deploying osd.3 on vm05 with /dev/vdd... 2026-03-08T23:58:52.620 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- lvm zap /dev/vdd 2026-03-08T23:58:52.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:52.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:52.840 INFO:teuthology.orchestra.run.vm05.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.b/config 2026-03-08T23:58:52.865 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:52.866 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:58:53.535 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]: dispatch 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]: dispatch 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: osdmap e14: 3 total, 2 up, 3 in 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:58:53.536 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:53 vm05 ceph-mon[78959]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: osdmap e14: 3 total, 2 up, 3 in 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:58:53.553 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:53 vm09 ceph-mon[52277]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:58:53.610 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-08T23:58:53.627 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch daemon add osd vm05:/dev/vdd 2026-03-08T23:58:53.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:53.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]: dispatch 2026-03-08T23:58:53.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]: dispatch 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: osdmap e14: 3 total, 2 up, 3 in 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:58:53.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:53 vm02 ceph-mon[50886]: from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:58:53.816 INFO:teuthology.orchestra.run.vm05.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.b/config 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: purged_snaps scrub starts 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: pgmap v35: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]': finished 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: osdmap e15: 3 total, 2 up, 3 in 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:54.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:54 vm05 ceph-mon[78959]: from='osd.2 ' entity='osd.2' 2026-03-08T23:58:54.878 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 08 23:58:54 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2[83495]: 2026-03-08T23:58:54.607+0000 7fd9f80a3640 -1 osd.2 0 waiting for initial osdmap 2026-03-08T23:58:54.879 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 08 23:58:54 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2[83495]: 2026-03-08T23:58:54.619+0000 7fd9f2eb9640 -1 osd.2 15 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: purged_snaps scrub starts 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: pgmap v35: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]': finished 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: osdmap e15: 3 total, 2 up, 3 in 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:54 vm02 ceph-mon[50886]: from='osd.2 ' entity='osd.2' 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: purged_snaps scrub starts 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: purged_snaps scrub ok 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: pgmap v35: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm05", "root=default"]}]': finished 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: osdmap e15: 3 total, 2 up, 3 in 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:55.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:54 vm09 ceph-mon[52277]: from='osd.2 ' entity='osd.2' 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm05:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='client.? 192.168.123.105:0/215376053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d"}]: dispatch 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='client.? 192.168.123.105:0/215376053' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d"}]': finished 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179] boot 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: osdmap e16: 4 total, 3 up, 4 in 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='client.? 192.168.123.105:0/1849515552' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:55.947 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm05:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='client.? 192.168.123.105:0/215376053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d"}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='client.? 192.168.123.105:0/215376053' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d"}]': finished 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179] boot 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: osdmap e16: 4 total, 3 up, 4 in 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='client.? 192.168.123.105:0/1849515552' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:56.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:55 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:58:56.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='client.24170 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm05:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:58:56.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:56.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='client.? 192.168.123.105:0/215376053' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d"}]: dispatch 2026-03-08T23:58:56.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='client.? 192.168.123.105:0/215376053' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d"}]': finished 2026-03-08T23:58:56.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: osd.2 [v2:192.168.123.105:6800/3579265179,v1:192.168.123.105:6801/3579265179] boot 2026-03-08T23:58:56.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: osdmap e16: 4 total, 3 up, 4 in 2026-03-08T23:58:56.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2026-03-08T23:58:56.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:56.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='client.? 192.168.123.105:0/1849515552' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:58:56.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:58:57.098 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63559]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vde 2026-03-08T23:58:57.098 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63559]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-08T23:58:57.098 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63559]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-08T23:58:57.098 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63559]: pam_unix(sudo:session): session closed for user root 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: pgmap v38: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: Detected new or changed devices on vm02 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.098 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: osdmap e17: 4 total, 3 up, 4 in 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:57.099 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:56 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: pgmap v38: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: Detected new or changed devices on vm02 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: osdmap e17: 4 total, 3 up, 4 in 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:57.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:56 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: pgmap v38: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: Detected new or changed devices on vm02 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: osdmap e17: 4 total, 3 up, 4 in 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:58:57.124 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:58:57.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:58:57.125 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:56 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:58:57.125 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85174]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vde 2026-03-08T23:58:57.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85178]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vda 2026-03-08T23:58:57.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85178]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-08T23:58:57.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85178]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-08T23:58:57.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85178]: pam_unix(sudo:session): session closed for user root 2026-03-08T23:58:57.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85174]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-08T23:58:57.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85174]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-08T23:58:57.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 08 23:58:57 vm05 sudo[85174]: pam_unix(sudo:session): session closed for user root 2026-03-08T23:58:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63576]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vda 2026-03-08T23:58:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63576]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-08T23:58:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63576]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-08T23:58:57.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63576]: pam_unix(sudo:session): session closed for user root 2026-03-08T23:58:57.477 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63569]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vdd 2026-03-08T23:58:57.477 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63569]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-08T23:58:57.477 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63569]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-08T23:58:57.477 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 08 23:58:57 vm02 sudo[63569]: pam_unix(sudo:session): session closed for user root 2026-03-08T23:58:57.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:57 vm09 sudo[54893]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vda 2026-03-08T23:58:57.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:57 vm09 sudo[54893]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-08T23:58:57.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:57 vm09 sudo[54893]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-08T23:58:57.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:57 vm09 sudo[54893]: pam_unix(sudo:session): session closed for user root 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: osdmap e18: 4 total, 3 up, 4 in 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.354 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:58 vm05 ceph-mon[78959]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: osdmap e18: 4 total, 3 up, 4 in 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:58 vm09 ceph-mon[52277]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-03-08T23:58:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: osdmap e18: 4 total, 3 up, 4 in 2026-03-08T23:58:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "c"}]: dispatch 2026-03-08T23:58:58.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:58 vm02 ceph-mon[50886]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-08T23:58:59.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:59 vm09 ceph-mon[52277]: pgmap v41: 1 pgs: 1 unknown; 0 B data, 479 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:58:59.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:59 vm09 ceph-mon[52277]: osdmap e19: 4 total, 3 up, 4 in 2026-03-08T23:58:59.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:59 vm09 ceph-mon[52277]: mgrmap e14: a(active, since 66s), standbys: b 2026-03-08T23:58:59.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:58:59 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:59.374 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:59 vm05 ceph-mon[78959]: pgmap v41: 1 pgs: 1 unknown; 0 B data, 479 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:58:59.374 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:59 vm05 ceph-mon[78959]: osdmap e19: 4 total, 3 up, 4 in 2026-03-08T23:58:59.374 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:59 vm05 ceph-mon[78959]: mgrmap e14: a(active, since 66s), standbys: b 2026-03-08T23:58:59.374 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:58:59 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:58:59.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:59 vm02 ceph-mon[50886]: pgmap v41: 1 pgs: 1 unknown; 0 B data, 479 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:58:59.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:59 vm02 ceph-mon[50886]: osdmap e19: 4 total, 3 up, 4 in 2026-03-08T23:58:59.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:59 vm02 ceph-mon[50886]: mgrmap e14: a(active, since 66s), standbys: b 2026-03-08T23:58:59.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:58:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:00.145 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:00 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2026-03-08T23:59:00.145 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:00 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:00.145 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:00 vm05 ceph-mon[78959]: Deploying daemon osd.3 on vm05 2026-03-08T23:59:00.145 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:00 vm05 ceph-mon[78959]: pgmap v43: 1 pgs: 1 unknown; 0 B data, 480 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:00.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:00 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2026-03-08T23:59:00.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:00 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:00.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:00 vm09 ceph-mon[52277]: Deploying daemon osd.3 on vm05 2026-03-08T23:59:00.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:00 vm09 ceph-mon[52277]: pgmap v43: 1 pgs: 1 unknown; 0 B data, 480 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:00.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:00 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2026-03-08T23:59:00.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:00 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:00.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:00 vm02 ceph-mon[50886]: Deploying daemon osd.3 on vm05 2026-03-08T23:59:00.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:00 vm02 ceph-mon[50886]: pgmap v43: 1 pgs: 1 unknown; 0 B data, 480 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: pgmap v44: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: pgmap v44: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.606 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:02 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: pgmap v44: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:02.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:02.827 INFO:teuthology.orchestra.run.vm05.stdout:Created osd(s) 3 on host 'vm05' 2026-03-08T23:59:02.908 DEBUG:teuthology.orchestra.run.vm05:osd.3> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.3.service 2026-03-08T23:59:02.909 INFO:tasks.cephadm:Deploying osd.4 on vm09 with /dev/vde... 2026-03-08T23:59:02.909 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- lvm zap /dev/vde 2026-03-08T23:59:03.089 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: Detected new or changed devices on vm05 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]: dispatch 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]: dispatch 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.490 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:03.491 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:03.491 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.491 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:03 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: Detected new or changed devices on vm05 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]: dispatch 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]: dispatch 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:03 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: Detected new or changed devices on vm05 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]: dispatch 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]: dispatch 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd/host:vm05", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:03 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:03.882 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:59:03.909 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch daemon add osd vm09:/dev/vde 2026-03-08T23:59:04.079 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:59:04.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:04 vm09 ceph-mon[52277]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-08T23:59:04.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:04 vm09 ceph-mon[52277]: osdmap e20: 4 total, 3 up, 4 in 2026-03-08T23:59:04.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:04 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:04.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:04 vm09 ceph-mon[52277]: from='osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:59:04.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:04 vm09 ceph-mon[52277]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:59:04.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:04 vm09 ceph-mon[52277]: pgmap v46: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:04.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:04 vm05 ceph-mon[78959]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-08T23:59:04.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:04 vm05 ceph-mon[78959]: osdmap e20: 4 total, 3 up, 4 in 2026-03-08T23:59:04.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:04 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:04.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:04 vm05 ceph-mon[78959]: from='osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:59:04.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:04 vm05 ceph-mon[78959]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:59:04.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:04 vm05 ceph-mon[78959]: pgmap v46: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:04.627 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 08 23:59:04 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3[86483]: 2026-03-08T23:59:04.296+0000 7f7a1f9a3640 -1 osd.3 0 waiting for initial osdmap 2026-03-08T23:59:04.627 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 08 23:59:04 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3[86483]: 2026-03-08T23:59:04.301+0000 7f7a1b7cd640 -1 osd.3 21 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-08T23:59:04.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:04 vm02 ceph-mon[50886]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-08T23:59:04.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:04 vm02 ceph-mon[50886]: osdmap e20: 4 total, 3 up, 4 in 2026-03-08T23:59:04.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:04 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:04.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:04 vm02 ceph-mon[50886]: from='osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:59:04.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:04 vm02 ceph-mon[50886]: from='osd.3 ' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]: dispatch 2026-03-08T23:59:04.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:04 vm02 ceph-mon[50886]: pgmap v46: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]': finished 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: osdmap e21: 4 total, 3 up, 4 in 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='client.24184 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm09:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='client.? 192.168.123.109:0/452995384' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]': finished 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918] boot 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: osdmap e22: 5 total, 4 up, 5 in 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.447 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:05 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:05.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]': finished 2026-03-08T23:59:05.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: osdmap e21: 4 total, 3 up, 4 in 2026-03-08T23:59:05.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='client.24184 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm09:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='client.? 192.168.123.109:0/452995384' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]': finished 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918] boot 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: osdmap e22: 5 total, 4 up, 5 in 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.628 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:05 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm05", "root=default"]}]': finished 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: osdmap e21: 4 total, 3 up, 4 in 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='client.24184 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm09:/dev/vde", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:59:05.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='client.? 192.168.123.109:0/452995384' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]: dispatch 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]: dispatch 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "ef4180de-b0f0-4205-a39a-774af2e6323a"}]': finished 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: osd.3 [v2:192.168.123.105:6808/730888918,v1:192.168.123.105:6809/730888918] boot 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: osdmap e22: 5 total, 4 up, 5 in 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2026-03-08T23:59:05.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:05 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:06.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:06 vm09 ceph-mon[52277]: purged_snaps scrub starts 2026-03-08T23:59:06.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:06 vm09 ceph-mon[52277]: purged_snaps scrub ok 2026-03-08T23:59:06.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:06 vm09 ceph-mon[52277]: pgmap v49: 1 pgs: 1 unknown; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:06.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:06 vm09 ceph-mon[52277]: from='client.? 192.168.123.109:0/1766395184' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:59:06.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:06 vm09 ceph-mon[52277]: osdmap e23: 5 total, 4 up, 5 in 2026-03-08T23:59:06.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:06 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:06.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:06 vm05 ceph-mon[78959]: purged_snaps scrub starts 2026-03-08T23:59:06.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:06 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:59:06.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:06 vm05 ceph-mon[78959]: pgmap v49: 1 pgs: 1 unknown; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:06.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:06 vm05 ceph-mon[78959]: from='client.? 192.168.123.109:0/1766395184' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:59:06.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:06 vm05 ceph-mon[78959]: osdmap e23: 5 total, 4 up, 5 in 2026-03-08T23:59:06.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:06 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:06.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:06 vm02 ceph-mon[50886]: purged_snaps scrub starts 2026-03-08T23:59:06.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:06 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:59:06.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:06 vm02 ceph-mon[50886]: pgmap v49: 1 pgs: 1 unknown; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:06.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:06 vm02 ceph-mon[50886]: from='client.? 192.168.123.109:0/1766395184' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:59:06.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:06 vm02 ceph-mon[50886]: osdmap e23: 5 total, 4 up, 5 in 2026-03-08T23:59:06.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:06 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:08.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:07 vm09 ceph-mon[52277]: osdmap e24: 5 total, 4 up, 5 in 2026-03-08T23:59:08.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:07 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:08.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:07 vm09 ceph-mon[52277]: pgmap v52: 1 pgs: 1 unknown; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:08.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:07 vm05 ceph-mon[78959]: osdmap e24: 5 total, 4 up, 5 in 2026-03-08T23:59:08.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:07 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:08.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:07 vm05 ceph-mon[78959]: pgmap v52: 1 pgs: 1 unknown; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:08.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:07 vm02 ceph-mon[50886]: osdmap e24: 5 total, 4 up, 5 in 2026-03-08T23:59:08.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:07 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:08.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:07 vm02 ceph-mon[50886]: pgmap v52: 1 pgs: 1 unknown; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:09.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:09 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:09.355 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:09 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:09.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:09 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:09.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:09 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:09.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:09 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:09.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:09 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:10.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:10 vm02 ceph-mon[50886]: Deploying daemon osd.4 on vm09 2026-03-08T23:59:10.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:10 vm02 ceph-mon[50886]: pgmap v53: 1 pgs: 1 unknown; 449 KiB data, 106 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:10.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:10 vm09 ceph-mon[52277]: Deploying daemon osd.4 on vm09 2026-03-08T23:59:10.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:10 vm09 ceph-mon[52277]: pgmap v53: 1 pgs: 1 unknown; 449 KiB data, 106 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:10.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:10 vm05 ceph-mon[78959]: Deploying daemon osd.4 on vm09 2026-03-08T23:59:10.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:10 vm05 ceph-mon[78959]: pgmap v53: 1 pgs: 1 unknown; 449 KiB data, 106 MiB used, 80 GiB / 80 GiB avail 2026-03-08T23:59:11.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:11.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:11.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:11.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.630 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:11 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:11.630 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:11 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:11.630 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:11 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:11.630 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:11 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.630 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:11 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.630 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:11 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:11.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:11.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:11.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:11.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.294 INFO:teuthology.orchestra.run.vm09.stdout:Created osd(s) 4 on host 'vm09' 2026-03-08T23:59:12.352 DEBUG:teuthology.orchestra.run.vm09:osd.4> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.4.service 2026-03-08T23:59:12.356 INFO:tasks.cephadm:Deploying osd.5 on vm09 with /dev/vdd... 2026-03-08T23:59:12.356 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- lvm zap /dev/vdd 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: pgmap v54: 1 pgs: 1 active+clean; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:12.516 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:12 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.650 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: pgmap v54: 1 pgs: 1 active+clean; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:12.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:12 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.814 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:12 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4[57002]: 2026-03-08T23:59:12.747+0000 7ffa19ea0740 -1 osd.4 0 log_to_monitors true 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: pgmap v54: 1 pgs: 1 active+clean; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:12.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:12 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: Adjusting osd_memory_target on vm09 to 3329M 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:13.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:13 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: Adjusting osd_memory_target on vm09 to 3329M 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:13.732 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:13 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.835 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-08T23:59:13.854 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph orch daemon add osd vm09:/dev/vdd 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: Adjusting osd_memory_target on vm09 to 3329M 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]: dispatch 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]: dispatch 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:13.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:13.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:13 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:14.037 INFO:teuthology.orchestra.run.vm09.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.c/config 2026-03-08T23:59:14.646 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:14 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4[57002]: 2026-03-08T23:59:14.394+0000 7ffa15e21640 -1 osd.4 0 waiting for initial osdmap 2026-03-08T23:59:14.646 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:14 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4[57002]: 2026-03-08T23:59:14.405+0000 7ffa11c4b640 -1 osd.4 26 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: Detected new or changed devices on vm09 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: pgmap v55: 1 pgs: 1 active+clean; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: osdmap e25: 5 total, 4 up, 5 in 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:59:14.646 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:14 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: Detected new or changed devices on vm09 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: pgmap v55: 1 pgs: 1 active+clean; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: osdmap e25: 5 total, 4 up, 5 in 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:14.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:59:14.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:59:14.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:14 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: Detected new or changed devices on vm09 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: pgmap v55: 1 pgs: 1 active+clean; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: osdmap e25: 5 total, 4 up, 5 in 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2026-03-08T23:59:14.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:14 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm09:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]': finished 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: osdmap e26: 5 total, 4 up, 5 in 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='client.? 192.168.123.109:0/4055073039' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]': finished 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829] boot 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: osdmap e27: 6 total, 5 up, 6 in 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.499 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:15 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm09:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]': finished 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: osdmap e26: 5 total, 4 up, 5 in 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='client.? 192.168.123.109:0/4055073039' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]': finished 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829] boot 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: osdmap e27: 6 total, 5 up, 6 in 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:15 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='client.24208 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm09:/dev/vdd", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm09", "root=default"]}]': finished 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: osdmap e26: 5 total, 4 up, 5 in 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='client.? 192.168.123.109:0/4055073039' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d36da861-4d26-45e8-8702-b2e715a3d01d"}]': finished 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: osd.4 [v2:192.168.123.109:6800/559340829,v1:192.168.123.109:6801/559340829] boot 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: osdmap e27: 6 total, 5 up, 6 in 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2026-03-08T23:59:15.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:15 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:16.478 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:16 vm02 ceph-mon[50886]: purged_snaps scrub starts 2026-03-08T23:59:16.478 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:16 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:59:16.478 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:16 vm02 ceph-mon[50886]: pgmap v59: 1 pgs: 1 remapped+peering; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-08T23:59:16.478 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:16 vm02 ceph-mon[50886]: from='client.? 192.168.123.109:0/3751060559' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:59:16.478 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:16 vm02 ceph-mon[50886]: osdmap e28: 6 total, 5 up, 6 in 2026-03-08T23:59:16.478 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:16 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:16.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:16 vm09 ceph-mon[52277]: purged_snaps scrub starts 2026-03-08T23:59:16.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:16 vm09 ceph-mon[52277]: purged_snaps scrub ok 2026-03-08T23:59:16.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:16 vm09 ceph-mon[52277]: pgmap v59: 1 pgs: 1 remapped+peering; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-08T23:59:16.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:16 vm09 ceph-mon[52277]: from='client.? 192.168.123.109:0/3751060559' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:59:16.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:16 vm09 ceph-mon[52277]: osdmap e28: 6 total, 5 up, 6 in 2026-03-08T23:59:16.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:16 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:16.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:16 vm05 ceph-mon[78959]: purged_snaps scrub starts 2026-03-08T23:59:16.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:16 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:59:16.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:16 vm05 ceph-mon[78959]: pgmap v59: 1 pgs: 1 remapped+peering; 449 KiB data, 107 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-08T23:59:16.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:16 vm05 ceph-mon[78959]: from='client.? 192.168.123.109:0/3751060559' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2026-03-08T23:59:16.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:16 vm05 ceph-mon[78959]: osdmap e28: 6 total, 5 up, 6 in 2026-03-08T23:59:16.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:16 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: osdmap e29: 6 total, 5 up, 6 in 2026-03-08T23:59:17.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:17 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: osdmap e29: 6 total, 5 up, 6 in 2026-03-08T23:59:17.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:17 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: osdmap e29: 6 total, 5 up, 6 in 2026-03-08T23:59:17.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:17 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:18.453 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:18 vm09 ceph-mon[52277]: pgmap v62: 1 pgs: 1 remapped+peering; 449 KiB data, 133 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:18.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:18 vm02 ceph-mon[50886]: pgmap v62: 1 pgs: 1 remapped+peering; 449 KiB data, 133 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:18.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:18 vm05 ceph-mon[78959]: pgmap v62: 1 pgs: 1 remapped+peering; 449 KiB data, 133 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:19.459 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:19 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:19.459 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:19 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:19.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:19.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:19 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:19.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:19.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:19 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:20.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:20 vm09 ceph-mon[52277]: pgmap v63: 1 pgs: 1 remapped+peering; 449 KiB data, 133 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:20.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:20 vm09 ceph-mon[52277]: Deploying daemon osd.5 on vm09 2026-03-08T23:59:20.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:20 vm02 ceph-mon[50886]: pgmap v63: 1 pgs: 1 remapped+peering; 449 KiB data, 133 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:20.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:20 vm02 ceph-mon[50886]: Deploying daemon osd.5 on vm09 2026-03-08T23:59:20.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:20 vm05 ceph-mon[78959]: pgmap v63: 1 pgs: 1 remapped+peering; 449 KiB data, 133 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:20.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:20 vm05 ceph-mon[78959]: Deploying daemon osd.5 on vm09 2026-03-08T23:59:21.605 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:21 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:21.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:21 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:21.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:21 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:22.448 INFO:teuthology.orchestra.run.vm09.stdout:Created osd(s) 5 on host 'vm09' 2026-03-08T23:59:22.502 DEBUG:teuthology.orchestra.run.vm09:osd.5> sudo journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.5.service 2026-03-08T23:59:22.503 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2026-03-08T23:59:22.504 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd stat -f json 2026-03-08T23:59:22.680 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: pgmap v64: 1 pgs: 1 active+clean; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:22.722 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: pgmap v64: 1 pgs: 1 active+clean; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:22.856 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:22 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: pgmap v64: 1 pgs: 1 active+clean; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:22.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:22.912 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:22.980 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":29,"num_osds":6,"num_up_osds":5,"osd_up_since":1773014355,"num_in_osds":6,"osd_in_since":1773014355,"num_remapped_pgs":0} 2026-03-08T23:59:23.355 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:23 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5[60109]: 2026-03-08T23:59:23.096+0000 7f11a2c02740 -1 osd.5 0 log_to_monitors true 2026-03-08T23:59:23.794 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:23 vm09 ceph-mon[52277]: Adjusting osd_memory_target on vm09 to 1664M 2026-03-08T23:59:23.794 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:23 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/2490128769' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:23.794 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:23 vm09 ceph-mon[52277]: from='osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]: dispatch 2026-03-08T23:59:23.794 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:23 vm09 ceph-mon[52277]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]: dispatch 2026-03-08T23:59:23.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:23 vm05 ceph-mon[78959]: Adjusting osd_memory_target on vm09 to 1664M 2026-03-08T23:59:23.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:23 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/2490128769' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:23.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:23 vm05 ceph-mon[78959]: from='osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]: dispatch 2026-03-08T23:59:23.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:23 vm05 ceph-mon[78959]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]: dispatch 2026-03-08T23:59:23.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:23 vm02 ceph-mon[50886]: Adjusting osd_memory_target on vm09 to 1664M 2026-03-08T23:59:23.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:23 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2490128769' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:23.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:23 vm02 ceph-mon[50886]: from='osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]: dispatch 2026-03-08T23:59:23.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:23 vm02 ceph-mon[50886]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]: dispatch 2026-03-08T23:59:23.981 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd stat -f json 2026-03-08T23:59:24.157 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:24.385 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:24.446 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":30,"num_osds":6,"num_up_osds":5,"osd_up_since":1773014355,"num_in_osds":6,"osd_in_since":1773014355,"num_remapped_pgs":0} 2026-03-08T23:59:24.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: pgmap v65: 1 pgs: 1 active+clean; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:24.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-08T23:59:24.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: osdmap e30: 6 total, 5 up, 6 in 2026-03-08T23:59:24.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:24.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: from='osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:24.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:24.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:24 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/4042051173' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: pgmap v65: 1 pgs: 1 active+clean; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: osdmap e30: 6 total, 5 up, 6 in 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: from='osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:24.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:24 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/4042051173' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: pgmap v65: 1 pgs: 1 active+clean; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: osdmap e30: 6 total, 5 up, 6 in 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: from='osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: from='osd.5 ' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]: dispatch 2026-03-08T23:59:24.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:24 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/4042051173' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:25.447 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd stat -f json 2026-03-08T23:59:25.633 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:25.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:25 vm02 ceph-mon[50886]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]': finished 2026-03-08T23:59:25.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:25 vm02 ceph-mon[50886]: osdmap e31: 6 total, 5 up, 6 in 2026-03-08T23:59:25.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:25 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:25.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:25 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:25.855 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:25 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5[60109]: 2026-03-08T23:59:25.704+0000 7f119eb83640 -1 osd.5 0 waiting for initial osdmap 2026-03-08T23:59:25.855 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:25 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5[60109]: 2026-03-08T23:59:25.712+0000 7f119a1ac640 -1 osd.5 32 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-08T23:59:25.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:25 vm09 ceph-mon[52277]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]': finished 2026-03-08T23:59:25.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:25 vm09 ceph-mon[52277]: osdmap e31: 6 total, 5 up, 6 in 2026-03-08T23:59:25.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:25 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:25.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:25 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:25.866 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:25.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:25 vm05 ceph-mon[78959]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm09", "root=default"]}]': finished 2026-03-08T23:59:25.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:25 vm05 ceph-mon[78959]: osdmap e31: 6 total, 5 up, 6 in 2026-03-08T23:59:25.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:25 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:25.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:25 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:25.936 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":32,"num_osds":6,"num_up_osds":5,"osd_up_since":1773014355,"num_in_osds":6,"osd_in_since":1773014355,"num_remapped_pgs":1} 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: purged_snaps scrub starts 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: purged_snaps scrub ok 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: pgmap v68: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: osdmap e32: 6 total, 5 up, 6 in 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: from='osd.5 ' entity='osd.5' 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/4242429023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:26.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:26 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: purged_snaps scrub starts 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: pgmap v68: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: osdmap e32: 6 total, 5 up, 6 in 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: from='osd.5 ' entity='osd.5' 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/4242429023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:26.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:26 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.937 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd stat -f json 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: purged_snaps scrub starts 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: pgmap v68: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: osdmap e32: 6 total, 5 up, 6 in 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: from='osd.5 ' entity='osd.5' 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/4242429023' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:26.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:26 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:27.122 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:27.357 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:27.430 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":33,"num_osds":6,"num_up_osds":6,"osd_up_since":1773014366,"num_in_osds":6,"osd_in_since":1773014355,"num_remapped_pgs":1} 2026-03-08T23:59:27.431 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd dump --format=json 2026-03-08T23:59:27.652 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:27.769 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:27 vm02 ceph-mon[50886]: osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613] boot 2026-03-08T23:59:27.769 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:27 vm02 ceph-mon[50886]: osdmap e33: 6 total, 6 up, 6 in 2026-03-08T23:59:27.769 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:27 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:27.769 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:27 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2530090081' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:27.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:27 vm09 ceph-mon[52277]: osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613] boot 2026-03-08T23:59:27.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:27 vm09 ceph-mon[52277]: osdmap e33: 6 total, 6 up, 6 in 2026-03-08T23:59:27.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:27 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:27.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:27 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/2530090081' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:27.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:27 vm05 ceph-mon[78959]: osd.5 [v2:192.168.123.109:6808/3705403613,v1:192.168.123.109:6809/3705403613] boot 2026-03-08T23:59:27.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:27 vm05 ceph-mon[78959]: osdmap e33: 6 total, 6 up, 6 in 2026-03-08T23:59:27.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:27 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2026-03-08T23:59:27.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:27 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/2530090081' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2026-03-08T23:59:27.884 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:27.884 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":34,"fsid":"5b0a27d4-1b4a-11f1-9a7f-35684a443fe9","created":"2026-03-08T23:57:29.712030+0000","modified":"2026-03-08T23:59:27.523717+0000","last_up_change":"2026-03-08T23:59:26.513768+0000","last_in_change":"2026-03-08T23:59:15.064857+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-03-08T23:58:55.376071+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"19","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6802","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6803","nonce":1292313259}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6804","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6805","nonce":1292313259}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6808","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6809","nonce":1292313259}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6806","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6807","nonce":1292313259}]},"public_addr":"192.168.123.102:6803/1292313259","cluster_addr":"192.168.123.102:6805/1292313259","heartbeat_back_addr":"192.168.123.102:6809/1292313259","heartbeat_front_addr":"192.168.123.102:6807/1292313259","state":["exists","up"]},{"osd":1,"uuid":"7f3ac22a-d315-4ba8-991b-b6d353749ced","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":12,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6810","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6811","nonce":2147804305}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6812","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6813","nonce":2147804305}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6816","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6817","nonce":2147804305}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6814","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6815","nonce":2147804305}]},"public_addr":"192.168.123.102:6811/2147804305","cluster_addr":"192.168.123.102:6813/2147804305","heartbeat_back_addr":"192.168.123.102:6817/2147804305","heartbeat_front_addr":"192.168.123.102:6815/2147804305","state":["exists","up"]},{"osd":2,"uuid":"25f89ee0-d595-4e7b-a1c0-46863634ac48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":17,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6800","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6801","nonce":3579265179}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6802","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6803","nonce":3579265179}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6806","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6807","nonce":3579265179}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6804","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6805","nonce":3579265179}]},"public_addr":"192.168.123.105:6801/3579265179","cluster_addr":"192.168.123.105:6803/3579265179","heartbeat_back_addr":"192.168.123.105:6807/3579265179","heartbeat_front_addr":"192.168.123.105:6805/3579265179","state":["exists","up"]},{"osd":3,"uuid":"f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":33,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6808","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6809","nonce":730888918}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6810","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6811","nonce":730888918}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6814","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6815","nonce":730888918}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6812","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6813","nonce":730888918}]},"public_addr":"192.168.123.105:6809/730888918","cluster_addr":"192.168.123.105:6811/730888918","heartbeat_back_addr":"192.168.123.105:6815/730888918","heartbeat_front_addr":"192.168.123.105:6813/730888918","state":["exists","up"]},{"osd":4,"uuid":"ef4180de-b0f0-4205-a39a-774af2e6323a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6800","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6801","nonce":559340829}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6802","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6803","nonce":559340829}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6806","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6807","nonce":559340829}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6804","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6805","nonce":559340829}]},"public_addr":"192.168.123.109:6801/559340829","cluster_addr":"192.168.123.109:6803/559340829","heartbeat_back_addr":"192.168.123.109:6807/559340829","heartbeat_front_addr":"192.168.123.109:6805/559340829","state":["exists","up"]},{"osd":5,"uuid":"d36da861-4d26-45e8-8702-b2e715a3d01d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6808","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6809","nonce":3705403613}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6810","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6811","nonce":3705403613}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6814","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6815","nonce":3705403613}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6812","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6813","nonce":3705403613}]},"public_addr":"192.168.123.109:6809/3705403613","cluster_addr":"192.168.123.109:6811/3705403613","heartbeat_back_addr":"192.168.123.109:6815/3705403613","heartbeat_front_addr":"192.168.123.109:6813/3705403613","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:32.925037+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:42.999065+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:52.536246+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:03.566339+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:13.723058+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:24.048730+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"192.168.123.102:0/2880581636":"2026-03-09T23:57:51.283798+0000","192.168.123.102:0/4092750748":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6801/2141010179":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6800/2141010179":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6801/1646286553":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/3249833760":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6800/1646286553":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/985038704":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/240897043":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/4119227392":"2026-03-09T23:57:41.294486+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2026-03-08T23:59:27.928 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-03-08T23:58:55.376071+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '19', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 6, 'score_stable': 6, 'optimal_score': 0.5, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2026-03-08T23:59:27.928 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd pool get .mgr pg_num 2026-03-08T23:59:28.115 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:28.349 INFO:teuthology.orchestra.run.vm02.stdout:pg_num: 1 2026-03-08T23:59:28.428 INFO:tasks.cephadm:Setting up client nodes... 2026-03-08T23:59:28.428 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-03-08T23:59:28.428 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-03-08T23:59:28.428 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph mgr dump --format=json 2026-03-08T23:59:28.603 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:28.656 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:28 vm02 ceph-mon[50886]: pgmap v71: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:28.656 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:28 vm02 ceph-mon[50886]: osdmap e34: 6 total, 6 up, 6 in 2026-03-08T23:59:28.656 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:28 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/762950737' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:28.656 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:28 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/4031133652' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2026-03-08T23:59:28.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:28 vm09 ceph-mon[52277]: pgmap v71: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:28.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:28 vm09 ceph-mon[52277]: osdmap e34: 6 total, 6 up, 6 in 2026-03-08T23:59:28.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:28 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/762950737' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:28.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:28 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/4031133652' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2026-03-08T23:59:28.856 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:28.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:28 vm05 ceph-mon[78959]: pgmap v71: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:28.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:28 vm05 ceph-mon[78959]: osdmap e34: 6 total, 6 up, 6 in 2026-03-08T23:59:28.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:28 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/762950737' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:28.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:28 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/4031133652' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"}]: dispatch 2026-03-08T23:59:28.934 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":14,"flags":0,"active_gid":14150,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6800","nonce":356000083},{"type":"v1","addr":"192.168.123.102:6801","nonce":356000083}]},"active_addr":"192.168.123.102:6801/356000083","active_change":"2026-03-08T23:57:51.283896+0000","active_mgr_features":4540701547738038271,"available":true,"standbys":[{"gid":14214,"name":"b","mgr_features":4540701547738038271,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number. if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","restful"],"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_pg_upmap_activity":{"name":"update_pg_upmap_activity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Updates pg_upmap activity stats to be used in `balancer status detail`","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.25.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.5","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"quay.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number. if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://192.168.123.102:8443/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"force_disabled_modules":{},"last_failure_osd_epoch":3,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":121103017}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":2561212518}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":969057310}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":1898222698}]}]} 2026-03-08T23:59:28.935 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-03-08T23:59:28.935 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-03-08T23:59:28.935 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd dump --format=json 2026-03-08T23:59:29.118 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:29.351 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:29.351 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":35,"fsid":"5b0a27d4-1b4a-11f1-9a7f-35684a443fe9","created":"2026-03-08T23:57:29.712030+0000","modified":"2026-03-08T23:59:28.532067+0000","last_up_change":"2026-03-08T23:59:26.513768+0000","last_in_change":"2026-03-08T23:59:15.064857+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-03-08T23:58:55.376071+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"19","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6802","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6803","nonce":1292313259}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6804","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6805","nonce":1292313259}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6808","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6809","nonce":1292313259}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6806","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6807","nonce":1292313259}]},"public_addr":"192.168.123.102:6803/1292313259","cluster_addr":"192.168.123.102:6805/1292313259","heartbeat_back_addr":"192.168.123.102:6809/1292313259","heartbeat_front_addr":"192.168.123.102:6807/1292313259","state":["exists","up"]},{"osd":1,"uuid":"7f3ac22a-d315-4ba8-991b-b6d353749ced","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":12,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6810","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6811","nonce":2147804305}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6812","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6813","nonce":2147804305}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6816","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6817","nonce":2147804305}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6814","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6815","nonce":2147804305}]},"public_addr":"192.168.123.102:6811/2147804305","cluster_addr":"192.168.123.102:6813/2147804305","heartbeat_back_addr":"192.168.123.102:6817/2147804305","heartbeat_front_addr":"192.168.123.102:6815/2147804305","state":["exists","up"]},{"osd":2,"uuid":"25f89ee0-d595-4e7b-a1c0-46863634ac48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":17,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6800","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6801","nonce":3579265179}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6802","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6803","nonce":3579265179}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6806","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6807","nonce":3579265179}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6804","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6805","nonce":3579265179}]},"public_addr":"192.168.123.105:6801/3579265179","cluster_addr":"192.168.123.105:6803/3579265179","heartbeat_back_addr":"192.168.123.105:6807/3579265179","heartbeat_front_addr":"192.168.123.105:6805/3579265179","state":["exists","up"]},{"osd":3,"uuid":"f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6808","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6809","nonce":730888918}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6810","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6811","nonce":730888918}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6814","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6815","nonce":730888918}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6812","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6813","nonce":730888918}]},"public_addr":"192.168.123.105:6809/730888918","cluster_addr":"192.168.123.105:6811/730888918","heartbeat_back_addr":"192.168.123.105:6815/730888918","heartbeat_front_addr":"192.168.123.105:6813/730888918","state":["exists","up"]},{"osd":4,"uuid":"ef4180de-b0f0-4205-a39a-774af2e6323a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6800","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6801","nonce":559340829}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6802","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6803","nonce":559340829}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6806","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6807","nonce":559340829}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6804","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6805","nonce":559340829}]},"public_addr":"192.168.123.109:6801/559340829","cluster_addr":"192.168.123.109:6803/559340829","heartbeat_back_addr":"192.168.123.109:6807/559340829","heartbeat_front_addr":"192.168.123.109:6805/559340829","state":["exists","up"]},{"osd":5,"uuid":"d36da861-4d26-45e8-8702-b2e715a3d01d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6808","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6809","nonce":3705403613}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6810","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6811","nonce":3705403613}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6814","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6815","nonce":3705403613}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6812","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6813","nonce":3705403613}]},"public_addr":"192.168.123.109:6809/3705403613","cluster_addr":"192.168.123.109:6811/3705403613","heartbeat_back_addr":"192.168.123.109:6815/3705403613","heartbeat_front_addr":"192.168.123.109:6813/3705403613","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:32.925037+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:42.999065+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:52.536246+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:03.566339+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:13.723058+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:24.048730+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"192.168.123.102:0/2880581636":"2026-03-09T23:57:51.283798+0000","192.168.123.102:0/4092750748":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6801/2141010179":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6800/2141010179":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6801/1646286553":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/3249833760":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6800/1646286553":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/985038704":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/240897043":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/4119227392":"2026-03-09T23:57:41.294486+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2026-03-08T23:59:29.420 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-03-08T23:59:29.420 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd dump --format=json 2026-03-08T23:59:29.603 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:29.721 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:29 vm02 ceph-mon[50886]: osdmap e35: 6 total, 6 up, 6 in 2026-03-08T23:59:29.721 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:29 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3418358161' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2026-03-08T23:59:29.721 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:29 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/4071658855' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:29.836 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:29.836 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":35,"fsid":"5b0a27d4-1b4a-11f1-9a7f-35684a443fe9","created":"2026-03-08T23:57:29.712030+0000","modified":"2026-03-08T23:59:28.532067+0000","last_up_change":"2026-03-08T23:59:26.513768+0000","last_in_change":"2026-03-08T23:59:15.064857+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-03-08T23:58:55.376071+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"19","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":6,"score_stable":6,"optimal_score":0.5,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"f6cfe1d6-1ce1-4da6-a47c-150dd2c9ec69","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6802","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6803","nonce":1292313259}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6804","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6805","nonce":1292313259}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6808","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6809","nonce":1292313259}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6806","nonce":1292313259},{"type":"v1","addr":"192.168.123.102:6807","nonce":1292313259}]},"public_addr":"192.168.123.102:6803/1292313259","cluster_addr":"192.168.123.102:6805/1292313259","heartbeat_back_addr":"192.168.123.102:6809/1292313259","heartbeat_front_addr":"192.168.123.102:6807/1292313259","state":["exists","up"]},{"osd":1,"uuid":"7f3ac22a-d315-4ba8-991b-b6d353749ced","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":12,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6810","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6811","nonce":2147804305}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6812","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6813","nonce":2147804305}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6816","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6817","nonce":2147804305}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6814","nonce":2147804305},{"type":"v1","addr":"192.168.123.102:6815","nonce":2147804305}]},"public_addr":"192.168.123.102:6811/2147804305","cluster_addr":"192.168.123.102:6813/2147804305","heartbeat_back_addr":"192.168.123.102:6817/2147804305","heartbeat_front_addr":"192.168.123.102:6815/2147804305","state":["exists","up"]},{"osd":2,"uuid":"25f89ee0-d595-4e7b-a1c0-46863634ac48","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":17,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6800","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6801","nonce":3579265179}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6802","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6803","nonce":3579265179}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6806","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6807","nonce":3579265179}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6804","nonce":3579265179},{"type":"v1","addr":"192.168.123.105:6805","nonce":3579265179}]},"public_addr":"192.168.123.105:6801/3579265179","cluster_addr":"192.168.123.105:6803/3579265179","heartbeat_back_addr":"192.168.123.105:6807/3579265179","heartbeat_front_addr":"192.168.123.105:6805/3579265179","state":["exists","up"]},{"osd":3,"uuid":"f51b4ad8-e72d-4ee1-808c-a845bcd2dc1d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":22,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6808","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6809","nonce":730888918}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6810","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6811","nonce":730888918}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6814","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6815","nonce":730888918}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.105:6812","nonce":730888918},{"type":"v1","addr":"192.168.123.105:6813","nonce":730888918}]},"public_addr":"192.168.123.105:6809/730888918","cluster_addr":"192.168.123.105:6811/730888918","heartbeat_back_addr":"192.168.123.105:6815/730888918","heartbeat_front_addr":"192.168.123.105:6813/730888918","state":["exists","up"]},{"osd":4,"uuid":"ef4180de-b0f0-4205-a39a-774af2e6323a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6800","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6801","nonce":559340829}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6802","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6803","nonce":559340829}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6806","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6807","nonce":559340829}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6804","nonce":559340829},{"type":"v1","addr":"192.168.123.109:6805","nonce":559340829}]},"public_addr":"192.168.123.109:6801/559340829","cluster_addr":"192.168.123.109:6803/559340829","heartbeat_back_addr":"192.168.123.109:6807/559340829","heartbeat_front_addr":"192.168.123.109:6805/559340829","state":["exists","up"]},{"osd":5,"uuid":"d36da861-4d26-45e8-8702-b2e715a3d01d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":33,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6808","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6809","nonce":3705403613}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6810","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6811","nonce":3705403613}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6814","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6815","nonce":3705403613}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.109:6812","nonce":3705403613},{"type":"v1","addr":"192.168.123.109:6813","nonce":3705403613}]},"public_addr":"192.168.123.109:6809/3705403613","cluster_addr":"192.168.123.109:6811/3705403613","heartbeat_back_addr":"192.168.123.109:6815/3705403613","heartbeat_front_addr":"192.168.123.109:6813/3705403613","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:32.925037+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:42.999065+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:58:52.536246+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:03.566339+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:13.723058+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540701547738038271,"old_weight":0,"last_purged_snaps_scrub":"2026-03-08T23:59:24.048730+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"192.168.123.102:0/2880581636":"2026-03-09T23:57:51.283798+0000","192.168.123.102:0/4092750748":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6801/2141010179":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6800/2141010179":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6801/1646286553":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/3249833760":"2026-03-09T23:57:51.283798+0000","192.168.123.102:6800/1646286553":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/985038704":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/240897043":"2026-03-09T23:57:41.294486+0000","192.168.123.102:0/4119227392":"2026-03-09T23:57:41.294486+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2026-03-08T23:59:29.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:29 vm09 ceph-mon[52277]: osdmap e35: 6 total, 6 up, 6 in 2026-03-08T23:59:29.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:29 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/3418358161' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2026-03-08T23:59:29.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:29 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/4071658855' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:29.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:29 vm05 ceph-mon[78959]: osdmap e35: 6 total, 6 up, 6 in 2026-03-08T23:59:29.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:29 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/3418358161' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2026-03-08T23:59:29.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:29 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/4071658855' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:29.892 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph tell osd.0 flush_pg_stats 2026-03-08T23:59:29.892 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph tell osd.1 flush_pg_stats 2026-03-08T23:59:29.893 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph tell osd.2 flush_pg_stats 2026-03-08T23:59:29.893 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph tell osd.3 flush_pg_stats 2026-03-08T23:59:29.893 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph tell osd.4 flush_pg_stats 2026-03-08T23:59:29.893 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph tell osd.5 flush_pg_stats 2026-03-08T23:59:30.408 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:30.445 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:30.446 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:30.454 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:30.629 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:30.641 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:30.769 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:30 vm02 ceph-mon[50886]: pgmap v74: 1 pgs: 1 peering; 449 KiB data, 560 MiB used, 119 GiB / 120 GiB avail 2026-03-08T23:59:30.769 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:30 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2438294708' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:30.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:30 vm09 ceph-mon[52277]: pgmap v74: 1 pgs: 1 peering; 449 KiB data, 560 MiB used, 119 GiB / 120 GiB avail 2026-03-08T23:59:30.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:30 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/2438294708' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:30.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:30 vm05 ceph-mon[78959]: pgmap v74: 1 pgs: 1 peering; 449 KiB data, 560 MiB used, 119 GiB / 120 GiB avail 2026-03-08T23:59:30.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:30 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/2438294708' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2026-03-08T23:59:31.028 INFO:teuthology.orchestra.run.vm02.stdout:115964116997 2026-03-08T23:59:31.028 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd last-stat-seq osd.4 2026-03-08T23:59:31.105 INFO:teuthology.orchestra.run.vm02.stdout:68719476745 2026-03-08T23:59:31.105 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd last-stat-seq osd.2 2026-03-08T23:59:31.189 INFO:teuthology.orchestra.run.vm02.stdout:141733920770 2026-03-08T23:59:31.189 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd last-stat-seq osd.5 2026-03-08T23:59:31.200 INFO:teuthology.orchestra.run.vm02.stdout:94489280519 2026-03-08T23:59:31.201 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd last-stat-seq osd.3 2026-03-08T23:59:31.235 INFO:teuthology.orchestra.run.vm02.stdout:51539607563 2026-03-08T23:59:31.235 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd last-stat-seq osd.1 2026-03-08T23:59:31.283 INFO:teuthology.orchestra.run.vm02.stdout:34359738382 2026-03-08T23:59:31.283 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph osd last-stat-seq osd.0 2026-03-08T23:59:31.424 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:31.864 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:31.872 INFO:teuthology.orchestra.run.vm02.stdout:115964116997 2026-03-08T23:59:31.974 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:31.984 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:32.038 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:32.047 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964116997 got 115964116997 for osd.4 2026-03-08T23:59:32.047 DEBUG:teuthology.parallel:result is None 2026-03-08T23:59:32.145 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:32.382 INFO:teuthology.orchestra.run.vm02.stdout:68719476745 2026-03-08T23:59:32.441 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476745 got 68719476745 for osd.2 2026-03-08T23:59:32.441 DEBUG:teuthology.parallel:result is None 2026-03-08T23:59:32.512 INFO:teuthology.orchestra.run.vm02.stdout:51539607563 2026-03-08T23:59:32.604 INFO:tasks.cephadm.ceph_manager.ceph:need seq 51539607563 got 51539607563 for osd.1 2026-03-08T23:59:32.604 DEBUG:teuthology.parallel:result is None 2026-03-08T23:59:32.629 INFO:teuthology.orchestra.run.vm02.stdout:141733920770 2026-03-08T23:59:32.640 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:32 vm02 ceph-mon[50886]: pgmap v75: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 77 KiB/s, 0 objects/s recovering 2026-03-08T23:59:32.640 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:32 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/4056725876' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2026-03-08T23:59:32.640 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:32 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/448070205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2026-03-08T23:59:32.640 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:32 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3608232873' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2026-03-08T23:59:32.694 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920770 got 141733920770 for osd.5 2026-03-08T23:59:32.694 DEBUG:teuthology.parallel:result is None 2026-03-08T23:59:32.711 INFO:teuthology.orchestra.run.vm02.stdout:94489280519 2026-03-08T23:59:32.763 INFO:teuthology.orchestra.run.vm02.stdout:34359738382 2026-03-08T23:59:32.785 INFO:tasks.cephadm.ceph_manager.ceph:need seq 94489280519 got 94489280519 for osd.3 2026-03-08T23:59:32.785 DEBUG:teuthology.parallel:result is None 2026-03-08T23:59:32.819 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738382 got 34359738382 for osd.0 2026-03-08T23:59:32.819 DEBUG:teuthology.parallel:result is None 2026-03-08T23:59:32.819 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-03-08T23:59:32.820 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph pg dump --format=json 2026-03-08T23:59:32.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:32 vm09 ceph-mon[52277]: pgmap v75: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 77 KiB/s, 0 objects/s recovering 2026-03-08T23:59:32.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:32 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/4056725876' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2026-03-08T23:59:32.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:32 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/448070205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2026-03-08T23:59:32.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:32 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/3608232873' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2026-03-08T23:59:32.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:32 vm05 ceph-mon[78959]: pgmap v75: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 77 KiB/s, 0 objects/s recovering 2026-03-08T23:59:32.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:32 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/4056725876' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2026-03-08T23:59:32.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:32 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/448070205' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2026-03-08T23:59:32.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:32 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/3608232873' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2026-03-08T23:59:33.046 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:33.281 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:33.281 INFO:teuthology.orchestra.run.vm02.stderr:dumped all 2026-03-08T23:59:33.350 INFO:teuthology.orchestra.run.vm02.stdout:{"pg_ready":true,"pg_map":{"version":75,"stamp":"2026-03-08T23:59:31.351592+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":459280,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":46,"num_read_kb":37,"num_write":57,"num_write_kb":584,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1377840,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":32,"ondisk_log_size":32,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":125804544,"kb_used":164332,"kb_used_data":3300,"kb_used_omap":9,"kb_used_meta":160886,"kb_avail":125640212,"statfs":{"total":128823853056,"available":128655577088,"internally_reserved":0,"allocated":3379200,"data_stored":2117622,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9538,"internal_metadata":164747966},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":459280,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"5.837820"},"pg_stats":[{"pgid":"1.0","version":"18'32","reported_seq":57,"reported_epoch":35,"state":"active+clean","last_fresh":"2026-03-08T23:59:29.455180+0000","last_change":"2026-03-08T23:59:29.455180+0000","last_active":"2026-03-08T23:59:29.455180+0000","last_peered":"2026-03-08T23:59:29.455180+0000","last_clean":"2026-03-08T23:59:29.455180+0000","last_became_active":"2026-03-08T23:59:29.149297+0000","last_became_peered":"2026-03-08T23:59:29.149297+0000","last_unstale":"2026-03-08T23:59:29.455180+0000","last_undegraded":"2026-03-08T23:59:29.455180+0000","last_fullsized":"2026-03-08T23:59:29.455180+0000","mapping_epoch":34,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":35,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-03-08T23:58:55.896092+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-03-08T23:58:55.896092+0000","last_clean_scrub_stamp":"2026-03-08T23:58:55.896092+0000","objects_scrubbed":0,"log_size":32,"log_dups_size":0,"ondisk_log_size":32,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2026-03-10T04:35:19.223712+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":459280,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":46,"num_read_kb":37,"num_write":57,"num_write_kb":584,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1377840,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":459280,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":46,"num_read_kb":37,"num_write":57,"num_write_kb":584,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1377840,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":1388544,"data_stored":1377840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":32,"ondisk_log_size":32,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":33,"seq":141733920770,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27612,"kb_used_data":776,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20939812,"statfs":{"total":21470642176,"available":21442367488,"internally_reserved":0,"allocated":794624,"data_stored":582577,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":27,"seq":115964116997,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27160,"kb_used_data":324,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20940264,"statfs":{"total":21470642176,"available":21442830336,"internally_reserved":0,"allocated":331776,"data_stored":123297,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":22,"seq":94489280519,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27616,"kb_used_data":776,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20939808,"statfs":{"total":21470642176,"available":21442363392,"internally_reserved":0,"allocated":794624,"data_stored":582577,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1588,"internal_metadata":27457996},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":16,"seq":68719476745,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27608,"kb_used_data":776,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20939816,"statfs":{"total":21470642176,"available":21442371584,"internally_reserved":0,"allocated":794624,"data_stored":582577,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":12,"seq":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27168,"kb_used_data":324,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20940256,"statfs":{"total":21470642176,"available":21442822144,"internally_reserved":0,"allocated":331776,"data_stored":123297,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738382,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27168,"kb_used_data":324,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20940256,"statfs":{"total":21470642176,"available":21442822144,"internally_reserved":0,"allocated":331776,"data_stored":123297,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":462848,"data_stored":459280,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":462848,"data_stored":459280,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":462848,"data_stored":459280,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-03-08T23:59:33.351 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph pg dump --format=json 2026-03-08T23:59:33.550 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2563500878' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/3985765593' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/396810549' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:33.588 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:33 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.774 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:33.775 INFO:teuthology.orchestra.run.vm02.stderr:dumped all 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/2563500878' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/3985765593' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/396810549' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:33.855 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:33 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.857 INFO:teuthology.orchestra.run.vm02.stdout:{"pg_ready":true,"pg_map":{"version":76,"stamp":"2026-03-08T23:59:33.351937+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":459280,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":46,"num_read_kb":37,"num_write":57,"num_write_kb":584,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1377840,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":32,"ondisk_log_size":32,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":125804544,"kb_used":164332,"kb_used_data":3300,"kb_used_omap":9,"kb_used_meta":160886,"kb_avail":125640212,"statfs":{"total":128823853056,"available":128655577088,"internally_reserved":0,"allocated":3379200,"data_stored":2117622,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9538,"internal_metadata":164747966},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":459280,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"6.828642"},"pg_stats":[{"pgid":"1.0","version":"18'32","reported_seq":57,"reported_epoch":35,"state":"active+clean","last_fresh":"2026-03-08T23:59:29.455180+0000","last_change":"2026-03-08T23:59:29.455180+0000","last_active":"2026-03-08T23:59:29.455180+0000","last_peered":"2026-03-08T23:59:29.455180+0000","last_clean":"2026-03-08T23:59:29.455180+0000","last_became_active":"2026-03-08T23:59:29.149297+0000","last_became_peered":"2026-03-08T23:59:29.149297+0000","last_unstale":"2026-03-08T23:59:29.455180+0000","last_undegraded":"2026-03-08T23:59:29.455180+0000","last_fullsized":"2026-03-08T23:59:29.455180+0000","mapping_epoch":34,"log_start":"0'0","ondisk_log_start":"0'0","created":17,"last_epoch_clean":35,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-03-08T23:58:55.896092+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-03-08T23:58:55.896092+0000","last_clean_scrub_stamp":"2026-03-08T23:58:55.896092+0000","objects_scrubbed":0,"log_size":32,"log_dups_size":0,"ondisk_log_size":32,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2026-03-10T04:35:19.223712+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":459280,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":46,"num_read_kb":37,"num_write":57,"num_write_kb":584,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1377840,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"up":[3,5,2],"acting":[3,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":459280,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":46,"num_read_kb":37,"num_write":57,"num_write_kb":584,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1377840,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":1388544,"data_stored":1377840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":32,"ondisk_log_size":32,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":33,"seq":141733920771,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27612,"kb_used_data":776,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20939812,"statfs":{"total":21470642176,"available":21442367488,"internally_reserved":0,"allocated":794624,"data_stored":582577,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":4,"up_from":27,"seq":115964116997,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27160,"kb_used_data":324,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20940264,"statfs":{"total":21470642176,"available":21442830336,"internally_reserved":0,"allocated":331776,"data_stored":123297,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,1,2,3,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":3,"up_from":22,"seq":94489280519,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27616,"kb_used_data":776,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20939808,"statfs":{"total":21470642176,"available":21442363392,"internally_reserved":0,"allocated":794624,"data_stored":582577,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1588,"internal_metadata":27457996},"hb_peers":[0,1,2,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":2,"up_from":16,"seq":68719476745,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27608,"kb_used_data":776,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20939816,"statfs":{"total":21470642176,"available":21442371584,"internally_reserved":0,"allocated":794624,"data_stored":582577,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":12,"seq":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27168,"kb_used_data":324,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20940256,"statfs":{"total":21470642176,"available":21442822144,"internally_reserved":0,"allocated":331776,"data_stored":123297,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738382,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27168,"kb_used_data":324,"kb_used_omap":1,"kb_used_meta":26814,"kb_avail":20940256,"statfs":{"total":21470642176,"available":21442822144,"internally_reserved":0,"allocated":331776,"data_stored":123297,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":27457994},"hb_peers":[1,2,3,4],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":462848,"data_stored":459280,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":462848,"data_stored":459280,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":4,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":5,"total":0,"available":0,"internally_reserved":0,"allocated":462848,"data_stored":459280,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-03-08T23:59:33.858 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-03-08T23:59:33.858 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-03-08T23:59:33.858 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-03-08T23:59:33.858 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph health --format=json 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/2563500878' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/3985765593' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/396810549' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:33.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:33 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:34.034 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:34.275 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-08T23:59:34.276 INFO:teuthology.orchestra.run.vm02.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-03-08T23:59:34.337 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-03-08T23:59:34.337 INFO:tasks.cephadm:Setup complete, yielding 2026-03-08T23:59:34.337 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-03-08T23:59:34.339 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@vm02.local 2026-03-08T23:59:34.339 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- bash -c 'set -ex 2026-03-08T23:59:34.339 DEBUG:teuthology.orchestra.run.vm02:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2026-03-08T23:59:34.339 DEBUG:teuthology.orchestra.run.vm02:> for host in $HOSTNAMES; do 2026-03-08T23:59:34.339 DEBUG:teuthology.orchestra.run.vm02:> # find the hostname for "host.c" which will have no mgr 2026-03-08T23:59:34.339 DEBUG:teuthology.orchestra.run.vm02:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2026-03-08T23:59:34.339 DEBUG:teuthology.orchestra.run.vm02:> if [ "$HAS_MGRS" == "false" ]; then 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> HOST_C="${host}" 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> fi 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> done 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # One last thing to worry about before draining the host 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # is that the teuthology test tends to put the explicit 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # hostnames in the placement for the mon service. 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # We want to make sure we can drain without providing 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # --force and there is a check for the host being removed 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # being listed explicitly in the placements. Therefore, 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # we should remove it from the mon placement. 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ceph orch ls mon --export > mon.yaml 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ceph orch apply -i mon_adjusted.yaml 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # now drain that host 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ceph orch host drain $HOST_C --zap-osd-devices 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # wait for drain to complete 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> sleep 15 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> done 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # we want to check the ability to remove the host from 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # the CRUSH map, so we should first verify the host is in 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # the CRUSH map. 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ceph osd getcrushmap -o compiled-crushmap 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> crushtool -d compiled-crushmap -o crushmap.txt 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> CRUSH_MAP=$(cat crushmap.txt) 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> exit 1 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> fi 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # If the drain was successful, we should be able to remove the 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # host without force with no issues. If there are still daemons 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # we will get a response telling us to drain the host and a 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # non-zero return code 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ceph orch host rm $HOST_C --rm-crush-entry 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> sleep 30 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ceph osd getcrushmap -o compiled-crushmap 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> crushtool -d compiled-crushmap -o crushmap.txt 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> CRUSH_MAP=$(cat crushmap.txt) 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> exit 1 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> fi 2026-03-08T23:59:34.340 DEBUG:teuthology.orchestra.run.vm02:> ' 2026-03-08T23:59:34.515 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-08T23:59:34.588 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch host ls --format json 2026-03-08T23:59:34.588 INFO:teuthology.orchestra.run.vm02.stderr:++ jq -r '.[] | .hostname' 2026-03-08T23:59:34.751 INFO:teuthology.orchestra.run.vm02.stderr:+ HOSTNAMES='vm02 2026-03-08T23:59:34.751 INFO:teuthology.orchestra.run.vm02.stderr:vm05 2026-03-08T23:59:34.751 INFO:teuthology.orchestra.run.vm02.stderr:vm09' 2026-03-08T23:59:34.751 INFO:teuthology.orchestra.run.vm02.stderr:+ for host in $HOSTNAMES 2026-03-08T23:59:34.751 INFO:teuthology.orchestra.run.vm02.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-03-08T23:59:34.751 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm02 --format json 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='client.24332 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: pgmap v76: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 66 KiB/s, 0 objects/s recovering 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: Detected new or changed devices on vm09 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:34.918 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:34 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/413733734' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2026-03-08T23:59:34.918 INFO:teuthology.orchestra.run.vm02.stderr:+ HAS_MGRS=true 2026-03-08T23:59:34.918 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' true == false ']' 2026-03-08T23:59:34.918 INFO:teuthology.orchestra.run.vm02.stderr:+ for host in $HOSTNAMES 2026-03-08T23:59:34.918 INFO:teuthology.orchestra.run.vm02.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-03-08T23:59:34.918 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm05 --format json 2026-03-08T23:59:35.089 INFO:teuthology.orchestra.run.vm02.stderr:+ HAS_MGRS=true 2026-03-08T23:59:35.089 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' true == false ']' 2026-03-08T23:59:35.089 INFO:teuthology.orchestra.run.vm02.stderr:+ for host in $HOSTNAMES 2026-03-08T23:59:35.089 INFO:teuthology.orchestra.run.vm02.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-03-08T23:59:35.089 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm09 --format json 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='client.24332 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: pgmap v76: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 66 KiB/s, 0 objects/s recovering 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: Detected new or changed devices on vm09 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:34 vm09 ceph-mon[52277]: from='client.? 192.168.123.102:0/413733734' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='client.24332 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: pgmap v76: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 66 KiB/s, 0 objects/s recovering 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: Detected new or changed devices on vm09 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='client.14484 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:34 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/413733734' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2026-03-08T23:59:35.255 INFO:teuthology.orchestra.run.vm02.stderr:+ HAS_MGRS=false 2026-03-08T23:59:35.256 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' false == false ']' 2026-03-08T23:59:35.256 INFO:teuthology.orchestra.run.vm02.stderr:+ HOST_C=vm09 2026-03-08T23:59:35.256 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch ls mon --export 2026-03-08T23:59:35.422 INFO:teuthology.orchestra.run.vm02.stderr:+ sed /vm09/d mon.yaml 2026-03-08T23:59:35.423 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch apply -i mon_adjusted.yaml 2026-03-08T23:59:35.583 INFO:teuthology.orchestra.run.vm02.stdout:Scheduled mon update... 2026-03-08T23:59:35.604 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch host drain vm09 --zap-osd-devices 2026-03-08T23:59:36.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:35 vm09 podman[61210]: 2026-03-08 23:59:35.625000568 +0000 UTC m=+0.009518657 container died be4e8a73359329e890d39d3ee1fb768e08feafa2438ad9394137f9b2be6b0d07 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-c, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, CEPH_REF=squid, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-03-08T23:59:36.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:35 vm09 podman[61210]: 2026-03-08 23:59:35.637851281 +0000 UTC m=+0.022369370 container remove be4e8a73359329e890d39d3ee1fb768e08feafa2438ad9394137f9b2be6b0d07 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-c, org.label-schema.build-date=20260223, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=squid, io.buildah.version=1.41.3, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2) 2026-03-08T23:59:36.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:35 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.c.service: Deactivated successfully. 2026-03-08T23:59:36.105 INFO:journalctl@ceph.mon.c.vm09.stdout:Mar 08 23:59:35 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.c.service: Consumed 1.520s CPU time. 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: purged_snaps scrub ok 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm05", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: pgmap v77: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: Saving service mon spec with placement vm02:192.168.123.102=a;vm05:192.168.123.105=b;count:3 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: Removing monitor c from monmap... 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-03-08T23:59:37.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: mon.b calling monitor election 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: mon.a calling monitor election 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: monmap epoch 4 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: last_changed 2026-03-08T23:59:35.596249+0000 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: min_mon_release 19 (squid) 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: election_strategy: 1 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: 1: [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] mon.b 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: fsmap 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: osdmap e35: 6 total, 6 up, 6 in 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: mgrmap e14: a(active, since 106s), standbys: b 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: overall HEALTH_OK 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:37.978 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:37 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: purged_snaps scrub ok 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm05", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: pgmap v77: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: Saving service mon spec with placement vm02:192.168.123.102=a;vm05:192.168.123.105=b;count:3 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: Removing monitor c from monmap... 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "a"}]: dispatch 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: mon.b calling monitor election 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mon metadata", "id": "b"}]: dispatch 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: mon.a calling monitor election 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: monmap epoch 4 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-08T23:59:38.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: last_changed 2026-03-08T23:59:35.596249+0000 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: created 2026-03-08T23:57:28.492803+0000 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: min_mon_release 19 (squid) 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: election_strategy: 1 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: 1: [v2:192.168.123.105:3300/0,v1:192.168.123.105:6789/0] mon.b 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: fsmap 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: osdmap e35: 6 total, 6 up, 6 in 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: mgrmap e14: a(active, since 106s), standbys: b 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: overall HEALTH_OK 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:37 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.808 INFO:teuthology.orchestra.run.vm02.stdout:Scheduled to remove the following daemons from host 'vm09' 2026-03-08T23:59:38.808 INFO:teuthology.orchestra.run.vm02.stdout:type id 2026-03-08T23:59:38.808 INFO:teuthology.orchestra.run.vm02.stdout:-------------------- --------------- 2026-03-08T23:59:38.808 INFO:teuthology.orchestra.run.vm02.stdout:agent vm09 2026-03-08T23:59:38.808 INFO:teuthology.orchestra.run.vm02.stdout:osd 4 2026-03-08T23:59:38.808 INFO:teuthology.orchestra.run.vm02.stdout:osd 5 2026-03-08T23:59:38.823 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm09 2026-03-08T23:59:38.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: pgmap v78: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 46 KiB/s, 0 objects/s recovering 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: Removing daemon mon.c from vm09 -- ports [] 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2026-03-08T23:59:38.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:agent.vm09 vm09 running 5s ago 95s - - 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:osd.4 vm09 running (27s) 5s ago 27s 35.0M 1664M 19.2.3-678-ge911bdeb 654f31e6858e 8667da374ac4 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:osd.5 vm09 running (17s) 5s ago 17s 57.0M 1664M 19.2.3-678-ge911bdeb 654f31e6858e 01d82450f759 ' 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:agent.vm09 vm09 running 5s ago 95s - - 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:osd.4 vm09 running (27s) 5s ago 27s 35.0M 1664M 19.2.3-678-ge911bdeb 654f31e6858e 8667da374ac4 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:osd.5 vm09 running (17s) 5s ago 17s 57.0M 1664M 19.2.3-678-ge911bdeb 654f31e6858e 01d82450f759 ' '!=' 'No daemons reported' ']' 2026-03-08T23:59:39.012 INFO:teuthology.orchestra.run.vm02.stderr:+ sleep 15 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: pgmap v78: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 46 KiB/s, 0 objects/s recovering 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: Removing daemon mon.c from vm09 -- ports [] 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:59:39.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2026-03-08T23:59:39.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Reconfiguring mon.a (monmap changed)... 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Reconfiguring daemon mon.a on vm02 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "vm09", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Added label _no_schedule to host vm09 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Added label _no_conf_keyring to host vm09 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: osd.4 crush weight is 0.0194854736328125 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: osd.5 crush weight is 0.0194854736328125 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Reconfiguring mgr.a (monmap changed)... 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: Reconfiguring daemon mgr.a on vm02 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2026-03-08T23:59:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:39 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Updating vm02:/etc/ceph/ceph.conf 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Updating vm05:/etc/ceph/ceph.conf 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Updating vm09:/etc/ceph/ceph.conf 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Updating vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Updating vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Updating vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Metadata not up to date on all hosts. Skipping non agent specs 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Reconfiguring mon.a (monmap changed)... 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Reconfiguring daemon mon.a on vm02 2026-03-08T23:59:40.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='client.14530 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "vm09", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Added label _no_schedule to host vm09 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Added label _no_conf_keyring to host vm09 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: osd.4 crush weight is 0.0194854736328125 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush tree", "format": "json"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: osd.5 crush weight is 0.0194854736328125 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Reconfiguring mgr.a (monmap changed)... 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: Reconfiguring daemon mgr.a on vm02 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2026-03-08T23:59:40.128 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:39 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: Reconfiguring osd.0 (monmap changed)... 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: Reconfiguring daemon osd.0 on vm02 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: pgmap v79: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 41 KiB/s, 0 objects/s recovering 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: Reconfiguring osd.1 (monmap changed)... 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: Reconfiguring daemon osd.1 on vm02 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: Reconfiguring mon.b (monmap changed)... 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: Reconfiguring daemon mon.b on vm05 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2026-03-08T23:59:40.989 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:40.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:40.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2026-03-08T23:59:40.990 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:40 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:41.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='client.14534 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: Reconfiguring osd.0 (monmap changed)... 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: Reconfiguring daemon osd.0 on vm02 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: pgmap v79: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 41 KiB/s, 0 objects/s recovering 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: Reconfiguring osd.1 (monmap changed)... 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: Reconfiguring daemon osd.1 on vm02 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: Reconfiguring mon.b (monmap changed)... 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: Reconfiguring daemon mon.b on vm05 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "mgr services"}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2026-03-08T23:59:41.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:40 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:42.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring mgr.b (monmap changed)... 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring daemon mgr.b on vm05 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring osd.2 (monmap changed)... 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring daemon osd.2 on vm05 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring osd.3 (monmap changed)... 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring daemon osd.3 on vm05 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring osd.4 (monmap changed)... 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: Reconfiguring daemon osd.4 on vm09 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:41 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:42.276 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring mgr.b (monmap changed)... 2026-03-08T23:59:42.276 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring daemon mgr.b on vm05 2026-03-08T23:59:42.276 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring osd.2 (monmap changed)... 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring daemon osd.2 on vm05 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring osd.3 (monmap changed)... 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring daemon osd.3 on vm05 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring osd.4 (monmap changed)... 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: Reconfiguring daemon osd.4 on vm09 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:42.277 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:41 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: Reconfiguring osd.5 (monmap changed)... 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: Reconfiguring daemon osd.5 on vm09 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: pgmap v80: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 37 KiB/s, 0 objects/s recovering 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:42 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: Reconfiguring osd.5 (monmap changed)... 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: Reconfiguring daemon osd.5 on vm09 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: pgmap v80: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail; 37 KiB/s, 0 objects/s recovering 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:43.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:42 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: Detected new or changed devices on vm09 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: Removing vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: Removing vm09:/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: Removing vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.client.admin.keyring 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2026-03-08T23:59:44.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:44 vm05 ceph-mon[78959]: pgmap v81: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail 2026-03-08T23:59:44.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: Detected new or changed devices on vm09 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: Removing vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.conf 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: Removing vm09:/etc/ceph/ceph.client.admin.keyring 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: Removing vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/config/ceph.client.admin.keyring 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]: dispatch 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-mon[50886]: pgmap v81: 1 pgs: 1 active+clean; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail 2026-03-08T23:59:44.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:44 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a[50882]: 2026-03-08T23:59:44.116+0000 7f58ac9ac640 -1 mon.a@0(leader).osd e36 definitely_dead 0 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: osdmap e36: 6 total, 6 up, 6 in 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: osd.5 weight is now 0.0 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-08T23:59:45.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:45 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: osdmap e36: 6 total, 6 up, 6 in 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: osd.5 weight is now 0.0 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-08T23:59:45.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:45 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["4"]}]: dispatch 2026-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 systemd[1]: Stopping Ceph osd.4 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4[57002]: 2026-03-08T23:59:45.356+0000 7ffa16e35640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.4 -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-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4[57002]: 2026-03-08T23:59:45.356+0000 7ffa16e35640 -1 osd.4 36 *** Got signal Terminated *** 2026-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4[57002]: 2026-03-08T23:59:45.356+0000 7ffa16e35640 -1 osd.4 36 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64412]: 2026-03-08 23:59:45.378847799 +0000 UTC m=+0.038114261 container died 8667da374ac48589301a1f09f35faf9e641fb9edaac8af3a23b9883901bac74c (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, ceph=True, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260223, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64412]: 2026-03-08 23:59:45.416980715 +0000 UTC m=+0.076247177 container remove 8667da374ac48589301a1f09f35faf9e641fb9edaac8af3a23b9883901bac74c (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260223, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=squid, org.label-schema.schema-version=1.0, io.buildah.version=1.41.3) 2026-03-08T23:59:45.564 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 bash[64412]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.563487999 +0000 UTC m=+0.016932073 container create 114a8d83c118be7ca1376ad742205bf5ca572b298e7f364f9d0f3268e6bd638e (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4-deactivate, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, ceph=True, CEPH_REF=squid, org.label-schema.license=GPLv2, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223) 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.607514375 +0000 UTC m=+0.060958471 container init 114a8d83c118be7ca1376ad742205bf5ca572b298e7f364f9d0f3268e6bd638e (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, ceph=True, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, CEPH_REF=squid, org.label-schema.build-date=20260223, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.612011482 +0000 UTC m=+0.065455557 container start 114a8d83c118be7ca1376ad742205bf5ca572b298e7f364f9d0f3268e6bd638e (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4-deactivate, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, org.label-schema.build-date=20260223, org.label-schema.schema-version=1.0, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3) 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.615619616 +0000 UTC m=+0.069063701 container attach 114a8d83c118be7ca1376ad742205bf5ca572b298e7f364f9d0f3268e6bd638e (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4-deactivate, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260223, OSD_FLAVOR=default, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, io.buildah.version=1.41.3, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.556795292 +0000 UTC m=+0.010239386 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.742956439 +0000 UTC m=+0.196400524 container died 114a8d83c118be7ca1376ad742205bf5ca572b298e7f364f9d0f3268e6bd638e (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4-deactivate, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=squid, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260223, 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, org.label-schema.schema-version=1.0, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3) 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 podman[64480]: 2026-03-08 23:59:45.762303832 +0000 UTC m=+0.215747917 container remove 114a8d83c118be7ca1376ad742205bf5ca572b298e7f364f9d0f3268e6bd638e (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-4-deactivate, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, CEPH_REF=squid, ceph=True, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260223, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, io.buildah.version=1.41.3) 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.4.service: Deactivated successfully. 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.4.service: Unit process 64490 (conmon) remains running after unit stopped. 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.4.service: Unit process 64499 (podman) remains running after unit stopped. 2026-03-08T23:59:45.847 INFO:journalctl@ceph.osd.4.vm09.stdout:Mar 08 23:59:45 vm09 systemd[1]: Stopped Ceph osd.4 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9. 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: osdmap e37: 6 total, 5 up, 6 in 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: osd.4 now down 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Removing daemon osd.4 from vm09 -- ports [] 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: pgmap v84: 1 pgs: 1 peering; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Removing key for osd.4 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Successfully removed osd.4 on vm09 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Cluster is now healthy 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: osdmap e38: 5 total, 5 up, 5 in 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Successfully purged osd.4 on vm09 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: Zapping devices for osd.4 on vm09 2026-03-08T23:59:46.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:46 vm05 ceph-mon[78959]: osdmap e39: 5 total, 5 up, 5 in 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: osdmap e37: 6 total, 5 up, 6 in 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: osd.4 now down 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Removing daemon osd.4 from vm09 -- ports [] 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: pgmap v84: 1 pgs: 1 peering; 449 KiB data, 160 MiB used, 120 GiB / 120 GiB avail 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Removing key for osd.4 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.4"}]: dispatch 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Successfully removed osd.4 on vm09 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Cluster is now healthy 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: osdmap e38: 5 total, 5 up, 5 in 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Successfully purged osd.4 on vm09 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: Zapping devices for osd.4 on vm09 2026-03-08T23:59:46.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:46 vm02 ceph-mon[50886]: osdmap e39: 5 total, 5 up, 5 in 2026-03-08T23:59:47.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:59:47 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:59:47.406+0000 7ff3198c1640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: osdmap e40: 5 total, 5 up, 5 in 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: pgmap v88: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: Successfully zapped devices for osd.4 on vm09 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:48.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:48 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:48.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: osdmap e40: 5 total, 5 up, 5 in 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: pgmap v88: 1 pgs: 1 peering; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: Successfully zapped devices for osd.4 on vm09 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:48.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:48 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:49.476 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:59:49.160+0000 7ff3198c1640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2026-03-08T23:59:49.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:49.477 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:49 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:49.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:49 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: Detected new or changed devices on vm09 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: Removing daemon agent.vm09 from vm09 -- ports [] 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: pgmap v89: 1 pgs: 1 peering; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: Removing key for client.agent.vm09 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.vm09"}]: dispatch 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.vm09"}]': finished 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.627 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:50 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: Detected new or changed devices on vm09 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: Removing daemon agent.vm09 from vm09 -- ports [] 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: pgmap v89: 1 pgs: 1 peering; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail 2026-03-08T23:59:50.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: Removing key for client.agent.vm09 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "client.agent.vm09"}]: dispatch 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "client.agent.vm09"}]': finished 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:50.727 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:51.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 08 23:59:50 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a[51092]: 2026-03-08T23:59:50.880+0000 7ff3198c1640 -1 mgr.server reply reply (16) Device or resource busy OSD(s) 5 last reported they still store some PG data, and not all PGs are active+clean; we cannot be sure they aren't still needed. 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:51 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:52.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:52.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:51 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:52.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a[50882]: 2026-03-08T23:59:52.265+0000 7f58ac9ac640 -1 mon.a@0(leader).osd e40 definitely_dead 0 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: pgmap v90: 1 pgs: 1 active+clean+wait; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:53.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:53.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:53.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:53.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:52 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: pgmap v90: 1 pgs: 1 active+clean+wait; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:53.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:52 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd down", "ids": ["5"]}]: dispatch 2026-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 systemd[1]: Stopping Ceph osd.5 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5[60109]: 2026-03-08T23:59:53.504+0000 7f119fb97640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.5 -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-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5[60109]: 2026-03-08T23:59:53.504+0000 7f119fb97640 -1 osd.5 40 *** Got signal Terminated *** 2026-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5[60109]: 2026-03-08T23:59:53.504+0000 7f119fb97640 -1 osd.5 40 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71568]: 2026-03-08 23:59:53.525909385 +0000 UTC m=+0.035097204 container died 01d82450f7597c498ee9fe4c63d4279f77a98ffdc1ac9cd4c054cd28461e9dd6 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5, org.label-schema.build-date=20260223, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=squid, org.label-schema.schema-version=1.0) 2026-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71568]: 2026-03-08 23:59:53.559082086 +0000 UTC m=+0.068269905 container remove 01d82450f7597c498ee9fe4c63d4279f77a98ffdc1ac9cd4c054cd28461e9dd6 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, OSD_FLAVOR=default, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=squid, org.label-schema.license=GPLv2) 2026-03-08T23:59:53.717 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 bash[71568]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71637]: 2026-03-08 23:59:53.71652573 +0000 UTC m=+0.017581829 container create 33808c51ab644c90405a7ebc2e41ff499dd6aa8673da16dbe96c6c54b877f1e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5-deactivate, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260223, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, CEPH_REF=squid, OSD_FLAVOR=default, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71637]: 2026-03-08 23:59:53.752290132 +0000 UTC m=+0.053346231 container init 33808c51ab644c90405a7ebc2e41ff499dd6aa8673da16dbe96c6c54b877f1e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, CEPH_REF=squid, OSD_FLAVOR=default, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260223, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71637]: 2026-03-08 23:59:53.757392283 +0000 UTC m=+0.058448382 container start 33808c51ab644c90405a7ebc2e41ff499dd6aa8673da16dbe96c6c54b877f1e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5-deactivate, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=squid, ceph=True, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.label-schema.build-date=20260223, org.label-schema.schema-version=1.0, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71637]: 2026-03-08 23:59:53.758415117 +0000 UTC m=+0.059471206 container attach 33808c51ab644c90405a7ebc2e41ff499dd6aa8673da16dbe96c6c54b877f1e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5-deactivate, CEPH_REF=squid, OSD_FLAVOR=default, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0) 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71637]: 2026-03-08 23:59:53.710058386 +0000 UTC m=+0.011114485 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71656]: 2026-03-08 23:59:53.917232182 +0000 UTC m=+0.009453145 container died 33808c51ab644c90405a7ebc2e41ff499dd6aa8673da16dbe96c6c54b877f1e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5-deactivate, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, org.label-schema.build-date=20260223) 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 podman[71656]: 2026-03-08 23:59:53.930392094 +0000 UTC m=+0.022613046 container remove 33808c51ab644c90405a7ebc2e41ff499dd6aa8673da16dbe96c6c54b877f1e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-5-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, CEPH_REF=squid, org.label-schema.build-date=20260223, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3) 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.5.service: Deactivated successfully. 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 systemd[1]: Stopped Ceph osd.5 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9. 2026-03-08T23:59:53.968 INFO:journalctl@ceph.osd.5.vm09.stdout:Mar 08 23:59:53 vm09 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.5.service: Consumed 1.131s CPU time, 88.4M memory peak. 2026-03-08T23:59:54.014 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm09 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-03-08T23:59:54.135 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:53 vm02 ceph-mon[50886]: osdmap e41: 5 total, 4 up, 5 in 2026-03-08T23:59:54.203 INFO:teuthology.orchestra.run.vm02.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-03-08T23:59:54.203 INFO:teuthology.orchestra.run.vm02.stderr:osd.5 vm09 running (32s) 2s ago 32s 60.9M 1664M 19.2.3-678-ge911bdeb 654f31e6858e 01d82450f759 ' 2026-03-08T23:59:54.203 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-03-08T23:59:54.203 INFO:teuthology.orchestra.run.vm02.stderr:osd.5 vm09 running (32s) 2s ago 32s 60.9M 1664M 19.2.3-678-ge911bdeb 654f31e6858e 01d82450f759 ' '!=' 'No daemons reported' ']' 2026-03-08T23:59:54.203 INFO:teuthology.orchestra.run.vm02.stderr:+ sleep 15 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-03-08T23:59:54.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:53 vm05 ceph-mon[78959]: osdmap e41: 5 total, 4 up, 5 in 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: osd.5 now down 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: Removing daemon osd.5 from vm09 -- ports [] 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: pgmap v92: 1 pgs: 1 active+clean+wait; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 61 KiB/s, 0 objects/s recovering 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: Cluster is now healthy 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:59:55.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:54 vm02 ceph-mon[50886]: osdmap e42: 4 total, 4 up, 4 in 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: osd.5 now down 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: Removing daemon osd.5 from vm09 -- ports [] 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: pgmap v92: 1 pgs: 1 active+clean+wait; 449 KiB data, 134 MiB used, 100 GiB / 100 GiB avail; 61 KiB/s, 0 objects/s recovering 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth rm", "entity": "osd.5"}]: dispatch 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]: dispatch 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: Cluster is now healthy 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-03-08T23:59:55.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:54 vm05 ceph-mon[78959]: osdmap e42: 4 total, 4 up, 4 in 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: Removing key for osd.5 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: Successfully removed osd.5 on vm09 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: Successfully purged osd.5 on vm09 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: Zapping devices for osd.5 on vm09 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:56.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:55 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: from='client.14538 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: Removing key for osd.5 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: Successfully removed osd.5 on vm09 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: Successfully purged osd.5 on vm09 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: Zapping devices for osd.5 on vm09 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:56.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:56.378 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:55 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:56 vm02 ceph-mon[50886]: pgmap v94: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:56 vm02 ceph-mon[50886]: Successfully zapped devices for osd.5 on vm09 2026-03-08T23:59:57.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:56 vm05 ceph-mon[78959]: pgmap v94: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:57.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:56 vm05 ceph-mon[78959]: Successfully zapped devices for osd.5 on vm09 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: Detected new or changed devices on vm09 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: pgmap v95: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:57 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: Detected new or changed devices on vm09 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: pgmap v95: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:57 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:59.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:59 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:59.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:59 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:59.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:59 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:59.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:59 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:59.877 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 08 23:59:59 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:59.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:59.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-08T23:59:59.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-08T23:59:59.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-08T23:59:59.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 08 23:59:59 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:00.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:00 vm05 ceph-mon[78959]: pgmap v96: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:00.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:00 vm05 ceph-mon[78959]: overall HEALTH_OK 2026-03-09T00:00:00.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:00 vm02 ceph-mon[50886]: pgmap v96: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:00.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:00 vm02 ceph-mon[50886]: overall HEALTH_OK 2026-03-09T00:00:02.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:02 vm02 ceph-mon[50886]: pgmap v97: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:02.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:02.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:02.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:02 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:03.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:02 vm05 ceph-mon[78959]: pgmap v97: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:03.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:03.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:03.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:02 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:04 vm02 ceph-mon[50886]: pgmap v98: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:05.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:04 vm05 ceph-mon[78959]: pgmap v98: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:06 vm02 ceph-mon[50886]: pgmap v99: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:07.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:06 vm05 ceph-mon[78959]: pgmap v99: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:08 vm02 ceph-mon[50886]: pgmap v100: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:09.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:08 vm05 ceph-mon[78959]: pgmap v100: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:09.207 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm09 2026-03-09T00:00:09.381 INFO:teuthology.orchestra.run.vm02.stderr:+ HOST_C_DAEMONS='No daemons reported' 2026-03-09T00:00:09.381 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2026-03-09T00:00:09.381 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-03-09T00:00:09.533 INFO:teuthology.orchestra.run.vm02.stderr:17 2026-03-09T00:00:09.546 INFO:teuthology.orchestra.run.vm02.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-03-09T00:00:09.557 INFO:teuthology.orchestra.run.vm02.stderr:++ cat crushmap.txt 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:+ CRUSH_MAP='# begin crush map 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_tries 0 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_fallback_tries 0 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_total_tries 50 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_descend_once 1 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_vary_r 1 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_stable 1 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable straw_calc_version 1 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:tunable allowed_bucket_algs 54 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:# devices 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:device 0 osd.0 class hdd 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:device 1 osd.1 class hdd 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:device 2 osd.2 class hdd 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:device 3 osd.3 class hdd 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:# types 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 0 osd 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 1 host 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 2 chassis 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 3 rack 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 4 row 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 5 pdu 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 6 pod 2026-03-09T00:00:09.560 INFO:teuthology.orchestra.run.vm02.stderr:type 7 room 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:type 8 datacenter 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:type 9 zone 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:type 10 region 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:type 11 root 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:# buckets 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:host vm02 { 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -3 # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -4 class hdd # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item osd.0 weight 0.01949 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item osd.1 weight 0.01949 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:host vm05 { 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -5 # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -6 class hdd # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item osd.2 weight 0.01949 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item osd.3 weight 0.01949 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:host vm09 { 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -7 # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -8 class hdd # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.00000 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:root default { 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -1 # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id -2 class hdd # do not change unnecessarily 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.07794 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item vm02 weight 0.03897 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item vm05 weight 0.03897 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: item vm09 weight 0.00000 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:# rules 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:rule replicated_rule { 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: id 0 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: type replicated 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: step take default 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: step choose firstn 0 type osd 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: step emit 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:09.561 INFO:teuthology.orchestra.run.vm02.stderr:# end crush map' 2026-03-09T00:00:09.562 INFO:teuthology.orchestra.run.vm02.stderr:+ grep -q vm09 2026-03-09T00:00:09.562 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch host rm vm09 --rm-crush-entry 2026-03-09T00:00:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:09 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/357807361' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2026-03-09T00:00:10.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:09 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/357807361' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2026-03-09T00:00:10.676 INFO:teuthology.orchestra.run.vm02.stdout:Removed host 'vm09' 2026-03-09T00:00:10.686 INFO:teuthology.orchestra.run.vm02.stderr:+ sleep 30 2026-03-09T00:00:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:10 vm02 ceph-mon[50886]: pgmap v101: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:10 vm02 ceph-mon[50886]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-09T00:00:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:10 vm02 ceph-mon[50886]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "vm09", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-09T00:00:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:10 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "vm09"}]: dispatch 2026-03-09T00:00:11.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:10 vm05 ceph-mon[78959]: pgmap v101: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:11.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:10 vm05 ceph-mon[78959]: from='client.14542 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm09", "target": ["mon-mgr", ""]}]: dispatch 2026-03-09T00:00:11.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:10 vm05 ceph-mon[78959]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "vm09", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-09T00:00:11.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:10 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "osd crush remove", "name": "vm09"}]: dispatch 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "vm09"}]': finished 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: osdmap e43: 4 total, 4 up, 4 in 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.vm09"}]: dispatch 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.vm09"}]': finished 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: Removed host vm09 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-09T00:00:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:11 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "vm09"}]': finished 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: osdmap e43: 4 total, 4 up, 4 in 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix":"config-key del","key":"mgr/cephadm/host.vm09"}]: dispatch 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.vm09"}]': finished 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: Removed host vm09 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2026-03-09T00:00:12.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:11 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:12 vm02 ceph-mon[50886]: pgmap v103: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:13.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:12 vm05 ceph-mon[78959]: pgmap v103: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:14 vm02 ceph-mon[50886]: pgmap v104: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:15.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:14 vm05 ceph-mon[78959]: pgmap v104: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:16 vm02 ceph-mon[50886]: pgmap v105: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:17.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:16 vm05 ceph-mon[78959]: pgmap v105: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:19.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:18 vm05 ceph-mon[78959]: pgmap v106: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:19.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:19.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:19.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:18 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:19.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:18 vm02 ceph-mon[50886]: pgmap v106: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:19.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:19.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:19.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:18 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:21.113 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:20 vm05 ceph-mon[78959]: pgmap v107: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:20 vm02 ceph-mon[50886]: pgmap v107: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:23.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:22 vm05 ceph-mon[78959]: pgmap v108: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:23.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:23.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:23.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:22 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:22 vm02 ceph-mon[50886]: pgmap v108: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:22 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:25.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:24 vm05 ceph-mon[78959]: pgmap v109: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:25.185 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:24 vm02 ceph-mon[50886]: pgmap v109: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:27.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:26 vm05 ceph-mon[78959]: pgmap v110: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:27.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:26 vm02 ceph-mon[50886]: pgmap v110: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:29.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:28 vm05 ceph-mon[78959]: pgmap v111: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:29.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:28 vm02 ceph-mon[50886]: pgmap v111: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:31.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:30 vm05 ceph-mon[78959]: pgmap v112: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:31.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:30 vm02 ceph-mon[50886]: pgmap v112: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:33.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:32 vm05 ceph-mon[78959]: pgmap v113: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:33.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:32 vm02 ceph-mon[50886]: pgmap v113: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:35.127 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:34 vm05 ceph-mon[78959]: pgmap v114: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:35.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:34 vm02 ceph-mon[50886]: pgmap v114: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:37.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:36 vm02 ceph-mon[50886]: pgmap v115: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:37.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:36 vm05 ceph-mon[78959]: pgmap v115: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:39.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:38 vm02 ceph-mon[50886]: pgmap v116: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:39.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:39.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:39.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:38 vm02 ceph-mon[50886]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:39.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:38 vm05 ceph-mon[78959]: pgmap v116: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:39.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:39.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:39.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:38 vm05 ceph-mon[78959]: from='mgr.14150 192.168.123.102:0/3921820405' entity='mgr.a' 2026-03-09T00:00:40.690 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-03-09T00:00:40.844 INFO:teuthology.orchestra.run.vm02.stderr:18 2026-03-09T00:00:40.854 INFO:teuthology.orchestra.run.vm02.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-03-09T00:00:40.865 INFO:teuthology.orchestra.run.vm02.stderr:++ cat crushmap.txt 2026-03-09T00:00:40.867 INFO:teuthology.orchestra.run.vm02.stderr:+ CRUSH_MAP='# begin crush map 2026-03-09T00:00:40.867 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_tries 0 2026-03-09T00:00:40.867 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_fallback_tries 0 2026-03-09T00:00:40.867 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_total_tries 50 2026-03-09T00:00:40.867 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_descend_once 1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_vary_r 1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_stable 1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:tunable straw_calc_version 1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:tunable allowed_bucket_algs 54 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:# devices 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:device 0 osd.0 class hdd 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:device 1 osd.1 class hdd 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:device 2 osd.2 class hdd 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:device 3 osd.3 class hdd 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:# types 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 0 osd 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 1 host 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 2 chassis 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 3 rack 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 4 row 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 5 pdu 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 6 pod 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 7 room 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 8 datacenter 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 9 zone 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 10 region 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:type 11 root 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:# buckets 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:host vm02 { 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id -3 # do not change unnecessarily 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id -4 class hdd # do not change unnecessarily 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: item osd.0 weight 0.01949 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: item osd.1 weight 0.01949 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:host vm05 { 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id -5 # do not change unnecessarily 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id -6 class hdd # do not change unnecessarily 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: item osd.2 weight 0.01949 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: item osd.3 weight 0.01949 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:root default { 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id -1 # do not change unnecessarily 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id -2 class hdd # do not change unnecessarily 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.07794 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: item vm02 weight 0.03897 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: item vm05 weight 0.03897 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:# rules 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:rule replicated_rule { 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: id 0 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: type replicated 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: step take default 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: step choose firstn 0 type osd 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: step emit 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-09T00:00:40.868 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:00:40.869 INFO:teuthology.orchestra.run.vm02.stderr:# end crush map' 2026-03-09T00:00:40.869 INFO:teuthology.orchestra.run.vm02.stderr:+ grep -q vm09 2026-03-09T00:00:40.942 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:40 vm02 ceph-mon[50886]: pgmap v117: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:40.942 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:40 vm02 ceph-mon[50886]: from='client.? 192.168.123.102:0/2431012690' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2026-03-09T00:00:40.943 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-03-09T00:00:40.946 INFO:tasks.cephadm:Teardown begin 2026-03-09T00:00:40.946 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-09T00:00:40.974 DEBUG:teuthology.orchestra.run.vm05:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-09T00:00:41.003 DEBUG:teuthology.orchestra.run.vm09:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-09T00:00:41.035 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-03-09T00:00:41.035 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 -- ceph mgr module disable cephadm 2026-03-09T00:00:41.231 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/mon.a/config 2026-03-09T00:00:41.253 INFO:teuthology.orchestra.run.vm02.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-03-09T00:00:41.276 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-03-09T00:00:41.276 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-03-09T00:00:41.276 DEBUG:teuthology.orchestra.run.vm02:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-03-09T00:00:41.292 DEBUG:teuthology.orchestra.run.vm05:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-03-09T00:00:41.308 DEBUG:teuthology.orchestra.run.vm09:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-03-09T00:00:41.323 INFO:tasks.cephadm:Stopping all daemons... 2026-03-09T00:00:41.323 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2026-03-09T00:00:41.323 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a 2026-03-09T00:00:41.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:40 vm05 ceph-mon[78959]: pgmap v117: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-09T00:00:41.377 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:40 vm05 ceph-mon[78959]: from='client.? 192.168.123.102:0/2431012690' entity='client.admin' cmd=[{"prefix": "osd getcrushmap"}]: dispatch 2026-03-09T00:00:41.548 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:41 vm02 systemd[1]: Stopping Ceph mon.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:41.548 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:41 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a[50882]: 2026-03-09T00:00:41.445+0000 7f58b21b7640 -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-03-09T00:00:41.548 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:41 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a[50882]: 2026-03-09T00:00:41.445+0000 7f58b21b7640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2026-03-09T00:00:41.548 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:41 vm02 podman[68385]: 2026-03-09 00:00:41.47872029 +0000 UTC m=+0.047901032 container died c2fa0755ad466e6725c84580b93efd90e8252c98605484faa2e674364fad7c13 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, CEPH_REF=squid, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-03-09T00:00:41.548 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:41 vm02 podman[68385]: 2026-03-09 00:00:41.492588411 +0000 UTC m=+0.061769153 container remove c2fa0755ad466e6725c84580b93efd90e8252c98605484faa2e674364fad7c13 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, ceph=True, org.label-schema.build-date=20260223, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=squid, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-03-09T00:00:41.548 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 09 00:00:41 vm02 bash[68385]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-a 2026-03-09T00:00:41.557 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.a.service' 2026-03-09T00:00:41.603 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:41.604 INFO:tasks.cephadm.mon.a:Stopped mon.a 2026-03-09T00:00:41.604 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2026-03-09T00:00:41.604 DEBUG:teuthology.orchestra.run.vm05:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.b 2026-03-09T00:00:41.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:41 vm05 systemd[1]: Stopping Ceph mon.b for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:41.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:41 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-b[78955]: 2026-03-09T00:00:41.758+0000 7f29da12f640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.b -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-03-09T00:00:41.878 INFO:journalctl@ceph.mon.b.vm05.stdout:Mar 09 00:00:41 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mon-b[78955]: 2026-03-09T00:00:41.758+0000 7f29da12f640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2026-03-09T00:00:42.134 DEBUG:teuthology.orchestra.run.vm05:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.b.service' 2026-03-09T00:00:42.194 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:42.194 INFO:tasks.cephadm.mon.c:Stopped mon.b 2026-03-09T00:00:42.194 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2026-03-09T00:00:42.194 DEBUG:teuthology.orchestra.run.vm09:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.c 2026-03-09T00:00:42.227 DEBUG:teuthology.orchestra.run.vm09:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mon.c.service' 2026-03-09T00:00:42.308 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:42.308 INFO:tasks.cephadm.mon.c:Stopped mon.c 2026-03-09T00:00:42.308 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2026-03-09T00:00:42.308 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a 2026-03-09T00:00:42.564 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service' 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 systemd[1]: Stopping Ceph mgr.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 podman[68488]: 2026-03-09 00:00:42.46957661 +0000 UTC m=+0.059709527 container died 50accb462ee3a4d0e760bab3e3c33e11093d032bb55f57ff16e54391876d4579 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, ceph=True, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260223, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, io.buildah.version=1.41.3) 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 podman[68488]: 2026-03-09 00:00:42.495400412 +0000 UTC m=+0.085533329 container remove 50accb462ee3a4d0e760bab3e3c33e11093d032bb55f57ff16e54391876d4579 (image=quay.ceph.io/ceph-ci/ceph:e911bdebe5c8faa3800735d1568fcdca65db60df, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_REF=squid, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.41.3) 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 bash[68488]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-mgr-a 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service: Deactivated successfully. 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 systemd[1]: Stopped Ceph mgr.a for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9. 2026-03-09T00:00:42.588 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 09 00:00:42 vm02 systemd[1]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.a.service: Consumed 21.430s CPU time. 2026-03-09T00:00:42.605 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:42.605 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2026-03-09T00:00:42.605 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2026-03-09T00:00:42.605 DEBUG:teuthology.orchestra.run.vm05:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.b 2026-03-09T00:00:42.769 INFO:journalctl@ceph.mgr.b.vm05.stdout:Mar 09 00:00:42 vm05 systemd[1]: Stopping Ceph mgr.b for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:42.879 DEBUG:teuthology.orchestra.run.vm05:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@mgr.b.service' 2026-03-09T00:00:42.932 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:42.932 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2026-03-09T00:00:42.932 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2026-03-09T00:00:42.932 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.0 2026-03-09T00:00:43.227 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:42 vm02 systemd[1]: Stopping Ceph osd.0 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:43.227 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0[59329]: 2026-03-09T00:00:43.044+0000 7f0fa0cc9640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.0 -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-03-09T00:00:43.227 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0[59329]: 2026-03-09T00:00:43.044+0000 7f0fa0cc9640 -1 osd.0 43 *** Got signal Terminated *** 2026-03-09T00:00:43.227 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:43 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0[59329]: 2026-03-09T00:00:43.044+0000 7f0fa0cc9640 -1 osd.0 43 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68592]: 2026-03-09 00:00:48.073759694 +0000 UTC m=+5.045596663 container died 55ffa63d7d7c8040a6c9e890fd66223e12c61c9d978b314169a4940bac3105fe (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, org.label-schema.build-date=20260223, CEPH_REF=squid, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3) 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68592]: 2026-03-09 00:00:48.090977936 +0000 UTC m=+5.062814905 container remove 55ffa63d7d7c8040a6c9e890fd66223e12c61c9d978b314169a4940bac3105fe (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0, io.buildah.version=1.41.3, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260223, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.label-schema.license=GPLv2, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 bash[68592]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68658]: 2026-03-09 00:00:48.237539979 +0000 UTC m=+0.017258609 container create 270804fd2544b010fbae8b606eef38c3b558c5d311220026ce9afff4b4398e88 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260223, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.opencontainers.image.authors=Ceph Release Team , ceph=True, CEPH_REF=squid, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68658]: 2026-03-09 00:00:48.279125618 +0000 UTC m=+0.058844258 container init 270804fd2544b010fbae8b606eef38c3b558c5d311220026ce9afff4b4398e88 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0-deactivate, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, ceph=True, CEPH_REF=squid, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260223, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68658]: 2026-03-09 00:00:48.283143309 +0000 UTC m=+0.062861939 container start 270804fd2544b010fbae8b606eef38c3b558c5d311220026ce9afff4b4398e88 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260223, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, CEPH_REF=squid, org.opencontainers.image.authors=Ceph Release Team , ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68658]: 2026-03-09 00:00:48.284054534 +0000 UTC m=+0.063773155 container attach 270804fd2544b010fbae8b606eef38c3b558c5d311220026ce9afff4b4398e88 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-0-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260223, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=squid, org.label-schema.schema-version=1.0, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default) 2026-03-09T00:00:48.330 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 09 00:00:48 vm02 podman[68658]: 2026-03-09 00:00:48.230992233 +0000 UTC m=+0.010710863 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc 2026-03-09T00:00:48.440 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.0.service' 2026-03-09T00:00:48.485 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:48.485 INFO:tasks.cephadm.osd.0:Stopped osd.0 2026-03-09T00:00:48.485 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2026-03-09T00:00:48.485 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.1 2026-03-09T00:00:48.629 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:48 vm02 systemd[1]: Stopping Ceph osd.1 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:48.976 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1[62392]: 2026-03-09T00:00:48.628+0000 7efcf7191640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.1 -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-03-09T00:00:48.976 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1[62392]: 2026-03-09T00:00:48.628+0000 7efcf7191640 -1 osd.1 43 *** Got signal Terminated *** 2026-03-09T00:00:48.976 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:48 vm02 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1[62392]: 2026-03-09T00:00:48.628+0000 7efcf7191640 -1 osd.1 43 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68754]: 2026-03-09 00:00:53.656845353 +0000 UTC m=+5.042587510 container died c883ec68eb0e4c71a52e33fd936b4ab1d037880e1e55ddb4aeeb9c6f09c94a23 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1, CEPH_REF=squid, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260223, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, OSD_FLAVOR=default, io.buildah.version=1.41.3, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68754]: 2026-03-09 00:00:53.679123538 +0000 UTC m=+5.064865684 container remove c883ec68eb0e4c71a52e33fd936b4ab1d037880e1e55ddb4aeeb9c6f09c94a23 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260223, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=squid, ceph=True, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 bash[68754]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68826]: 2026-03-09 00:00:53.825503441 +0000 UTC m=+0.016161306 container create 476a4c8ff4ac67d30ff7539bd93e2bac4558a40215b41e48f19b7f212a21c97d (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, CEPH_REF=squid) 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68826]: 2026-03-09 00:00:53.873266201 +0000 UTC m=+0.063924066 container init 476a4c8ff4ac67d30ff7539bd93e2bac4558a40215b41e48f19b7f212a21c97d (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1-deactivate, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.build-date=20260223, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_REF=squid, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68826]: 2026-03-09 00:00:53.87612817 +0000 UTC m=+0.066786035 container start 476a4c8ff4ac67d30ff7539bd93e2bac4558a40215b41e48f19b7f212a21c97d (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1-deactivate, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_REF=squid, org.label-schema.build-date=20260223, OSD_FLAVOR=default, ceph=True, 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, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68826]: 2026-03-09 00:00:53.883545134 +0000 UTC m=+0.074202999 container attach 476a4c8ff4ac67d30ff7539bd93e2bac4558a40215b41e48f19b7f212a21c97d (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-1-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=squid, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, OSD_FLAVOR=default, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2) 2026-03-09T00:00:53.918 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 09 00:00:53 vm02 podman[68826]: 2026-03-09 00:00:53.818920647 +0000 UTC m=+0.009578522 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc 2026-03-09T00:00:54.044 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.1.service' 2026-03-09T00:00:54.090 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:54.090 INFO:tasks.cephadm.osd.1:Stopped osd.1 2026-03-09T00:00:54.090 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2026-03-09T00:00:54.090 DEBUG:teuthology.orchestra.run.vm05:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.2 2026-03-09T00:00:54.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:54 vm05 systemd[1]: Stopping Ceph osd.2 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:00:54.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:54 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2[83495]: 2026-03-09T00:00:54.191+0000 7fd9f88a4640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.2 -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-03-09T00:00:54.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:54 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2[83495]: 2026-03-09T00:00:54.191+0000 7fd9f88a4640 -1 osd.2 43 *** Got signal Terminated *** 2026-03-09T00:00:54.377 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:54 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2[83495]: 2026-03-09T00:00:54.191+0000 7fd9f88a4640 -1 osd.2 43 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89704]: 2026-03-09 00:00:59.218200368 +0000 UTC m=+5.043200803 container died 57e01013e3814229cd7be42499ced746a10c5833473ab70d58fc635625cc1e4c (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.build-date=20260223, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, io.buildah.version=1.41.3, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89704]: 2026-03-09 00:00:59.244072308 +0000 UTC m=+5.069072734 container remove 57e01013e3814229cd7be42499ced746a10c5833473ab70d58fc635625cc1e4c (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260223, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=squid, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, io.buildah.version=1.41.3, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 bash[89704]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89769]: 2026-03-09 00:00:59.393830444 +0000 UTC m=+0.016386362 container create d1ac4ce15da5bc833b366a76c5a85a6fbf711753d51e8db2d3385616b2f8aef2 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.41.3, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, CEPH_REF=squid, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df) 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89769]: 2026-03-09 00:00:59.434834396 +0000 UTC m=+0.057390325 container init d1ac4ce15da5bc833b366a76c5a85a6fbf711753d51e8db2d3385616b2f8aef2 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2-deactivate, org.label-schema.license=GPLv2, ceph=True, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.build-date=20260223, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, CEPH_REF=squid) 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89769]: 2026-03-09 00:00:59.437583222 +0000 UTC m=+0.060139140 container start d1ac4ce15da5bc833b366a76c5a85a6fbf711753d51e8db2d3385616b2f8aef2 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2-deactivate, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, org.label-schema.build-date=20260223, CEPH_REF=squid, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True) 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89769]: 2026-03-09 00:00:59.438561434 +0000 UTC m=+0.061117352 container attach d1ac4ce15da5bc833b366a76c5a85a6fbf711753d51e8db2d3385616b2f8aef2 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-2-deactivate, io.buildah.version=1.41.3, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260223, org.label-schema.license=GPLv2, CEPH_REF=squid, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-09T00:00:59.486 INFO:journalctl@ceph.osd.2.vm05.stdout:Mar 09 00:00:59 vm05 podman[89769]: 2026-03-09 00:00:59.386907572 +0000 UTC m=+0.009463500 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc 2026-03-09T00:00:59.600 DEBUG:teuthology.orchestra.run.vm05:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.2.service' 2026-03-09T00:00:59.636 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:00:59.636 INFO:tasks.cephadm.osd.2:Stopped osd.2 2026-03-09T00:00:59.636 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2026-03-09T00:00:59.636 DEBUG:teuthology.orchestra.run.vm05:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.3 2026-03-09T00:00:59.784 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:00:59 vm05 systemd[1]: Stopping Ceph osd.3 for 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9... 2026-03-09T00:01:00.127 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:00:59 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3[86483]: 2026-03-09T00:00:59.783+0000 7f7a209b7640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-osd -n osd.3 -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-03-09T00:01:00.127 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:00:59 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3[86483]: 2026-03-09T00:00:59.783+0000 7f7a209b7640 -1 osd.3 43 *** Got signal Terminated *** 2026-03-09T00:01:00.127 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:00:59 vm05 ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3[86483]: 2026-03-09T00:00:59.783+0000 7f7a209b7640 -1 osd.3 43 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:04 vm05 podman[89864]: 2026-03-09 00:01:04.807597283 +0000 UTC m=+5.038612442 container died c552521e28bf34e43b44b9cbe57fcecb25760e1a7e4e13cccc3647d9299dc693 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, ceph=True, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=squid, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260223) 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:04 vm05 podman[89864]: 2026-03-09 00:01:04.834908308 +0000 UTC m=+5.065923467 container remove c552521e28bf34e43b44b9cbe57fcecb25760e1a7e4e13cccc3647d9299dc693 (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, ceph=True, org.label-schema.build-date=20260223, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=squid, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:04 vm05 bash[89864]: ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:04 vm05 podman[90252]: 2026-03-09 00:01:04.987061357 +0000 UTC m=+0.019476267 container create 68d2813cabb8573f5087b7c79838f34543aa52f6cc883c61a535432d214717dd (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=squid) 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:05 vm05 podman[90252]: 2026-03-09 00:01:05.027205901 +0000 UTC m=+0.059620820 container init 68d2813cabb8573f5087b7c79838f34543aa52f6cc883c61a535432d214717dd (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, CEPH_REF=squid, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:05 vm05 podman[90252]: 2026-03-09 00:01:05.030283763 +0000 UTC m=+0.062698673 container start 68d2813cabb8573f5087b7c79838f34543aa52f6cc883c61a535432d214717dd (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, io.buildah.version=1.41.3, org.label-schema.license=GPLv2, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260223, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=squid) 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:05 vm05 podman[90252]: 2026-03-09 00:01:05.031832663 +0000 UTC m=+0.064247582 container attach 68d2813cabb8573f5087b7c79838f34543aa52f6cc883c61a535432d214717dd (image=quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc, name=ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9-osd-3-deactivate, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, OSD_FLAVOR=default, CEPH_REF=squid, 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, CEPH_SHA1=e911bdebe5c8faa3800735d1568fcdca65db60df, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, ceph=True, org.label-schema.build-date=20260223) 2026-03-09T00:01:05.077 INFO:journalctl@ceph.osd.3.vm05.stdout:Mar 09 00:01:05 vm05 podman[90252]: 2026-03-09 00:01:04.977012231 +0000 UTC m=+0.009427141 image pull 654f31e6858eb235bbece362255b685a945f2b6a367e2b88c4930c984fbb214c quay.ceph.io/ceph-ci/ceph@sha256:8fda260ab1d2d3118a1622f7df75f44f285dfe74e71793626152a711c12bf2cc 2026-03-09T00:01:05.202 DEBUG:teuthology.orchestra.run.vm05:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.3.service' 2026-03-09T00:01:05.234 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:01:05.235 INFO:tasks.cephadm.osd.3:Stopped osd.3 2026-03-09T00:01:05.235 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2026-03-09T00:01:05.235 DEBUG:teuthology.orchestra.run.vm09:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.4 2026-03-09T00:01:05.268 DEBUG:teuthology.orchestra.run.vm09:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.4.service' 2026-03-09T00:01:05.336 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:01:05.337 INFO:tasks.cephadm.osd.4:Stopped osd.4 2026-03-09T00:01:05.337 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2026-03-09T00:01:05.337 DEBUG:teuthology.orchestra.run.vm09:> sudo systemctl stop ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.5 2026-03-09T00:01:05.412 DEBUG:teuthology.orchestra.run.vm09:> sudo pkill -f 'journalctl -f -n 0 -u ceph-5b0a27d4-1b4a-11f1-9a7f-35684a443fe9@osd.5.service' 2026-03-09T00:01:05.485 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-09T00:01:05.485 INFO:tasks.cephadm.osd.5:Stopped osd.5 2026-03-09T00:01:05.486 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --force --keep-logs 2026-03-09T00:01:05.619 INFO:teuthology.orchestra.run.vm02.stdout:Deleting cluster with fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-09T00:01:06.913 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --force --keep-logs 2026-03-09T00:01:07.043 INFO:teuthology.orchestra.run.vm05.stdout:Deleting cluster with fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-09T00:01:08.317 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --force --keep-logs 2026-03-09T00:01:08.454 INFO:teuthology.orchestra.run.vm09.stdout:Deleting cluster with fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-09T00:01:08.815 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-09T00:01:08.844 DEBUG:teuthology.orchestra.run.vm05:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-09T00:01:08.870 DEBUG:teuthology.orchestra.run.vm09:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-09T00:01:08.901 INFO:tasks.cephadm:Archiving crash dumps... 2026-03-09T00:01:08.901 DEBUG:teuthology.misc:Transferring archived files from vm02:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm02/crash 2026-03-09T00:01:08.901 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash -- . 2026-03-09T00:01:08.928 INFO:teuthology.orchestra.run.vm02.stderr:tar: /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash: Cannot open: No such file or directory 2026-03-09T00:01:08.928 INFO:teuthology.orchestra.run.vm02.stderr:tar: Error is not recoverable: exiting now 2026-03-09T00:01:08.929 DEBUG:teuthology.misc:Transferring archived files from vm05:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm05/crash 2026-03-09T00:01:08.930 DEBUG:teuthology.orchestra.run.vm05:> sudo tar c -f - -C /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash -- . 2026-03-09T00:01:08.957 INFO:teuthology.orchestra.run.vm05.stderr:tar: /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash: Cannot open: No such file or directory 2026-03-09T00:01:08.957 INFO:teuthology.orchestra.run.vm05.stderr:tar: Error is not recoverable: exiting now 2026-03-09T00:01:08.959 DEBUG:teuthology.misc:Transferring archived files from vm09:/var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm09/crash 2026-03-09T00:01:08.959 DEBUG:teuthology.orchestra.run.vm09:> sudo tar c -f - -C /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash -- . 2026-03-09T00:01:08.987 INFO:teuthology.orchestra.run.vm09.stderr:tar: /var/lib/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/crash: Cannot open: No such file or directory 2026-03-09T00:01:08.988 INFO:teuthology.orchestra.run.vm09.stderr:tar: Error is not recoverable: exiting now 2026-03-09T00:01:08.989 INFO:tasks.cephadm:Checking cluster log for badness... 2026-03-09T00:01:08.989 DEBUG:teuthology.orchestra.run.vm02:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v MON_DOWN | egrep -v 'mons down' | egrep -v 'mon down' | egrep -v 'out of quorum' | egrep -v CEPHADM_STRAY_HOST | egrep -v CEPHADM_STRAY_DAEMON | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2026-03-09T00:01:09.020 INFO:tasks.cephadm:Compressing logs... 2026-03-09T00:01:09.020 DEBUG:teuthology.orchestra.run.vm02:> 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-03-09T00:01:09.062 DEBUG:teuthology.orchestra.run.vm05:> 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-03-09T00:01:09.064 DEBUG:teuthology.orchestra.run.vm09:> 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-03-09T00:01:09.088 INFO:teuthology.orchestra.run.vm05.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-03-09T00:01:09.088 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-03-09T00:01:09.088 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log 2026-03-09T00:01:09.089 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.b.log 2026-03-09T00:01:09.089 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log: 83.3% -- replaced with /var/log/ceph/cephadm.log.gz 2026-03-09T00:01:09.090 INFO:teuthology.orchestra.run.vm02.stderr:find: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-03-09T00:01:09.090 INFO:teuthology.orchestra.run.vm02.stderr:‘/var/log/rbd-target-api’: No such file or directory 2026-03-09T00:01:09.091 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log 2026-03-09T00:01:09.092 INFO:teuthology.orchestra.run.vm09.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-03-09T00:01:09.093 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.a.log 2026-03-09T00:01:09.093 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.b.log: 95.4% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log.gz 2026-03-09T00:01:09.093 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log 2026-03-09T00:01:09.094 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.a.log: 87.0% -- replaced with /var/log/ceph/cephadm.log.gz 2026-03-09T00:01:09.094 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log 2026-03-09T00:01:09.094 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-03-09T00:01:09.094 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.c.log 2026-03-09T00:01:09.094 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log: 83.2% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log.gz 2026-03-09T00:01:09.094 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log 2026-03-09T00:01:09.095 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log: 90.9% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log.gz 2026-03-09T00:01:09.096 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mgr.b.log 2026-03-09T00:01:09.096 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/cephadm.log: 84.7% -- replaced with /var/log/ceph/cephadm.log.gz 2026-03-09T00:01:09.096 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log 2026-03-09T00:01:09.096 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log: 85.0% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log.gz 2026-03-09T00:01:09.096 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.2.log 2026-03-09T00:01:09.098 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log 2026-03-09T00:01:09.099 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mgr.b.log: 90.4% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mgr.b.log.gz 2026-03-09T00:01:09.099 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.3.log 2026-03-09T00:01:09.099 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mgr.a.log 2026-03-09T00:01:09.100 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log: 85.1% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log.gz 2026-03-09T00:01:09.100 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log 2026-03-09T00:01:09.102 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log: 95.1% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log.gz 2026-03-09T00:01:09.102 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log 2026-03-09T00:01:09.103 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log: 81.1% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log.gz 2026-03-09T00:01:09.103 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log 2026-03-09T00:01:09.104 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log: 90.6% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log.gz 2026-03-09T00:01:09.104 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.4.log 2026-03-09T00:01:09.105 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log: 83.6% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.log.gz 2026-03-09T00:01:09.105 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.5.log 2026-03-09T00:01:09.107 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log 2026-03-09T00:01:09.109 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log: 90.7% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.audit.log.gz 2026-03-09T00:01:09.113 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log 2026-03-09T00:01:09.114 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log: 83.2% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph.cephadm.log.gz 2026-03-09T00:01:09.116 INFO:teuthology.orchestra.run.vm09.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.4.log: /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.5.log: 92.9% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.4.log.gz 2026-03-09T00:01:09.118 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.0.log 2026-03-09T00:01:09.124 INFO:teuthology.orchestra.run.vm05.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.2.log: /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.3.log: 92.3% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.b.log.gz 2026-03-09T00:01:09.124 INFO:teuthology.orchestra.run.vm09.stderr: 93.0% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.5.log.gz 2026-03-09T00:01:09.126 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log: 95.3% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-volume.log.gz 2026-03-09T00:01:09.126 INFO:teuthology.orchestra.run.vm09.stderr: 92.2% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.c.log.gz 2026-03-09T00:01:09.126 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.1.log 2026-03-09T00:01:09.128 INFO:teuthology.orchestra.run.vm09.stderr: 2026-03-09T00:01:09.128 INFO:teuthology.orchestra.run.vm09.stderr:real 0m0.047s 2026-03-09T00:01:09.128 INFO:teuthology.orchestra.run.vm09.stderr:user 0m0.059s 2026-03-09T00:01:09.128 INFO:teuthology.orchestra.run.vm09.stderr:sys 0m0.022s 2026-03-09T00:01:09.136 INFO:teuthology.orchestra.run.vm05.stderr: 92.9% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.2.log.gz 2026-03-09T00:01:09.139 INFO:teuthology.orchestra.run.vm05.stderr: 93.0% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.3.log.gz 2026-03-09T00:01:09.140 INFO:teuthology.orchestra.run.vm05.stderr: 2026-03-09T00:01:09.141 INFO:teuthology.orchestra.run.vm05.stderr:real 0m0.063s 2026-03-09T00:01:09.141 INFO:teuthology.orchestra.run.vm05.stderr:user 0m0.089s 2026-03-09T00:01:09.141 INFO:teuthology.orchestra.run.vm05.stderr:sys 0m0.024s 2026-03-09T00:01:09.149 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.0.log: /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.1.log: 88.9% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mgr.a.log.gz 2026-03-09T00:01:09.158 INFO:teuthology.orchestra.run.vm02.stderr: 92.6% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.0.log.gz 2026-03-09T00:01:09.165 INFO:teuthology.orchestra.run.vm02.stderr: 93.0% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-osd.1.log.gz 2026-03-09T00:01:09.239 INFO:teuthology.orchestra.run.vm02.stderr: 91.6% -- replaced with /var/log/ceph/5b0a27d4-1b4a-11f1-9a7f-35684a443fe9/ceph-mon.a.log.gz 2026-03-09T00:01:09.240 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-09T00:01:09.240 INFO:teuthology.orchestra.run.vm02.stderr:real 0m0.161s 2026-03-09T00:01:09.240 INFO:teuthology.orchestra.run.vm02.stderr:user 0m0.213s 2026-03-09T00:01:09.240 INFO:teuthology.orchestra.run.vm02.stderr:sys 0m0.022s 2026-03-09T00:01:09.241 INFO:tasks.cephadm:Archiving logs... 2026-03-09T00:01:09.241 DEBUG:teuthology.misc:Transferring archived files from vm02:/var/log/ceph to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm02/log 2026-03-09T00:01:09.241 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /var/log/ceph -- . 2026-03-09T00:01:09.321 DEBUG:teuthology.misc:Transferring archived files from vm05:/var/log/ceph to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm05/log 2026-03-09T00:01:09.321 DEBUG:teuthology.orchestra.run.vm05:> sudo tar c -f - -C /var/log/ceph -- . 2026-03-09T00:01:09.363 DEBUG:teuthology.misc:Transferring archived files from vm09:/var/log/ceph to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm09/log 2026-03-09T00:01:09.363 DEBUG:teuthology.orchestra.run.vm09:> sudo tar c -f - -C /var/log/ceph -- . 2026-03-09T00:01:09.390 INFO:tasks.cephadm:Removing cluster... 2026-03-09T00:01:09.390 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --force 2026-03-09T00:01:09.511 INFO:teuthology.orchestra.run.vm02.stdout:Deleting cluster with fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-09T00:01:09.732 DEBUG:teuthology.orchestra.run.vm05:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --force 2026-03-09T00:01:09.873 INFO:teuthology.orchestra.run.vm05.stdout:Deleting cluster with fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-09T00:01:10.097 DEBUG:teuthology.orchestra.run.vm09:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 --force 2026-03-09T00:01:10.228 INFO:teuthology.orchestra.run.vm09.stdout:Deleting cluster with fsid: 5b0a27d4-1b4a-11f1-9a7f-35684a443fe9 2026-03-09T00:01:10.447 INFO:tasks.cephadm:Removing cephadm ... 2026-03-09T00:01:10.447 DEBUG:teuthology.orchestra.run.vm02:> rm -rf /home/ubuntu/cephtest/cephadm 2026-03-09T00:01:10.464 DEBUG:teuthology.orchestra.run.vm05:> rm -rf /home/ubuntu/cephtest/cephadm 2026-03-09T00:01:10.481 DEBUG:teuthology.orchestra.run.vm09:> rm -rf /home/ubuntu/cephtest/cephadm 2026-03-09T00:01:10.498 INFO:tasks.cephadm:Teardown complete 2026-03-09T00:01:10.498 DEBUG:teuthology.run_tasks:Unwinding manager install 2026-03-09T00:01:10.500 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-03-09T00:01:10.500 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-03-09T00:01:10.505 DEBUG:teuthology.orchestra.run.vm05:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-03-09T00:01:10.524 DEBUG:teuthology.orchestra.run.vm09:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-03-09T00:01:10.573 INFO:teuthology.task.install.rpm:Removing 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 rpm system. 2026-03-09T00:01:10.573 DEBUG:teuthology.orchestra.run.vm02:> 2026-03-09T00:01:10.573 DEBUG:teuthology.orchestra.run.vm02:> for d in 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 ; do 2026-03-09T00:01:10.573 DEBUG:teuthology.orchestra.run.vm02:> sudo yum -y remove $d || true 2026-03-09T00:01:10.573 DEBUG:teuthology.orchestra.run.vm02:> done 2026-03-09T00:01:10.582 INFO:teuthology.task.install.rpm:Removing 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 rpm system. 2026-03-09T00:01:10.582 DEBUG:teuthology.orchestra.run.vm05:> 2026-03-09T00:01:10.582 DEBUG:teuthology.orchestra.run.vm05:> for d in 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 ; do 2026-03-09T00:01:10.582 DEBUG:teuthology.orchestra.run.vm05:> sudo yum -y remove $d || true 2026-03-09T00:01:10.582 DEBUG:teuthology.orchestra.run.vm05:> done 2026-03-09T00:01:10.592 INFO:teuthology.task.install.rpm:Removing 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 rpm system. 2026-03-09T00:01:10.592 DEBUG:teuthology.orchestra.run.vm09:> 2026-03-09T00:01:10.592 DEBUG:teuthology.orchestra.run.vm09:> for d in 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 ; do 2026-03-09T00:01:10.593 DEBUG:teuthology.orchestra.run.vm09:> sudo yum -y remove $d || true 2026-03-09T00:01:10.593 DEBUG:teuthology.orchestra.run.vm09:> done 2026-03-09T00:01:10.781 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 39 M 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout: mailcap noarch 2.1.49-5.el9 @baseos 78 k 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:Remove 2 Packages 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 39 M 2026-03-09T00:01:10.782 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:10.784 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:10.785 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:10.798 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:10.799 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:10.805 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout: ceph-radosgw x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 39 M 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:Removing unused dependencies: 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout: mailcap noarch 2.1.49-5.el9 @baseos 78 k 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:Remove 2 Packages 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 39 M 2026-03-09T00:01:10.806 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:10.808 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:10.808 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:10.822 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:10.822 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:10.830 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout: ceph-radosgw x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 39 M 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:Removing unused dependencies: 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout: mailcap noarch 2.1.49-5.el9 @baseos 78 k 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:Remove 2 Packages 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 39 M 2026-03-09T00:01:10.831 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:10.832 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:10.834 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:10.834 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:10.849 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:10.849 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:10.857 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:10.860 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.860 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:10.860 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-09T00:01:10.860 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target". 2026-03-09T00:01:10.860 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-radosgw.target". 2026-03-09T00:01:10.860 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:10.864 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.875 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.883 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:10.885 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.886 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:10.886 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-09T00:01:10.886 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target". 2026-03-09T00:01:10.886 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-radosgw.target". 2026-03-09T00:01:10.886 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:10.889 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.890 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:10.897 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.910 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.910 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:10.910 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-09T00:01:10.910 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target". 2026-03-09T00:01:10.910 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-radosgw.target". 2026-03-09T00:01:10.910 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:10.912 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:10.914 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.926 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:10.941 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:10.963 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:10.963 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:11.010 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:11.011 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:11.027 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:11.027 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.027 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:11.027 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 mailcap-2.1.49-5.el9.noarch 2026-03-09T00:01:11.027 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.027 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:11.040 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:11.040 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:11.070 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:11.071 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.071 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:11.071 INFO:teuthology.orchestra.run.vm05.stdout: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 mailcap-2.1.49-5.el9.noarch 2026-03-09T00:01:11.071 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.071 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:11.094 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-09T00:01:11.094 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.094 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:11.094 INFO:teuthology.orchestra.run.vm09.stdout: ceph-radosgw-2:19.2.3-678.ge911bdeb.el9.x86_64 mailcap-2.1.49-5.el9.noarch 2026-03-09T00:01:11.094 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.094 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 210 M 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout: libxslt x86_64 1.1.34-12.el9 @appstream 743 k 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout: socat x86_64 1.7.4.1-8.el9 @appstream 1.1 M 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet x86_64 1.6.1-20.el9 @appstream 195 k 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:11.270 INFO:teuthology.orchestra.run.vm02.stdout:Remove 4 Packages 2026-03-09T00:01:11.271 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.271 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 212 M 2026-03-09T00:01:11.271 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:11.274 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:11.274 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:11.301 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:11.301 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:11.319 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: ceph-test x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 210 M 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:Removing unused dependencies: 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: libxslt x86_64 1.1.34-12.el9 @appstream 743 k 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: socat x86_64 1.7.4.1-8.el9 @appstream 1.1 M 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: xmlstarlet x86_64 1.6.1-20.el9 @appstream 195 k 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:Remove 4 Packages 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 212 M 2026-03-09T00:01:11.320 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:11.323 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:11.323 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:11.348 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:11.348 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:11.355 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: ceph-test x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 210 M 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:Removing unused dependencies: 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: libxslt x86_64 1.1.34-12.el9 @appstream 743 k 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: socat x86_64 1.7.4.1-8.el9 @appstream 1.1 M 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: xmlstarlet x86_64 1.6.1-20.el9 @appstream 195 k 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:Remove 4 Packages 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.356 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 212 M 2026-03-09T00:01:11.357 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:11.360 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:11.360 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:11.373 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:11.380 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 1/4 2026-03-09T00:01:11.382 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : xmlstarlet-1.6.1-20.el9.x86_64 2/4 2026-03-09T00:01:11.385 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libxslt-1.1.34-12.el9.x86_64 3/4 2026-03-09T00:01:11.386 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:11.386 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:11.404 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : socat-1.7.4.1-8.el9.x86_64 4/4 2026-03-09T00:01:11.418 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:11.423 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 1/4 2026-03-09T00:01:11.426 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : xmlstarlet-1.6.1-20.el9.x86_64 2/4 2026-03-09T00:01:11.429 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libxslt-1.1.34-12.el9.x86_64 3/4 2026-03-09T00:01:11.445 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : socat-1.7.4.1-8.el9.x86_64 4/4 2026-03-09T00:01:11.452 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:11.457 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 1/4 2026-03-09T00:01:11.459 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : xmlstarlet-1.6.1-20.el9.x86_64 2/4 2026-03-09T00:01:11.462 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libxslt-1.1.34-12.el9.x86_64 3/4 2026-03-09T00:01:11.474 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: socat-1.7.4.1-8.el9.x86_64 4/4 2026-03-09T00:01:11.475 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 1/4 2026-03-09T00:01:11.475 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 2/4 2026-03-09T00:01:11.475 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 3/4 2026-03-09T00:01:11.480 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : socat-1.7.4.1-8.el9.x86_64 4/4 2026-03-09T00:01:11.512 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: socat-1.7.4.1-8.el9.x86_64 4/4 2026-03-09T00:01:11.512 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 1/4 2026-03-09T00:01:11.512 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 2/4 2026-03-09T00:01:11.512 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 3/4 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 libxslt-1.1.34-12.el9.x86_64 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout: socat-1.7.4.1-8.el9.x86_64 xmlstarlet-1.6.1-20.el9.x86_64 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.524 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:11.545 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: socat-1.7.4.1-8.el9.x86_64 4/4 2026-03-09T00:01:11.545 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 1/4 2026-03-09T00:01:11.545 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 2/4 2026-03-09T00:01:11.545 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 3/4 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout: ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 libxslt-1.1.34-12.el9.x86_64 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout: socat-1.7.4.1-8.el9.x86_64 xmlstarlet-1.6.1-20.el9.x86_64 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.560 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:11.593 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 4/4 2026-03-09T00:01:11.593 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.593 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:11.593 INFO:teuthology.orchestra.run.vm09.stdout: ceph-test-2:19.2.3-678.ge911bdeb.el9.x86_64 libxslt-1.1.34-12.el9.x86_64 2026-03-09T00:01:11.593 INFO:teuthology.orchestra.run.vm09.stdout: socat-1.7.4.1-8.el9.x86_64 xmlstarlet-1.6.1-20.el9.x86_64 2026-03-09T00:01:11.593 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.594 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout: ceph x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 0 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-09T00:01:11.752 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 7.5 M 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 18 M 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: lua x86_64 5.4.4-4.el9 @appstream 593 k 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel x86_64 5.4.4-4.el9 @crb 49 k 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: luarocks noarch 3.9.2-5.el9 @epel 692 k 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: unzip x86_64 6.0-59.el9 @baseos 389 k 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: zip x86_64 3.0-35.el9 @baseos 724 k 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout:Remove 8 Packages 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 28 M 2026-03-09T00:01:11.753 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:11.756 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:11.756 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:11.781 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:11.782 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:11.796 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: ceph x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 0 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:Removing unused dependencies: 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mds x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 7.5 M 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mon x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 18 M 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: lua x86_64 5.4.4-4.el9 @appstream 593 k 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: lua-devel x86_64 5.4.4-4.el9 @crb 49 k 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: luarocks noarch 3.9.2-5.el9 @epel 692 k 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: unzip x86_64 6.0-59.el9 @baseos 389 k 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: zip x86_64 3.0-35.el9 @baseos 724 k 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:Remove 8 Packages 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 28 M 2026-03-09T00:01:11.797 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:11.800 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:11.800 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:11.825 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:11.826 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:11.827 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:11.832 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/8 2026-03-09T00:01:11.836 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : luarocks-3.9.2-5.el9.noarch 2/8 2026-03-09T00:01:11.838 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : lua-devel-5.4.4-4.el9.x86_64 3/8 2026-03-09T00:01:11.841 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : zip-3.0-35.el9.x86_64 4/8 2026-03-09T00:01:11.844 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : unzip-6.0-59.el9.x86_64 5/8 2026-03-09T00:01:11.845 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: ceph x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 0 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:Removing unused dependencies: 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mds x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 7.5 M 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mon x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 18 M 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: lua x86_64 5.4.4-4.el9 @appstream 593 k 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: lua-devel x86_64 5.4.4-4.el9 @crb 49 k 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: luarocks noarch 3.9.2-5.el9 @epel 692 k 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: unzip x86_64 6.0-59.el9 @baseos 389 k 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: zip x86_64 3.0-35.el9 @baseos 724 k 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:Remove 8 Packages 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.846 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 28 M 2026-03-09T00:01:11.847 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : lua-5.4.4-4.el9.x86_64 6/8 2026-03-09T00:01:11.847 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:11.849 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:11.849 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:11.871 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:11.872 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.872 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:11.872 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-09T00:01:11.872 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mds.target". 2026-03-09T00:01:11.872 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mds.target". 2026-03-09T00:01:11.872 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.873 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.873 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:11.874 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:11.876 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/8 2026-03-09T00:01:11.880 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : luarocks-3.9.2-5.el9.noarch 2/8 2026-03-09T00:01:11.881 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.883 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : lua-devel-5.4.4-4.el9.x86_64 3/8 2026-03-09T00:01:11.886 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : zip-3.0-35.el9.x86_64 4/8 2026-03-09T00:01:11.889 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : unzip-6.0-59.el9.x86_64 5/8 2026-03-09T00:01:11.891 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : lua-5.4.4-4.el9.x86_64 6/8 2026-03-09T00:01:11.905 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.905 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:11.905 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-09T00:01:11.905 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mon.target". 2026-03-09T00:01:11.905 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mon.target". 2026-03-09T00:01:11.905 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:11.907 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.912 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.912 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:11.912 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-09T00:01:11.912 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mds.target". 2026-03-09T00:01:11.912 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mds.target". 2026-03-09T00:01:11.912 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.913 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.918 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:11.922 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.924 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/8 2026-03-09T00:01:11.927 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : luarocks-3.9.2-5.el9.noarch 2/8 2026-03-09T00:01:11.929 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : lua-devel-5.4.4-4.el9.x86_64 3/8 2026-03-09T00:01:11.932 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : zip-3.0-35.el9.x86_64 4/8 2026-03-09T00:01:11.934 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : unzip-6.0-59.el9.x86_64 5/8 2026-03-09T00:01:11.936 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : lua-5.4.4-4.el9.x86_64 6/8 2026-03-09T00:01:11.946 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.946 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:11.946 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-09T00:01:11.946 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mon.target". 2026-03-09T00:01:11.946 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mon.target". 2026-03-09T00:01:11.946 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:11.949 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.961 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.961 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:11.961 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-09T00:01:11.961 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mds.target". 2026-03-09T00:01:11.961 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mds.target". 2026-03-09T00:01:11.961 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.963 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.972 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 7/8 2026-03-09T00:01:11.994 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.994 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:11.994 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-09T00:01:11.994 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mon.target". 2026-03-09T00:01:11.994 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mon.target". 2026-03-09T00:01:11.994 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:11.996 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 3/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-5.4.4-4.el9.x86_64 4/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 5/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 6/8 2026-03-09T00:01:11.998 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : unzip-6.0-59.el9.x86_64 7/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 3/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : lua-5.4.4-4.el9.x86_64 4/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 5/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 6/8 2026-03-09T00:01:12.039 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : unzip-6.0-59.el9.x86_64 7/8 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : zip-3.0-35.el9.x86_64 8/8 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: lua-5.4.4-4.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: unzip-6.0-59.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: zip-3.0-35.el9.x86_64 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.060 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : zip-3.0-35.el9.x86_64 8/8 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: lua-5.4.4-4.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: unzip-6.0-59.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: zip-3.0-35.el9.x86_64 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.101 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 8/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 1/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 3/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : lua-5.4.4-4.el9.x86_64 4/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 5/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 6/8 2026-03-09T00:01:12.106 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : unzip-6.0-59.el9.x86_64 7/8 2026-03-09T00:01:12.213 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : zip-3.0-35.el9.x86_64 8/8 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: ceph-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mds-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mon-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: lua-5.4.4-4.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: unzip-6.0-59.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: zip-3.0-35.el9.x86_64 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:12.214 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:12.307 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout:=========================================================================================== 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout:=========================================================================================== 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 23 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 431 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.4 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 806 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 88 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 66 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 563 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 59 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 1.4 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 13 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp x86_64 20211102.0-4.el9 @epel 1.9 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 85 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 628 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 1.5 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 52 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 138 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup x86_64 2.8.1-3.el9 @baseos 770 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas x86_64 3.0.4-9.el9 @appstream 68 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 @appstream 11 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 @appstream 39 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs x86_64 2.9.1-3.el9 @epel 1.4 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data noarch 1.46.7-10.el9 @epel 13 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs x86_64 1.1.0-3.el9 @baseos 80 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 425 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libconfig x86_64 1.7.2-9.el9 @baseos 220 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran x86_64 11.5.0-14.el9 @baseos 2.8 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: liboath x86_64 2.6.12-1.el9 @epel 94 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath x86_64 11.5.0-14.el9 @baseos 330 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.6 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt x86_64 1.10.1-1.el9 @appstream 685 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: libunwind x86_64 1.6.2-1.el9 @epel 170 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: openblas x86_64 0.3.29-1.el9 @appstream 112 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp x86_64 0.3.29-1.el9 @appstream 46 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: pciutils x86_64 3.7.0-7.el9 @baseos 216 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: protobuf x86_64 3.14.0-17.el9 @appstream 3.5 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler x86_64 3.14.0-17.el9 @crb 2.9 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh noarch 2.13.2-5.el9 @epel 3.9 M 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand noarch 2.2.2-8.el9 @epel 82 k 2026-03-09T00:01:12.314 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel noarch 2.9.1-2.el9 @appstream 27 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 @epel 254 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt x86_64 3.2.2-1.el9 @epel 87 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools noarch 4.2.4-1.el9 @epel 93 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 702 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi noarch 2023.05.07-4.el9 @epel 6.3 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi x86_64 1.14.5-5.el9 @baseos 1.0 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-chardet noarch 4.0.0-5.el9 @anaconda 1.4 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot noarch 10.0.1-4.el9 @epel 682 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy noarch 18.6.1-2.el9 @epel 1.1 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography x86_64 36.0.1-5.el9 @baseos 4.5 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel x86_64 3.9.25-3.el9 @appstream 765 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth noarch 1:2.45.0-1.el9 @epel 1.4 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio x86_64 1.46.7-10.el9 @epel 6.7 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 @epel 418 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-idna noarch 2.10-7.el9.1 @anaconda 513 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco noarch 8.2.1-3.el9 @epel 3.7 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 @epel 24 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 @epel 55 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context noarch 6.0.1-3.el9 @epel 31 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 @epel 33 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text noarch 4.0.0-2.el9 @epel 51 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2 noarch 2.11.3-8.el9 @appstream 1.1 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpatch noarch 1.21-16.el9 @koji-override-0 55 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpointer noarch 2.0-4.el9 @koji-override-0 34 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 @epel 21 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 @appstream 832 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-logutils noarch 0.3.5-21.el9 @epel 126 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-mako noarch 1.1.4-6.el9 @appstream 534 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe x86_64 1.1.1-12.el9 @appstream 60 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools noarch 8.12.0-2.el9 @epel 378 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort noarch 7.1.1-5.el9 @epel 215 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy x86_64 1:1.23.5-2.el9 @appstream 30 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 @appstream 1.7 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-oauthlib noarch 3.1.1-5.el9 @koji-override-0 888 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging noarch 20.9-5.el9 @appstream 248 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pecan noarch 1.4.2-3.el9 @epel 1.3 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply noarch 3.11-14.el9 @baseos 430 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend noarch 3.1.0-2.el9 @epel 20 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-prettytable noarch 0.7.2-27.el9 @koji-override-0 166 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf noarch 3.14.0-17.el9 @appstream 1.4 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 @epel 389 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1 noarch 0.4.8-7.el9 @appstream 622 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 @appstream 1.0 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser noarch 2.20-6.el9 @baseos 745 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pysocks noarch 1.7.1-12.el9 @anaconda 88 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-pytz noarch 2021.1-5.el9 @koji-override-0 176 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru noarch 0.7-16.el9 @epel 83 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests noarch 2.25.1-10.el9 @baseos 405 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 @appstream 119 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes noarch 2.5.1-5.el9 @epel 459 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa noarch 4.9-2.el9 @epel 202 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy x86_64 1.9.3-2.el9 @appstream 76 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora noarch 5.0.0-2.el9 @epel 96 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml noarch 0.10.2-6.el9 @appstream 99 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions noarch 4.15.0-1.el9 @epel 447 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3 noarch 1.26.5-7.el9 @baseos 746 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-webob noarch 1.8.8-2.el9 @epel 1.2 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client noarch 1.2.3-2.el9 @epel 319 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 @epel 1.9 M 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile noarch 2.0-10.el9 @epel 35 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: qatlib x86_64 25.08.0-2.el9 @appstream 639 k 2026-03-09T00:01:12.315 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service x86_64 25.08.0-2.el9 @appstream 69 k 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs x86_64 1.3.1-1.el9 @appstream 148 k 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout:=========================================================================================== 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout:Remove 102 Packages 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 613 M 2026-03-09T00:01:12.316 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:12.326 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout:=========================================================================================== 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout:=========================================================================================== 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-base x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 23 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout:Removing dependent packages: 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-immutable-object-cache x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 431 k 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.4 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-cephadm noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 806 k 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-dashboard noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 88 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-diskprediction-local noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 66 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-rook noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 563 k 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-osd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 59 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-volume noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 1.4 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: rbd-mirror x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 13 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout:Removing unused dependencies: 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: abseil-cpp x86_64 20211102.0-4.el9 @epel 1.9 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 85 M 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-grafana-dashboards noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 628 k 2026-03-09T00:01:12.332 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-modules-core noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 1.5 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: ceph-prometheus-alerts noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 52 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: ceph-selinux x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 138 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: cryptsetup x86_64 2.8.1-3.el9 @baseos 770 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas x86_64 3.0.4-9.el9 @appstream 68 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 @appstream 11 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 @appstream 39 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: gperftools-libs x86_64 2.9.1-3.el9 @epel 1.4 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: grpc-data noarch 1.46.7-10.el9 @epel 13 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: ledmon-libs x86_64 1.1.0-3.el9 @baseos 80 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libcephsqlite x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 425 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libconfig x86_64 1.7.2-9.el9 @baseos 220 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libgfortran x86_64 11.5.0-14.el9 @baseos 2.8 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: liboath x86_64 2.6.12-1.el9 @epel 94 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libquadmath x86_64 11.5.0-14.el9 @baseos 330 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libradosstriper1 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.6 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libstoragemgmt x86_64 1.10.1-1.el9 @appstream 685 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: libunwind x86_64 1.6.2-1.el9 @epel 170 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: openblas x86_64 0.3.29-1.el9 @appstream 112 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: openblas-openmp x86_64 0.3.29-1.el9 @appstream 46 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: pciutils x86_64 3.7.0-7.el9 @baseos 216 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: protobuf x86_64 3.14.0-17.el9 @appstream 3.5 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: protobuf-compiler x86_64 3.14.0-17.el9 @crb 2.9 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-asyncssh noarch 2.13.2-5.el9 @epel 3.9 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-autocommand noarch 2.2.2-8.el9 @epel 82 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-babel noarch 2.9.1-2.el9 @appstream 27 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 @epel 254 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-bcrypt x86_64 3.2.2-1.el9 @epel 87 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-cachetools noarch 4.2.4-1.el9 @epel 93 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 702 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-certifi noarch 2023.05.07-4.el9 @epel 6.3 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-cffi x86_64 1.14.5-5.el9 @baseos 1.0 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-chardet noarch 4.0.0-5.el9 @anaconda 1.4 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-cheroot noarch 10.0.1-4.el9 @epel 682 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-cherrypy noarch 18.6.1-2.el9 @epel 1.1 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-cryptography x86_64 36.0.1-5.el9 @baseos 4.5 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-devel x86_64 3.9.25-3.el9 @appstream 765 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-google-auth noarch 1:2.45.0-1.el9 @epel 1.4 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio x86_64 1.46.7-10.el9 @epel 6.7 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 @epel 418 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-idna noarch 2.10-7.el9.1 @anaconda 513 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco noarch 8.2.1-3.el9 @epel 3.7 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 @epel 24 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 @epel 55 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-context noarch 6.0.1-3.el9 @epel 31 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 @epel 33 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-text noarch 4.0.0-2.el9 @epel 51 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jinja2 noarch 2.11.3-8.el9 @appstream 1.1 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jsonpatch noarch 1.21-16.el9 @koji-override-0 55 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-jsonpointer noarch 2.0-4.el9 @koji-override-0 34 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 @epel 21 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 @appstream 832 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-logutils noarch 0.3.5-21.el9 @epel 126 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-mako noarch 1.1.4-6.el9 @appstream 534 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-markupsafe x86_64 1.1.1-12.el9 @appstream 60 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-more-itertools noarch 8.12.0-2.el9 @epel 378 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-natsort noarch 7.1.1-5.el9 @epel 215 k 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy x86_64 1:1.23.5-2.el9 @appstream 30 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 @appstream 1.7 M 2026-03-09T00:01:12.333 INFO:teuthology.orchestra.run.vm05.stdout: python3-oauthlib noarch 3.1.1-5.el9 @koji-override-0 888 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-packaging noarch 20.9-5.el9 @appstream 248 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pecan noarch 1.4.2-3.el9 @epel 1.3 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-ply noarch 3.11-14.el9 @baseos 430 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-portend noarch 3.1.0-2.el9 @epel 20 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-prettytable noarch 0.7.2-27.el9 @koji-override-0 166 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-protobuf noarch 3.14.0-17.el9 @appstream 1.4 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 @epel 389 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1 noarch 0.4.8-7.el9 @appstream 622 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 @appstream 1.0 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pycparser noarch 2.20-6.el9 @baseos 745 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pysocks noarch 1.7.1-12.el9 @anaconda 88 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-pytz noarch 2021.1-5.el9 @koji-override-0 176 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-repoze-lru noarch 0.7-16.el9 @epel 83 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests noarch 2.25.1-10.el9 @baseos 405 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 @appstream 119 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-routes noarch 2.5.1-5.el9 @epel 459 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-rsa noarch 4.9-2.el9 @epel 202 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-scipy x86_64 1.9.3-2.el9 @appstream 76 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-tempora noarch 5.0.0-2.el9 @epel 96 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-toml noarch 0.10.2-6.el9 @appstream 99 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-typing-extensions noarch 4.15.0-1.el9 @epel 447 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-urllib3 noarch 1.26.5-7.el9 @baseos 746 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-webob noarch 1.8.8-2.el9 @epel 1.2 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-websocket-client noarch 1.2.3-2.el9 @epel 319 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 @epel 1.9 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: python3-zc-lockfile noarch 2.0-10.el9 @epel 35 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: qatlib x86_64 25.08.0-2.el9 @appstream 639 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: qatlib-service x86_64 25.08.0-2.el9 @appstream 69 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: qatzip-libs x86_64 1.3.1-1.el9 @appstream 148 k 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout:=========================================================================================== 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout:Remove 102 Packages 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 613 M 2026-03-09T00:01:12.334 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:12.343 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:12.343 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:12.363 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:12.363 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:12.459 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:12.459 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:12.479 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:12.479 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:12.485 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:12.491 INFO:teuthology.orchestra.run.vm09.stdout:=========================================================================================== 2026-03-09T00:01:12.491 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:12.491 INFO:teuthology.orchestra.run.vm09.stdout:=========================================================================================== 2026-03-09T00:01:12.491 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:12.491 INFO:teuthology.orchestra.run.vm09.stdout: ceph-base x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 23 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout:Removing dependent packages: 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-immutable-object-cache x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 431 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.4 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-cephadm noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 806 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-dashboard noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 88 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-diskprediction-local noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 66 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-rook noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 563 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-osd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 59 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-volume noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 1.4 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: rbd-mirror x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 13 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout:Removing unused dependencies: 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: abseil-cpp x86_64 20211102.0-4.el9 @epel 1.9 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 85 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-grafana-dashboards noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 628 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-modules-core noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 1.5 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-prometheus-alerts noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 52 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ceph-selinux x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 138 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: cryptsetup x86_64 2.8.1-3.el9 @baseos 770 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas x86_64 3.0.4-9.el9 @appstream 68 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 @appstream 11 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 @appstream 39 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: gperftools-libs x86_64 2.9.1-3.el9 @epel 1.4 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: grpc-data noarch 1.46.7-10.el9 @epel 13 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: ledmon-libs x86_64 1.1.0-3.el9 @baseos 80 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libcephsqlite x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 425 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libconfig x86_64 1.7.2-9.el9 @baseos 220 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libgfortran x86_64 11.5.0-14.el9 @baseos 2.8 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: liboath x86_64 2.6.12-1.el9 @epel 94 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libquadmath x86_64 11.5.0-14.el9 @baseos 330 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libradosstriper1 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.6 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libstoragemgmt x86_64 1.10.1-1.el9 @appstream 685 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: libunwind x86_64 1.6.2-1.el9 @epel 170 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: openblas x86_64 0.3.29-1.el9 @appstream 112 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: openblas-openmp x86_64 0.3.29-1.el9 @appstream 46 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: pciutils x86_64 3.7.0-7.el9 @baseos 216 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: protobuf x86_64 3.14.0-17.el9 @appstream 3.5 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: protobuf-compiler x86_64 3.14.0-17.el9 @crb 2.9 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-asyncssh noarch 2.13.2-5.el9 @epel 3.9 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-autocommand noarch 2.2.2-8.el9 @epel 82 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-babel noarch 2.9.1-2.el9 @appstream 27 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 @epel 254 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-bcrypt x86_64 3.2.2-1.el9 @epel 87 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-cachetools noarch 4.2.4-1.el9 @epel 93 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-common x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 702 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-certifi noarch 2023.05.07-4.el9 @epel 6.3 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-cffi x86_64 1.14.5-5.el9 @baseos 1.0 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-chardet noarch 4.0.0-5.el9 @anaconda 1.4 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-cheroot noarch 10.0.1-4.el9 @epel 682 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-cherrypy noarch 18.6.1-2.el9 @epel 1.1 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-cryptography x86_64 36.0.1-5.el9 @baseos 4.5 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-devel x86_64 3.9.25-3.el9 @appstream 765 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-google-auth noarch 1:2.45.0-1.el9 @epel 1.4 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio x86_64 1.46.7-10.el9 @epel 6.7 M 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 @epel 418 k 2026-03-09T00:01:12.492 INFO:teuthology.orchestra.run.vm09.stdout: python3-idna noarch 2.10-7.el9.1 @anaconda 513 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco noarch 8.2.1-3.el9 @epel 3.7 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 @epel 24 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 @epel 55 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-context noarch 6.0.1-3.el9 @epel 31 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 @epel 33 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-text noarch 4.0.0-2.el9 @epel 51 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jinja2 noarch 2.11.3-8.el9 @appstream 1.1 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jsonpatch noarch 1.21-16.el9 @koji-override-0 55 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-jsonpointer noarch 2.0-4.el9 @koji-override-0 34 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 @epel 21 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 @appstream 832 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-logutils noarch 0.3.5-21.el9 @epel 126 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-mako noarch 1.1.4-6.el9 @appstream 534 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-markupsafe x86_64 1.1.1-12.el9 @appstream 60 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-more-itertools noarch 8.12.0-2.el9 @epel 378 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-natsort noarch 7.1.1-5.el9 @epel 215 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy x86_64 1:1.23.5-2.el9 @appstream 30 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 @appstream 1.7 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-oauthlib noarch 3.1.1-5.el9 @koji-override-0 888 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-packaging noarch 20.9-5.el9 @appstream 248 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pecan noarch 1.4.2-3.el9 @epel 1.3 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-ply noarch 3.11-14.el9 @baseos 430 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-portend noarch 3.1.0-2.el9 @epel 20 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-prettytable noarch 0.7.2-27.el9 @koji-override-0 166 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-protobuf noarch 3.14.0-17.el9 @appstream 1.4 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 @epel 389 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1 noarch 0.4.8-7.el9 @appstream 622 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 @appstream 1.0 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pycparser noarch 2.20-6.el9 @baseos 745 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pysocks noarch 1.7.1-12.el9 @anaconda 88 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-pytz noarch 2021.1-5.el9 @koji-override-0 176 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-repoze-lru noarch 0.7-16.el9 @epel 83 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests noarch 2.25.1-10.el9 @baseos 405 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 @appstream 119 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-routes noarch 2.5.1-5.el9 @epel 459 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-rsa noarch 4.9-2.el9 @epel 202 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-scipy x86_64 1.9.3-2.el9 @appstream 76 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-tempora noarch 5.0.0-2.el9 @epel 96 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-toml noarch 0.10.2-6.el9 @appstream 99 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-typing-extensions noarch 4.15.0-1.el9 @epel 447 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-urllib3 noarch 1.26.5-7.el9 @baseos 746 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-webob noarch 1.8.8-2.el9 @epel 1.2 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-websocket-client noarch 1.2.3-2.el9 @epel 319 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-werkzeug noarch 2.0.3-3.el9.1 @epel 1.9 M 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: python3-zc-lockfile noarch 2.0-10.el9 @epel 35 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: qatlib x86_64 25.08.0-2.el9 @appstream 639 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: qatlib-service x86_64 25.08.0-2.el9 @appstream 69 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: qatzip-libs x86_64 1.3.1-1.el9 @appstream 148 k 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout:=========================================================================================== 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout:Remove 102 Packages 2026-03-09T00:01:12.493 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:12.494 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 613 M 2026-03-09T00:01:12.494 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:12.520 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:12.520 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:12.610 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:12.610 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 1/102 2026-03-09T00:01:12.619 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 1/102 2026-03-09T00:01:12.628 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:12.628 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 1/102 2026-03-09T00:01:12.630 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:12.630 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:12.636 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 1/102 2026-03-09T00:01:12.641 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.641 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.641 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-09T00:01:12.641 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mgr.target". 2026-03-09T00:01:12.641 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mgr.target". 2026-03-09T00:01:12.641 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.642 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.657 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.658 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.658 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.658 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-09T00:01:12.658 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mgr.target". 2026-03-09T00:01:12.658 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mgr.target". 2026-03-09T00:01:12.658 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.659 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.672 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.683 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 3/102 2026-03-09T00:01:12.683 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 4/102 2026-03-09T00:01:12.697 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 3/102 2026-03-09T00:01:12.697 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 4/102 2026-03-09T00:01:12.744 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 4/102 2026-03-09T00:01:12.752 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-kubernetes-1:26.1.0-3.el9.noarch 5/102 2026-03-09T00:01:12.756 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 4/102 2026-03-09T00:01:12.756 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-requests-oauthlib-1.3.0-12.el9.noarch 6/102 2026-03-09T00:01:12.756 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:12.765 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-kubernetes-1:26.1.0-3.el9.noarch 5/102 2026-03-09T00:01:12.769 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:12.770 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-requests-oauthlib-1.3.0-12.el9.noarch 6/102 2026-03-09T00:01:12.771 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:12.775 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cherrypy-18.6.1-2.el9.noarch 8/102 2026-03-09T00:01:12.779 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cheroot-10.0.1-4.el9.noarch 9/102 2026-03-09T00:01:12.782 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:12.784 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:12.784 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 1/102 2026-03-09T00:01:12.788 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/102 2026-03-09T00:01:12.788 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-cherrypy-18.6.1-2.el9.noarch 8/102 2026-03-09T00:01:12.791 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-grpcio-1.46.7-10.el9.x86_64 11/102 2026-03-09T00:01:12.792 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-cheroot-10.0.1-4.el9.noarch 9/102 2026-03-09T00:01:12.792 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 1/102 2026-03-09T00:01:12.800 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/102 2026-03-09T00:01:12.804 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-grpcio-1.46.7-10.el9.x86_64 11/102 2026-03-09T00:01:12.812 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-09T00:01:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-osd.target". 2026-03-09T00:01:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-osd.target". 2026-03-09T00:01:12.812 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.814 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.814 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.814 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-09T00:01:12.814 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mgr.target". 2026-03-09T00:01:12.814 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mgr.target". 2026-03-09T00:01:12.814 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:12.815 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.818 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.825 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.826 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.826 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-09T00:01:12.826 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-osd.target". 2026-03-09T00:01:12.826 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-osd.target". 2026-03-09T00:01:12.826 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.826 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.830 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:12.831 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.840 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.842 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:12.842 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.842 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-09T00:01:12.842 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:12.851 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:12.856 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 3/102 2026-03-09T00:01:12.856 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 4/102 2026-03-09T00:01:12.859 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:12.859 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.859 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-09T00:01:12.859 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:12.859 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:12.862 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/102 2026-03-09T00:01:12.866 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-text-4.0.0-2.el9.noarch 15/102 2026-03-09T00:01:12.867 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:12.871 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jinja2-2.11.3-8.el9.noarch 16/102 2026-03-09T00:01:12.877 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:12.880 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-requests-2.25.1-10.el9.noarch 17/102 2026-03-09T00:01:12.880 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/102 2026-03-09T00:01:12.885 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jaraco-text-4.0.0-2.el9.noarch 15/102 2026-03-09T00:01:12.889 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jinja2-2.11.3-8.el9.noarch 16/102 2026-03-09T00:01:12.892 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-google-auth-1:2.45.0-1.el9.noarch 18/102 2026-03-09T00:01:12.898 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-requests-2.25.1-10.el9.noarch 17/102 2026-03-09T00:01:12.898 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pecan-1.4.2-3.el9.noarch 19/102 2026-03-09T00:01:12.908 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rsa-4.9-2.el9.noarch 20/102 2026-03-09T00:01:12.910 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-google-auth-1:2.45.0-1.el9.noarch 18/102 2026-03-09T00:01:12.915 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pyasn1-modules-0.4.8-7.el9.noarch 21/102 2026-03-09T00:01:12.915 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pecan-1.4.2-3.el9.noarch 19/102 2026-03-09T00:01:12.921 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 4/102 2026-03-09T00:01:12.925 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-rsa-4.9-2.el9.noarch 20/102 2026-03-09T00:01:12.930 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-kubernetes-1:26.1.0-3.el9.noarch 5/102 2026-03-09T00:01:12.932 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pyasn1-modules-0.4.8-7.el9.noarch 21/102 2026-03-09T00:01:12.934 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-requests-oauthlib-1.3.0-12.el9.noarch 6/102 2026-03-09T00:01:12.935 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:12.946 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-urllib3-1.26.5-7.el9.noarch 22/102 2026-03-09T00:01:12.947 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:12.952 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-babel-2.9.1-2.el9.noarch 23/102 2026-03-09T00:01:12.953 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-cherrypy-18.6.1-2.el9.noarch 8/102 2026-03-09T00:01:12.955 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-classes-3.2.1-5.el9.noarch 24/102 2026-03-09T00:01:12.957 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-cheroot-10.0.1-4.el9.noarch 9/102 2026-03-09T00:01:12.962 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-urllib3-1.26.5-7.el9.noarch 22/102 2026-03-09T00:01:12.965 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/102 2026-03-09T00:01:12.966 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/102 2026-03-09T00:01:12.970 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-babel-2.9.1-2.el9.noarch 23/102 2026-03-09T00:01:12.970 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-grpcio-1.46.7-10.el9.x86_64 11/102 2026-03-09T00:01:12.973 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jaraco-classes-3.2.1-5.el9.noarch 24/102 2026-03-09T00:01:12.976 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-asyncssh-2.13.2-5.el9.noarch 26/102 2026-03-09T00:01:12.976 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 27/102 2026-03-09T00:01:12.984 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/102 2026-03-09T00:01:12.985 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 27/102 2026-03-09T00:01:12.995 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:12.995 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:12.995 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-09T00:01:12.995 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-osd.target". 2026-03-09T00:01:12.995 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-osd.target". 2026-03-09T00:01:12.995 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:12.997 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-asyncssh-2.13.2-5.el9.noarch 26/102 2026-03-09T00:01:12.997 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 27/102 2026-03-09T00:01:13.000 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:13.006 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 27/102 2026-03-09T00:01:13.010 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:13.029 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:13.029 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.029 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-09T00:01:13.029 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:13.037 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:13.049 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 13/102 2026-03-09T00:01:13.052 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jaraco-collections-3.0.0-8.el9.noarch 14/102 2026-03-09T00:01:13.057 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jaraco-text-4.0.0-2.el9.noarch 15/102 2026-03-09T00:01:13.062 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jinja2-2.11.3-8.el9.noarch 16/102 2026-03-09T00:01:13.071 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-requests-2.25.1-10.el9.noarch 17/102 2026-03-09T00:01:13.085 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-google-auth-1:2.45.0-1.el9.noarch 18/102 2026-03-09T00:01:13.091 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pecan-1.4.2-3.el9.noarch 19/102 2026-03-09T00:01:13.094 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jsonpatch-1.21-16.el9.noarch 28/102 2026-03-09T00:01:13.101 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-rsa-4.9-2.el9.noarch 20/102 2026-03-09T00:01:13.108 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pyasn1-modules-0.4.8-7.el9.noarch 21/102 2026-03-09T00:01:13.110 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-scipy-1.9.3-2.el9.x86_64 29/102 2026-03-09T00:01:13.122 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jsonpatch-1.21-16.el9.noarch 28/102 2026-03-09T00:01:13.124 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.124 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service". 2026-03-09T00:01:13.124 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:13.125 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.137 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-scipy-1.9.3-2.el9.x86_64 29/102 2026-03-09T00:01:13.142 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-urllib3-1.26.5-7.el9.noarch 22/102 2026-03-09T00:01:13.149 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-babel-2.9.1-2.el9.noarch 23/102 2026-03-09T00:01:13.151 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.151 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service". 2026-03-09T00:01:13.151 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:13.152 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jaraco-classes-3.2.1-5.el9.noarch 24/102 2026-03-09T00:01:13.152 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.152 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.161 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pyOpenSSL-21.0.0-1.el9.noarch 25/102 2026-03-09T00:01:13.168 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 31/102 2026-03-09T00:01:13.173 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-asyncssh-2.13.2-5.el9.noarch 26/102 2026-03-09T00:01:13.173 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 27/102 2026-03-09T00:01:13.173 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cryptography-36.0.1-5.el9.x86_64 32/102 2026-03-09T00:01:13.176 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : protobuf-compiler-3.14.0-17.el9.x86_64 33/102 2026-03-09T00:01:13.178 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-bcrypt-3.2.2-1.el9.x86_64 34/102 2026-03-09T00:01:13.180 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.181 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 27/102 2026-03-09T00:01:13.196 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 31/102 2026-03-09T00:01:13.200 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.200 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.200 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-09T00:01:13.200 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target". 2026-03-09T00:01:13.200 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target". 2026-03-09T00:01:13.200 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:13.201 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.207 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-cryptography-36.0.1-5.el9.x86_64 32/102 2026-03-09T00:01:13.209 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : protobuf-compiler-3.14.0-17.el9.x86_64 33/102 2026-03-09T00:01:13.212 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-bcrypt-3.2.2-1.el9.x86_64 34/102 2026-03-09T00:01:13.215 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.219 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-mako-1.1.4-6.el9.noarch 36/102 2026-03-09T00:01:13.221 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-context-6.0.1-3.el9.noarch 37/102 2026-03-09T00:01:13.224 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-portend-3.1.0-2.el9.noarch 38/102 2026-03-09T00:01:13.227 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-tempora-5.0.0-2.el9.noarch 39/102 2026-03-09T00:01:13.230 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-functools-3.5.0-2.el9.noarch 40/102 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-routes-2.5.1-5.el9.noarch 41/102 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target". 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target". 2026-03-09T00:01:13.234 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:13.236 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.239 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cffi-1.14.5-5.el9.x86_64 42/102 2026-03-09T00:01:13.249 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.253 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-mako-1.1.4-6.el9.noarch 36/102 2026-03-09T00:01:13.255 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jaraco-context-6.0.1-3.el9.noarch 37/102 2026-03-09T00:01:13.257 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-portend-3.1.0-2.el9.noarch 38/102 2026-03-09T00:01:13.260 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-tempora-5.0.0-2.el9.noarch 39/102 2026-03-09T00:01:13.263 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jaraco-functools-3.5.0-2.el9.noarch 40/102 2026-03-09T00:01:13.267 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-routes-2.5.1-5.el9.noarch 41/102 2026-03-09T00:01:13.272 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-cffi-1.14.5-5.el9.x86_64 42/102 2026-03-09T00:01:13.281 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jsonpatch-1.21-16.el9.noarch 28/102 2026-03-09T00:01:13.287 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pycparser-2.20-6.el9.noarch 43/102 2026-03-09T00:01:13.296 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-scipy-1.9.3-2.el9.x86_64 29/102 2026-03-09T00:01:13.300 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-numpy-1:1.23.5-2.el9.x86_64 44/102 2026-03-09T00:01:13.303 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : flexiblas-netlib-3.0.4-9.el9.x86_64 45/102 2026-03-09T00:01:13.308 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 46/102 2026-03-09T00:01:13.311 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : openblas-openmp-0.3.29-1.el9.x86_64 47/102 2026-03-09T00:01:13.311 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.312 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service". 2026-03-09T00:01:13.312 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:13.313 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.314 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libgfortran-11.5.0-14.el9.x86_64 48/102 2026-03-09T00:01:13.317 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 49/102 2026-03-09T00:01:13.323 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pycparser-2.20-6.el9.noarch 43/102 2026-03-09T00:01:13.337 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-numpy-1:1.23.5-2.el9.x86_64 44/102 2026-03-09T00:01:13.340 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : flexiblas-netlib-3.0.4-9.el9.x86_64 45/102 2026-03-09T00:01:13.342 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 30/102 2026-03-09T00:01:13.343 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.343 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.343 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-09T00:01:13.343 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:13.344 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.346 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 46/102 2026-03-09T00:01:13.348 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : openblas-openmp-0.3.29-1.el9.x86_64 47/102 2026-03-09T00:01:13.352 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libgfortran-11.5.0-14.el9.x86_64 48/102 2026-03-09T00:01:13.355 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 49/102 2026-03-09T00:01:13.356 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.358 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : openblas-0.3.29-1.el9.x86_64 51/102 2026-03-09T00:01:13.358 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 31/102 2026-03-09T00:01:13.360 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : flexiblas-3.0.4-9.el9.x86_64 52/102 2026-03-09T00:01:13.363 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-ply-3.11-14.el9.noarch 53/102 2026-03-09T00:01:13.364 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-cryptography-36.0.1-5.el9.x86_64 32/102 2026-03-09T00:01:13.366 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-repoze-lru-0.7-16.el9.noarch 54/102 2026-03-09T00:01:13.366 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : protobuf-compiler-3.14.0-17.el9.x86_64 33/102 2026-03-09T00:01:13.368 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-8.2.1-3.el9.noarch 55/102 2026-03-09T00:01:13.369 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-bcrypt-3.2.2-1.el9.x86_64 34/102 2026-03-09T00:01:13.371 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-more-itertools-8.12.0-2.el9.noarch 56/102 2026-03-09T00:01:13.374 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-toml-0.10.2-6.el9.noarch 57/102 2026-03-09T00:01:13.379 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pytz-2021.1-5.el9.noarch 58/102 2026-03-09T00:01:13.379 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.379 INFO:teuthology.orchestra.run.vm05.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.379 INFO:teuthology.orchestra.run.vm05.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-09T00:01:13.379 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:13.379 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.387 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-backports-tarfile-1.2.0-1.el9.noarch 59/102 2026-03-09T00:01:13.388 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.391 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : openblas-0.3.29-1.el9.x86_64 51/102 2026-03-09T00:01:13.392 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-devel-3.9.25-3.el9.x86_64 60/102 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target". 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target". 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:13.394 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : flexiblas-3.0.4-9.el9.x86_64 52/102 2026-03-09T00:01:13.395 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jsonpointer-2.0-4.el9.noarch 61/102 2026-03-09T00:01:13.395 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.396 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-ply-3.11-14.el9.noarch 53/102 2026-03-09T00:01:13.398 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-typing-extensions-4.15.0-1.el9.noarch 62/102 2026-03-09T00:01:13.399 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-repoze-lru-0.7-16.el9.noarch 54/102 2026-03-09T00:01:13.401 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jaraco-8.2.1-3.el9.noarch 55/102 2026-03-09T00:01:13.401 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-idna-2.10-7.el9.1.noarch 63/102 2026-03-09T00:01:13.403 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-more-itertools-8.12.0-2.el9.noarch 56/102 2026-03-09T00:01:13.406 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-toml-0.10.2-6.el9.noarch 57/102 2026-03-09T00:01:13.407 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pysocks-1.7.1-12.el9.noarch 64/102 2026-03-09T00:01:13.409 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pytz-2021.1-5.el9.noarch 58/102 2026-03-09T00:01:13.412 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 35/102 2026-03-09T00:01:13.412 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pyasn1-0.4.8-7.el9.noarch 65/102 2026-03-09T00:01:13.416 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-mako-1.1.4-6.el9.noarch 36/102 2026-03-09T00:01:13.417 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-logutils-0.3.5-21.el9.noarch 66/102 2026-03-09T00:01:13.418 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-backports-tarfile-1.2.0-1.el9.noarch 59/102 2026-03-09T00:01:13.418 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jaraco-context-6.0.1-3.el9.noarch 37/102 2026-03-09T00:01:13.421 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-portend-3.1.0-2.el9.noarch 38/102 2026-03-09T00:01:13.422 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-webob-1.8.8-2.el9.noarch 67/102 2026-03-09T00:01:13.423 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-devel-3.9.25-3.el9.x86_64 60/102 2026-03-09T00:01:13.424 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-tempora-5.0.0-2.el9.noarch 39/102 2026-03-09T00:01:13.425 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-jsonpointer-2.0-4.el9.noarch 61/102 2026-03-09T00:01:13.428 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-typing-extensions-4.15.0-1.el9.noarch 62/102 2026-03-09T00:01:13.428 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jaraco-functools-3.5.0-2.el9.noarch 40/102 2026-03-09T00:01:13.428 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cachetools-4.2.4-1.el9.noarch 68/102 2026-03-09T00:01:13.431 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-idna-2.10-7.el9.1.noarch 63/102 2026-03-09T00:01:13.432 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-chardet-4.0.0-5.el9.noarch 69/102 2026-03-09T00:01:13.433 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-routes-2.5.1-5.el9.noarch 41/102 2026-03-09T00:01:13.436 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-autocommand-2.2.2-8.el9.noarch 70/102 2026-03-09T00:01:13.437 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pysocks-1.7.1-12.el9.noarch 64/102 2026-03-09T00:01:13.437 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-cffi-1.14.5-5.el9.x86_64 42/102 2026-03-09T00:01:13.439 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-packaging-20.9-5.el9.noarch 71/102 2026-03-09T00:01:13.441 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-pyasn1-0.4.8-7.el9.noarch 65/102 2026-03-09T00:01:13.445 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : grpc-data-1.46.7-10.el9.noarch 72/102 2026-03-09T00:01:13.446 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-logutils-0.3.5-21.el9.noarch 66/102 2026-03-09T00:01:13.449 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-protobuf-3.14.0-17.el9.noarch 73/102 2026-03-09T00:01:13.451 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-webob-1.8.8-2.el9.noarch 67/102 2026-03-09T00:01:13.452 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-zc-lockfile-2.0-10.el9.noarch 74/102 2026-03-09T00:01:13.457 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-cachetools-4.2.4-1.el9.noarch 68/102 2026-03-09T00:01:13.460 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-chardet-4.0.0-5.el9.noarch 69/102 2026-03-09T00:01:13.461 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-natsort-7.1.1-5.el9.noarch 75/102 2026-03-09T00:01:13.464 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-autocommand-2.2.2-8.el9.noarch 70/102 2026-03-09T00:01:13.466 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-packaging-20.9-5.el9.noarch 71/102 2026-03-09T00:01:13.467 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-oauthlib-3.1.1-5.el9.noarch 76/102 2026-03-09T00:01:13.471 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-websocket-client-1.2.3-2.el9.noarch 77/102 2026-03-09T00:01:13.472 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : grpc-data-1.46.7-10.el9.noarch 72/102 2026-03-09T00:01:13.473 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-certifi-2023.05.07-4.el9.noarch 78/102 2026-03-09T00:01:13.475 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 79/102 2026-03-09T00:01:13.476 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-protobuf-3.14.0-17.el9.noarch 73/102 2026-03-09T00:01:13.480 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-zc-lockfile-2.0-10.el9.noarch 74/102 2026-03-09T00:01:13.481 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 80/102 2026-03-09T00:01:13.485 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-werkzeug-2.0.3-3.el9.1.noarch 81/102 2026-03-09T00:01:13.487 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pycparser-2.20-6.el9.noarch 43/102 2026-03-09T00:01:13.488 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-natsort-7.1.1-5.el9.noarch 75/102 2026-03-09T00:01:13.494 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-oauthlib-3.1.1-5.el9.noarch 76/102 2026-03-09T00:01:13.497 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-websocket-client-1.2.3-2.el9.noarch 77/102 2026-03-09T00:01:13.500 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-numpy-1:1.23.5-2.el9.x86_64 44/102 2026-03-09T00:01:13.500 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-certifi-2023.05.07-4.el9.noarch 78/102 2026-03-09T00:01:13.502 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 79/102 2026-03-09T00:01:13.504 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : flexiblas-netlib-3.0.4-9.el9.x86_64 45/102 2026-03-09T00:01:13.506 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.507 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-crash.service". 2026-03-09T00:01:13.507 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:13.508 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 80/102 2026-03-09T00:01:13.510 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 46/102 2026-03-09T00:01:13.511 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-werkzeug-2.0.3-3.el9.1.noarch 81/102 2026-03-09T00:01:13.512 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : openblas-openmp-0.3.29-1.el9.x86_64 47/102 2026-03-09T00:01:13.514 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.516 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libgfortran-11.5.0-14.el9.x86_64 48/102 2026-03-09T00:01:13.519 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 49/102 2026-03-09T00:01:13.532 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.532 INFO:teuthology.orchestra.run.vm05.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-crash.service". 2026-03-09T00:01:13.532 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:13.540 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 83/102 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm09.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm09.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:13.543 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.553 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-immutable-object-cache-2:19.2.3-678.ge911bd 50/102 2026-03-09T00:01:13.555 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : openblas-0.3.29-1.el9.x86_64 51/102 2026-03-09T00:01:13.555 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 83/102 2026-03-09T00:01:13.557 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : flexiblas-3.0.4-9.el9.x86_64 52/102 2026-03-09T00:01:13.560 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qatzip-libs-1.3.1-1.el9.x86_64 84/102 2026-03-09T00:01:13.560 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-ply-3.11-14.el9.noarch 53/102 2026-03-09T00:01:13.563 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-repoze-lru-0.7-16.el9.noarch 54/102 2026-03-09T00:01:13.564 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 85/102 2026-03-09T00:01:13.565 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jaraco-8.2.1-3.el9.noarch 55/102 2026-03-09T00:01:13.565 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-prettytable-0.7.2-27.el9.noarch 86/102 2026-03-09T00:01:13.565 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 87/102 2026-03-09T00:01:13.568 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-more-itertools-8.12.0-2.el9.noarch 56/102 2026-03-09T00:01:13.570 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-toml-0.10.2-6.el9.noarch 57/102 2026-03-09T00:01:13.571 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.571 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 83/102 2026-03-09T00:01:13.573 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pytz-2021.1-5.el9.noarch 58/102 2026-03-09T00:01:13.581 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-backports-tarfile-1.2.0-1.el9.noarch 59/102 2026-03-09T00:01:13.583 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 83/102 2026-03-09T00:01:13.585 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-devel-3.9.25-3.el9.x86_64 60/102 2026-03-09T00:01:13.587 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-jsonpointer-2.0-4.el9.noarch 61/102 2026-03-09T00:01:13.589 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : qatzip-libs-1.3.1-1.el9.x86_64 84/102 2026-03-09T00:01:13.590 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-typing-extensions-4.15.0-1.el9.noarch 62/102 2026-03-09T00:01:13.592 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 85/102 2026-03-09T00:01:13.593 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-idna-2.10-7.el9.1.noarch 63/102 2026-03-09T00:01:13.594 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-prettytable-0.7.2-27.el9.noarch 86/102 2026-03-09T00:01:13.594 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 87/102 2026-03-09T00:01:13.598 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pysocks-1.7.1-12.el9.noarch 64/102 2026-03-09T00:01:13.602 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-pyasn1-0.4.8-7.el9.noarch 65/102 2026-03-09T00:01:13.607 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-logutils-0.3.5-21.el9.noarch 66/102 2026-03-09T00:01:13.612 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-webob-1.8.8-2.el9.noarch 67/102 2026-03-09T00:01:13.617 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-cachetools-4.2.4-1.el9.noarch 68/102 2026-03-09T00:01:13.621 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-chardet-4.0.0-5.el9.noarch 69/102 2026-03-09T00:01:13.624 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-autocommand-2.2.2-8.el9.noarch 70/102 2026-03-09T00:01:13.627 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-packaging-20.9-5.el9.noarch 71/102 2026-03-09T00:01:13.633 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : grpc-data-1.46.7-10.el9.noarch 72/102 2026-03-09T00:01:13.637 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-protobuf-3.14.0-17.el9.noarch 73/102 2026-03-09T00:01:13.640 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-zc-lockfile-2.0-10.el9.noarch 74/102 2026-03-09T00:01:13.648 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-natsort-7.1.1-5.el9.noarch 75/102 2026-03-09T00:01:13.654 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-oauthlib-3.1.1-5.el9.noarch 76/102 2026-03-09T00:01:13.658 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-websocket-client-1.2.3-2.el9.noarch 77/102 2026-03-09T00:01:13.660 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-certifi-2023.05.07-4.el9.noarch 78/102 2026-03-09T00:01:13.662 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 79/102 2026-03-09T00:01:13.668 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 80/102 2026-03-09T00:01:13.672 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-werkzeug-2.0.3-3.el9.1.noarch 81/102 2026-03-09T00:01:13.694 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.694 INFO:teuthology.orchestra.run.vm09.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-crash.service". 2026-03-09T00:01:13.694 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:13.702 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.735 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 82/102 2026-03-09T00:01:13.735 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 83/102 2026-03-09T00:01:13.749 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 83/102 2026-03-09T00:01:13.754 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : qatzip-libs-1.3.1-1.el9.x86_64 84/102 2026-03-09T00:01:13.756 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 85/102 2026-03-09T00:01:13.758 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-prettytable-0.7.2-27.el9.noarch 86/102 2026-03-09T00:01:13.758 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 87/102 2026-03-09T00:01:19.161 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 87/102 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /sys 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /proc 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /mnt 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /var/tmp 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /home 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /root 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout:skipping the directory /tmp 2026-03-09T00:01:19.162 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.170 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : qatlib-25.08.0-2.el9.x86_64 88/102 2026-03-09T00:01:19.189 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.190 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.198 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.200 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : gperftools-libs-2.9.1-3.el9.x86_64 90/102 2026-03-09T00:01:19.203 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libunwind-1.6.2-1.el9.x86_64 91/102 2026-03-09T00:01:19.206 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : pciutils-3.7.0-7.el9.x86_64 92/102 2026-03-09T00:01:19.208 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : liboath-2.6.12-1.el9.x86_64 93/102 2026-03-09T00:01:19.209 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 94/102 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 87/102 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /sys 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /proc 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /mnt 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /var/tmp 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /home 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /root 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /tmp 2026-03-09T00:01:19.215 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.223 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 94/102 2026-03-09T00:01:19.223 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qatlib-25.08.0-2.el9.x86_64 88/102 2026-03-09T00:01:19.225 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ledmon-libs-1.1.0-3.el9.x86_64 95/102 2026-03-09T00:01:19.228 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libquadmath-11.5.0-14.el9.x86_64 96/102 2026-03-09T00:01:19.231 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-markupsafe-1.1.1-12.el9.x86_64 97/102 2026-03-09T00:01:19.234 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : protobuf-3.14.0-17.el9.x86_64 98/102 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 87/102 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /sys 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /proc 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /mnt 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /var/tmp 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /home 2026-03-09T00:01:19.237 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /root 2026-03-09T00:01:19.238 INFO:teuthology.orchestra.run.vm09.stdout:skipping the directory /tmp 2026-03-09T00:01:19.238 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.239 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libconfig-1.7.2-9.el9.x86_64 99/102 2026-03-09T00:01:19.244 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.244 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.246 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : qatlib-25.08.0-2.el9.x86_64 88/102 2026-03-09T00:01:19.247 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : cryptsetup-2.8.1-3.el9.x86_64 100/102 2026-03-09T00:01:19.252 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : abseil-cpp-20211102.0-4.el9.x86_64 101/102 2026-03-09T00:01:19.252 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.252 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.255 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : gperftools-libs-2.9.1-3.el9.x86_64 90/102 2026-03-09T00:01:19.258 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libunwind-1.6.2-1.el9.x86_64 91/102 2026-03-09T00:01:19.261 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : pciutils-3.7.0-7.el9.x86_64 92/102 2026-03-09T00:01:19.263 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : liboath-2.6.12-1.el9.x86_64 93/102 2026-03-09T00:01:19.263 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 94/102 2026-03-09T00:01:19.266 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.266 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.274 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 89/102 2026-03-09T00:01:19.276 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 94/102 2026-03-09T00:01:19.277 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : gperftools-libs-2.9.1-3.el9.x86_64 90/102 2026-03-09T00:01:19.278 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ledmon-libs-1.1.0-3.el9.x86_64 95/102 2026-03-09T00:01:19.279 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libunwind-1.6.2-1.el9.x86_64 91/102 2026-03-09T00:01:19.280 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libquadmath-11.5.0-14.el9.x86_64 96/102 2026-03-09T00:01:19.281 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : pciutils-3.7.0-7.el9.x86_64 92/102 2026-03-09T00:01:19.283 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : liboath-2.6.12-1.el9.x86_64 93/102 2026-03-09T00:01:19.283 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 94/102 2026-03-09T00:01:19.283 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-markupsafe-1.1.1-12.el9.x86_64 97/102 2026-03-09T00:01:19.286 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : protobuf-3.14.0-17.el9.x86_64 98/102 2026-03-09T00:01:19.291 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libconfig-1.7.2-9.el9.x86_64 99/102 2026-03-09T00:01:19.297 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 94/102 2026-03-09T00:01:19.299 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ledmon-libs-1.1.0-3.el9.x86_64 95/102 2026-03-09T00:01:19.299 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : cryptsetup-2.8.1-3.el9.x86_64 100/102 2026-03-09T00:01:19.301 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libquadmath-11.5.0-14.el9.x86_64 96/102 2026-03-09T00:01:19.304 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : abseil-cpp-20211102.0-4.el9.x86_64 101/102 2026-03-09T00:01:19.304 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.304 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-markupsafe-1.1.1-12.el9.x86_64 97/102 2026-03-09T00:01:19.307 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : protobuf-3.14.0-17.el9.x86_64 98/102 2026-03-09T00:01:19.313 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libconfig-1.7.2-9.el9.x86_64 99/102 2026-03-09T00:01:19.321 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : cryptsetup-2.8.1-3.el9.x86_64 100/102 2026-03-09T00:01:19.327 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : abseil-cpp-20211102.0-4.el9.x86_64 101/102 2026-03-09T00:01:19.327 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.354 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.354 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 1/102 2026-03-09T00:01:19.354 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 3/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 4/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 5/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 6/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 8/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 9/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 10/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 11/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 13/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 14/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 15/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 16/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 17/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 18/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 19/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 20/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 21/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 22/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 23/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 24/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 25/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 26/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 27/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 28/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 29/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 30/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 31/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 32/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 33/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 34/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 35/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 36/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 37/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 38/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 39/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 40/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 41/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 42/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 43/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 44/102 2026-03-09T00:01:19.355 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-chardet-4.0.0-5.el9.noarch 45/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 46/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 47/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 48/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 49/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 50/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 51/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 52/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-idna-2.10-7.el9.1.noarch 53/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 54/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 55/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 56/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 57/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 58/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 59/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 60/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 61/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 62/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 63/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 64/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 65/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 66/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 67/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 68/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 69/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 70/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 71/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 72/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 73/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 74/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-ply-3.11-14.el9.noarch 75/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 76/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 77/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 78/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 79/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 80/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 81/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 82/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pysocks-1.7.1-12.el9.noarch 83/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 84/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 85/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 86/102 2026-03-09T00:01:19.356 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 87/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 88/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 89/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 90/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 91/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 92/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 93/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 94/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 95/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 96/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 97/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 98/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 99/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 100/102 2026-03-09T00:01:19.357 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 101/102 2026-03-09T00:01:19.408 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 1/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 3/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 4/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 5/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 6/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 8/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 9/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 10/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 11/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 13/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 14/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 15/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 16/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 17/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 18/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 19/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 20/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 21/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 22/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 23/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 24/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 25/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 26/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 27/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 28/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 29/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 30/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 31/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 32/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 33/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 34/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 35/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 36/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 37/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 38/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 39/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 40/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 41/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 42/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 43/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 44/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-chardet-4.0.0-5.el9.noarch 45/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 46/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 47/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 48/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 49/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 50/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 51/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 52/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-idna-2.10-7.el9.1.noarch 53/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 54/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 55/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 56/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 57/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 58/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 59/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 60/102 2026-03-09T00:01:19.409 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 61/102 2026-03-09T00:01:19.410 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 62/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 63/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 64/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 65/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 66/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 67/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 68/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 69/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 70/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 71/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 72/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 73/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 74/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ply-3.11-14.el9.noarch 75/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 76/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 77/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 78/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 79/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 80/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 81/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 82/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pysocks-1.7.1-12.el9.noarch 83/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 84/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 85/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 86/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 87/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 88/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 89/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 90/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 91/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 92/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 93/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 94/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 95/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 96/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 97/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 98/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 99/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 100/102 2026-03-09T00:01:19.411 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 101/102 2026-03-09T00:01:19.439 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-immutable-object-cache-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-09T00:01:19.440 INFO:teuthology.orchestra.run.vm05.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-chardet-4.0.0-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-idna-2.10-7.el9.1.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jsonpatch-1.21-16.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-jsonpointer-2.0-4.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-logutils-0.3.5-21.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-mako-1.1.4-6.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pecan-1.4.2-3.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-ply-3.11-14.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-prettytable-0.7.2-27.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pysocks-1.7.1-12.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-pytz-2021.1-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-webob-1.8.8-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-09T00:01:19.441 INFO:teuthology.orchestra.run.vm05.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-09T00:01:19.442 INFO:teuthology.orchestra.run.vm05.stdout: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.442 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.442 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:19.444 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 1/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 3/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.e 4/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-immutable-object-cache-2:19.2.3-678.ge911bd 5/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 6/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noar 7/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.no 8/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-diskprediction-local-2:19.2.3-678.ge911 9/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9 10/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 11/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 12/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el 13/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 14/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 15/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 16/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 17/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 18/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 19/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 20/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 21/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 22/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 23/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 24/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 25/102 2026-03-09T00:01:19.445 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 26/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 27/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_ 28/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 29/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 30/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 31/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 32/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 33/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 34/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 35/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 36/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 37/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 38/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 39/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 40/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 41/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x 42/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 43/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 44/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-chardet-4.0.0-5.el9.noarch 45/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 46/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 47/102 2026-03-09T00:01:19.447 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 48/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 49/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 50/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 51/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 52/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-idna-2.10-7.el9.1.noarch 53/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 54/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 55/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 56/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 57/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 58/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 59/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 60/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 61/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 62/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 63/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 64/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-logutils-0.3.5-21.el9.noarch 65/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-mako-1.1.4-6.el9.noarch 66/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 67/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 68/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 69/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 70/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 71/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 72/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 73/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pecan-1.4.2-3.el9.noarch 74/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-ply-3.11-14.el9.noarch 75/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 76/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 77/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 78/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 79/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 80/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 81/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 82/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pysocks-1.7.1-12.el9.noarch 83/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 84/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 85/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 86/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 87/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 88/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 89/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 90/102 2026-03-09T00:01:19.448 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 91/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 92/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 93/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 94/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-webob-1.8.8-2.el9.noarch 95/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 96/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-werkzeug-2.0.3-3.el9.1.noarch 97/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 98/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 99/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 100/102 2026-03-09T00:01:19.449 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 101/102 2026-03-09T00:01:19.488 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-chardet-4.0.0-5.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-09T00:01:19.489 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-idna-2.10-7.el9.1.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpatch-1.21-16.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpointer-2.0-4.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-logutils-0.3.5-21.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-mako-1.1.4-6.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pecan-1.4.2-3.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply-3.11-14.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-prettytable-0.7.2-27.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pysocks-1.7.1-12.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-pytz-2021.1-5.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-webob-1.8.8-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-09T00:01:19.490 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-09T00:01:19.491 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.491 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.491 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 102/102 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-base-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-grafana-dashboards-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-immutable-object-cache-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-dashboard-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-diskprediction-local-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-modules-core-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-mgr-rook-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-osd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-prometheus-alerts-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-selinux-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ceph-volume-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-09T00:01:19.534 INFO:teuthology.orchestra.run.vm09.stdout: libcephsqlite-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: libradosstriper1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-common-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-chardet-4.0.0-5.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-idna-2.10-7.el9.1.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jsonpatch-1.21-16.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-jsonpointer-2.0-4.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-logutils-0.3.5-21.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-mako-1.1.4-6.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-pecan-1.4.2-3.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-ply-3.11-14.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-prettytable-0.7.2-27.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-09T00:01:19.535 INFO:teuthology.orchestra.run.vm09.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-pysocks-1.7.1-12.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-pytz-2021.1-5.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-webob-1.8.8-2.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-werkzeug-2.0.3-3.el9.1.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: rbd-mirror-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.536 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:19.656 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout: cephadm noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 775 k 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:Remove 1 Package 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 775 k 2026-03-09T00:01:19.657 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:19.659 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:19.659 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:19.660 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:19.660 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:19.675 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:19.675 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.706 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout: cephadm noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 775 k 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:Remove 1 Package 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 775 k 2026-03-09T00:01:19.707 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:19.709 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:19.709 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:19.710 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:19.710 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:19.727 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:19.727 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.743 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:19.743 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout: cephadm noarch 2:19.2.3-678.ge911bdeb.el9 @ceph-noarch 775 k 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:Remove 1 Package 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 775 k 2026-03-09T00:01:19.744 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:19.745 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:19.745 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:19.747 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:19.747 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:19.764 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:19.764 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.780 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.829 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.829 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.830 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.830 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:19.830 INFO:teuthology.orchestra.run.vm05.stdout: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.830 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:19.830 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:19.872 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.873 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.873 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.874 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:19.874 INFO:teuthology.orchestra.run.vm02.stdout: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.874 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:19.874 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:19.915 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 1/1 2026-03-09T00:01:19.915 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.915 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:19.915 INFO:teuthology.orchestra.run.vm09.stdout: cephadm-2:19.2.3-678.ge911bdeb.el9.noarch 2026-03-09T00:01:19.915 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:19.915 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:20.020 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-immutable-object-cache 2026-03-09T00:01:20.020 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:20.023 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:20.024 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:20.024 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:20.086 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-immutable-object-cache 2026-03-09T00:01:20.087 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:20.090 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:20.090 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:20.090 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:20.095 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-immutable-object-cache 2026-03-09T00:01:20.095 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:20.099 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:20.099 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:20.099 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:20.200 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-mgr 2026-03-09T00:01:20.200 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:20.203 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:20.204 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:20.204 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:20.271 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr 2026-03-09T00:01:20.271 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:20.274 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-mgr 2026-03-09T00:01:20.274 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:20.274 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:20.275 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:20.275 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:20.277 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:20.278 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:20.278 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:20.382 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-mgr-dashboard 2026-03-09T00:01:20.382 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:20.386 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:20.386 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:20.386 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:20.454 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-mgr-dashboard 2026-03-09T00:01:20.454 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:20.458 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:20.458 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:20.458 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:20.459 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-dashboard 2026-03-09T00:01:20.459 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:20.462 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:20.463 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:20.463 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:20.564 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-mgr-diskprediction-local 2026-03-09T00:01:20.564 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:20.568 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:20.568 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:20.568 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:20.632 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-mgr-diskprediction-local 2026-03-09T00:01:20.632 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:20.635 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:20.636 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:20.636 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:20.636 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-diskprediction-local 2026-03-09T00:01:20.636 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:20.639 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:20.640 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:20.640 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:20.743 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-mgr-rook 2026-03-09T00:01:20.743 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:20.746 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:20.747 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:20.747 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:20.808 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-rook 2026-03-09T00:01:20.808 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:20.811 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:20.811 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:20.811 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:20.813 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-mgr-rook 2026-03-09T00:01:20.813 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:20.817 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:20.817 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:20.817 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:20.925 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-mgr-cephadm 2026-03-09T00:01:20.925 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:20.928 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:20.929 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:20.929 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:20.987 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-cephadm 2026-03-09T00:01:20.987 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:20.990 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:20.990 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:20.990 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:20.991 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-mgr-cephadm 2026-03-09T00:01:20.991 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:20.994 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:20.995 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:20.995 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:21.118 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout: ceph-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.6 M 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:Remove 1 Package 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 3.6 M 2026-03-09T00:01:21.119 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:21.121 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:21.121 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:21.131 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:21.131 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:21.157 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:21.172 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.178 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.6 M 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:Remove 1 Package 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 3.6 M 2026-03-09T00:01:21.179 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:21.181 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:21.181 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:21.185 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout: ceph-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.6 M 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:Remove 1 Package 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 3.6 M 2026-03-09T00:01:21.186 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:21.188 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:21.188 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:21.190 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:21.191 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:21.197 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:21.198 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:21.216 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:21.224 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:21.231 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.235 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.240 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.280 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.280 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.280 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:21.280 INFO:teuthology.orchestra.run.vm05.stdout: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.280 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.280 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:21.300 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.312 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.350 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.350 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.350 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:21.350 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.350 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.350 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:21.353 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 1/1 2026-03-09T00:01:21.353 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.353 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:21.353 INFO:teuthology.orchestra.run.vm09.stdout: ceph-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.353 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.353 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:21.474 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: ceph-volume 2026-03-09T00:01:21.474 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:21.477 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:21.478 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:21.478 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:21.540 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: ceph-volume 2026-03-09T00:01:21.540 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:21.541 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-volume 2026-03-09T00:01:21.541 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:21.543 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:21.544 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:21.544 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:21.544 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:21.545 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:21.545 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:21.665 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:21.665 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:21.665 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repo Size 2026-03-09T00:01:21.665 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:21.665 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout: librados-devel x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 456 k 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout:Removing dependent packages: 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs-devel x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 153 k 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout:Remove 2 Packages 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 610 k 2026-03-09T00:01:21.666 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:21.667 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:21.667 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:21.678 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:21.678 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:21.703 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:21.705 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:21.718 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repo Size 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout: librados-devel x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 456 k 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:Removing dependent packages: 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs-devel x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 153 k 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout:Remove 2 Packages 2026-03-09T00:01:21.729 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.730 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 610 k 2026-03-09T00:01:21.730 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:21.731 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:21.731 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repo Size 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 456 k 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 153 k 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Remove 2 Packages 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 610 k 2026-03-09T00:01:21.736 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:21.738 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:21.738 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:21.742 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:21.742 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:21.749 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:21.749 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:21.766 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:21.768 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:21.773 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:21.776 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:21.776 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.776 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:21.782 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.789 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:21.821 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:21.841 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.842 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:21.852 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.852 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 1/2 2026-03-09T00:01:21.888 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.888 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.889 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:21.889 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.889 INFO:teuthology.orchestra.run.vm09.stdout: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.889 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:21.889 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:21.898 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2/2 2026-03-09T00:01:21.898 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.898 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:21.898 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.898 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:21.899 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:21.899 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:22.027 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repo Size 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.0 M 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Removing dependent packages: 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout: python3-cephfs x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 514 k 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Removing unused dependencies: 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-argparse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 187 k 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Remove 3 Packages 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 3.7 M 2026-03-09T00:01:22.028 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:22.030 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:22.030 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:22.047 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:22.047 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:22.079 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:22.081 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 1/3 2026-03-09T00:01:22.082 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86 2/3 2026-03-09T00:01:22.082 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repo Size 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.0 M 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:Removing dependent packages: 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout: python3-cephfs x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 514 k 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:Removing unused dependencies: 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-argparse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 187 k 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout:Remove 3 Packages 2026-03-09T00:01:22.102 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.103 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 3.7 M 2026-03-09T00:01:22.103 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:22.104 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:22.104 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:22.115 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repo Size 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 3.0 M 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 514 k 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 187 k 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Remove 3 Packages 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 3.7 M 2026-03-09T00:01:22.116 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:22.118 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:22.118 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:22.120 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:22.120 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:22.134 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:22.134 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:22.146 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.146 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 1/3 2026-03-09T00:01:22.146 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86 2/3 2026-03-09T00:01:22.151 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:22.154 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 1/3 2026-03-09T00:01:22.155 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86 2/3 2026-03-09T00:01:22.155 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.165 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:22.167 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 1/3 2026-03-09T00:01:22.168 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86 2/3 2026-03-09T00:01:22.168 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout: python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout: python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.190 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.191 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:22.220 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.220 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 1/3 2026-03-09T00:01:22.220 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86 2/3 2026-03-09T00:01:22.234 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.234 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 1/3 2026-03-09T00:01:22.234 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86 2/3 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout: python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout: python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.259 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 3/3 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.272 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:22.379 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: libcephfs-devel 2026-03-09T00:01:22.379 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:22.383 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:22.383 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:22.383 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:22.448 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: libcephfs-devel 2026-03-09T00:01:22.448 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:22.451 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:22.452 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:22.452 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:22.457 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: libcephfs-devel 2026-03-09T00:01:22.457 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:22.460 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:22.461 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:22.461 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:22.602 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: Package Arch Version Repository Size 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout:Removing: 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: librados2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 12 M 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout:Removing dependent packages: 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: python3-rados x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.1 M 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: python3-rbd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.1 M 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: python3-rgw x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 265 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: qemu-kvm-block-rbd x86_64 17:10.1.0-15.el9 @appstream 37 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: rbd-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 227 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: rbd-nbd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 490 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout:Removing unused dependencies: 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: boost-program-options x86_64 1.75.0-13.el9 @appstream 276 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: libarrow x86_64 9.0.0-15.el9 @epel 18 M 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: libarrow-doc noarch 9.0.0-15.el9 @epel 122 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: libnbd x86_64 1.20.3-4.el9 @appstream 453 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: libpmemobj x86_64 1.12.1-1.el9 @appstream 383 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: librabbitmq x86_64 0.11.0-7.el9 @appstream 102 k 2026-03-09T00:01:22.604 INFO:teuthology.orchestra.run.vm05.stdout: librbd1 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 13 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: librdkafka x86_64 1.6.1-102.el9 @appstream 2.0 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: librgw2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 19 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: lttng-ust x86_64 2.12.0-6.el9 @appstream 1.0 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: parquet-libs x86_64 9.0.0-15.el9 @epel 2.8 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: re2 x86_64 1:20211101-20.el9 @epel 472 k 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: thrift x86_64 0.15.0-4.el9 @epel 4.8 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout:Transaction Summary 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout:================================================================================ 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout:Remove 20 Packages 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout:Freed space: 79 M 2026-03-09T00:01:22.605 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction check 2026-03-09T00:01:22.609 INFO:teuthology.orchestra.run.vm05.stdout:Transaction check succeeded. 2026-03-09T00:01:22.609 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction test 2026-03-09T00:01:22.633 INFO:teuthology.orchestra.run.vm05.stdout:Transaction test succeeded. 2026-03-09T00:01:22.633 INFO:teuthology.orchestra.run.vm05.stdout:Running transaction 2026-03-09T00:01:22.652 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: Package Arch Version Repository Size 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:Removing: 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: librados2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 12 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:Removing dependent packages: 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: python3-rados x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.1 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: python3-rbd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.1 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: python3-rgw x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 265 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: qemu-kvm-block-rbd x86_64 17:10.1.0-15.el9 @appstream 37 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: rbd-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 227 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: rbd-nbd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 490 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:Removing unused dependencies: 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: boost-program-options x86_64 1.75.0-13.el9 @appstream 276 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: libarrow x86_64 9.0.0-15.el9 @epel 18 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: libarrow-doc noarch 9.0.0-15.el9 @epel 122 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: libnbd x86_64 1.20.3-4.el9 @appstream 453 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: libpmemobj x86_64 1.12.1-1.el9 @appstream 383 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: librabbitmq x86_64 0.11.0-7.el9 @appstream 102 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: librbd1 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 13 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: librdkafka x86_64 1.6.1-102.el9 @appstream 2.0 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: librgw2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 19 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: lttng-ust x86_64 2.12.0-6.el9 @appstream 1.0 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: parquet-libs x86_64 9.0.0-15.el9 @epel 2.8 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: re2 x86_64 1:20211101-20.el9 @epel 472 k 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: thrift x86_64 0.15.0-4.el9 @epel 4.8 M 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:Transaction Summary 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:================================================================================ 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout:Remove 20 Packages 2026-03-09T00:01:22.654 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.655 INFO:teuthology.orchestra.run.vm09.stdout:Freed space: 79 M 2026-03-09T00:01:22.655 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction check 2026-03-09T00:01:22.659 INFO:teuthology.orchestra.run.vm09.stdout:Transaction check succeeded. 2026-03-09T00:01:22.659 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction test 2026-03-09T00:01:22.672 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: librados2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 12 M 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.1 M 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 1.1 M 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 265 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: qemu-kvm-block-rbd x86_64 17:10.1.0-15.el9 @appstream 37 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 227 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 490 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options x86_64 1.75.0-13.el9 @appstream 276 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: libarrow x86_64 9.0.0-15.el9 @epel 18 M 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc noarch 9.0.0-15.el9 @epel 122 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: libnbd x86_64 1.20.3-4.el9 @appstream 453 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj x86_64 1.12.1-1.el9 @appstream 383 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq x86_64 0.11.0-7.el9 @appstream 102 k 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: librbd1 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 13 M 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka x86_64 1.6.1-102.el9 @appstream 2.0 M 2026-03-09T00:01:22.673 INFO:teuthology.orchestra.run.vm02.stdout: librgw2 x86_64 2:19.2.3-678.ge911bdeb.el9 @ceph 19 M 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust x86_64 2.12.0-6.el9 @appstream 1.0 M 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs x86_64 9.0.0-15.el9 @epel 2.8 M 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout: re2 x86_64 1:20211101-20.el9 @epel 472 k 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout: thrift x86_64 0.15.0-4.el9 @epel 4.8 M 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout:Remove 20 Packages 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 79 M 2026-03-09T00:01:22.674 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-09T00:01:22.675 INFO:teuthology.orchestra.run.vm05.stdout: Preparing : 1/1 2026-03-09T00:01:22.677 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-09T00:01:22.677 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-09T00:01:22.678 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 1/20 2026-03-09T00:01:22.680 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2/20 2026-03-09T00:01:22.680 INFO:teuthology.orchestra.run.vm09.stdout:Transaction test succeeded. 2026-03-09T00:01:22.681 INFO:teuthology.orchestra.run.vm09.stdout:Running transaction 2026-03-09T00:01:22.683 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 3/20 2026-03-09T00:01:22.683 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/20 2026-03-09T00:01:22.697 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/20 2026-03-09T00:01:22.699 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : parquet-libs-9.0.0-15.el9.x86_64 5/20 2026-03-09T00:01:22.700 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 6/20 2026-03-09T00:01:22.701 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-09T00:01:22.701 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-09T00:01:22.702 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 7/20 2026-03-09T00:01:22.704 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 8/20 2026-03-09T00:01:22.706 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libarrow-doc-9.0.0-15.el9.noarch 9/20 2026-03-09T00:01:22.706 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.720 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.720 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 11/20 2026-03-09T00:01:22.720 INFO:teuthology.orchestra.run.vm05.stdout:warning: file /etc/ceph: remove failed: No such file or directory 2026-03-09T00:01:22.720 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.724 INFO:teuthology.orchestra.run.vm09.stdout: Preparing : 1/1 2026-03-09T00:01:22.727 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 1/20 2026-03-09T00:01:22.729 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2/20 2026-03-09T00:01:22.732 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 3/20 2026-03-09T00:01:22.732 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/20 2026-03-09T00:01:22.734 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 11/20 2026-03-09T00:01:22.737 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libarrow-9.0.0-15.el9.x86_64 12/20 2026-03-09T00:01:22.740 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : re2-1:20211101-20.el9.x86_64 13/20 2026-03-09T00:01:22.743 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : lttng-ust-2.12.0-6.el9.x86_64 14/20 2026-03-09T00:01:22.746 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/20 2026-03-09T00:01:22.746 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : thrift-0.15.0-4.el9.x86_64 15/20 2026-03-09T00:01:22.747 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-09T00:01:22.748 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : parquet-libs-9.0.0-15.el9.x86_64 5/20 2026-03-09T00:01:22.748 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libnbd-1.20.3-4.el9.x86_64 16/20 2026-03-09T00:01:22.750 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 6/20 2026-03-09T00:01:22.751 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 1/20 2026-03-09T00:01:22.751 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : libpmemobj-1.12.1-1.el9.x86_64 17/20 2026-03-09T00:01:22.751 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 7/20 2026-03-09T00:01:22.752 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : boost-program-options-1.75.0-13.el9.x86_64 18/20 2026-03-09T00:01:22.753 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2/20 2026-03-09T00:01:22.753 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 8/20 2026-03-09T00:01:22.756 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : librabbitmq-0.11.0-7.el9.x86_64 19/20 2026-03-09T00:01:22.756 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 3/20 2026-03-09T00:01:22.756 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/20 2026-03-09T00:01:22.756 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libarrow-doc-9.0.0-15.el9.noarch 9/20 2026-03-09T00:01:22.756 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.770 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 4/20 2026-03-09T00:01:22.771 INFO:teuthology.orchestra.run.vm05.stdout: Erasing : librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-09T00:01:22.772 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : parquet-libs-9.0.0-15.el9.x86_64 5/20 2026-03-09T00:01:22.772 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.772 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 11/20 2026-03-09T00:01:22.772 INFO:teuthology.orchestra.run.vm09.stdout:warning: file /etc/ceph: remove failed: No such file or directory 2026-03-09T00:01:22.772 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.773 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 6/20 2026-03-09T00:01:22.775 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 7/20 2026-03-09T00:01:22.776 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 8/20 2026-03-09T00:01:22.778 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libarrow-doc-9.0.0-15.el9.noarch 9/20 2026-03-09T00:01:22.778 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.786 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 11/20 2026-03-09T00:01:22.788 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libarrow-9.0.0-15.el9.x86_64 12/20 2026-03-09T00:01:22.792 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.792 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 11/20 2026-03-09T00:01:22.792 INFO:teuthology.orchestra.run.vm02.stdout:warning: file /etc/ceph: remove failed: No such file or directory 2026-03-09T00:01:22.792 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.792 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : re2-1:20211101-20.el9.x86_64 13/20 2026-03-09T00:01:22.795 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : lttng-ust-2.12.0-6.el9.x86_64 14/20 2026-03-09T00:01:22.797 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : thrift-0.15.0-4.el9.x86_64 15/20 2026-03-09T00:01:22.800 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libnbd-1.20.3-4.el9.x86_64 16/20 2026-03-09T00:01:22.801 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : libpmemobj-1.12.1-1.el9.x86_64 17/20 2026-03-09T00:01:22.803 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : boost-program-options-1.75.0-13.el9.x86_64 18/20 2026-03-09T00:01:22.805 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : librabbitmq-0.11.0-7.el9.x86_64 19/20 2026-03-09T00:01:22.807 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 11/20 2026-03-09T00:01:22.809 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libarrow-9.0.0-15.el9.x86_64 12/20 2026-03-09T00:01:22.812 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : re2-1:20211101-20.el9.x86_64 13/20 2026-03-09T00:01:22.815 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : lttng-ust-2.12.0-6.el9.x86_64 14/20 2026-03-09T00:01:22.818 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : thrift-0.15.0-4.el9.x86_64 15/20 2026-03-09T00:01:22.819 INFO:teuthology.orchestra.run.vm09.stdout: Erasing : librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-09T00:01:22.821 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libnbd-1.20.3-4.el9.x86_64 16/20 2026-03-09T00:01:22.823 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libpmemobj-1.12.1-1.el9.x86_64 17/20 2026-03-09T00:01:22.824 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : boost-program-options-1.75.0-13.el9.x86_64 18/20 2026-03-09T00:01:22.826 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librabbitmq-0.11.0-7.el9.x86_64 19/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Running scriptlet: librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 1/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 2/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 3/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 4/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 5/20 2026-03-09T00:01:22.832 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 6/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 7/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 8/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 9/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 11/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 12/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 13/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 14/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 15/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 16/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 17/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 18/20 2026-03-09T00:01:22.833 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : re2-1:20211101-20.el9.x86_64 19/20 2026-03-09T00:01:22.840 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 20/20 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout:Removed: 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.890 INFO:teuthology.orchestra.run.vm05.stdout: rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.891 INFO:teuthology.orchestra.run.vm05.stdout: re2-1:20211101-20.el9.x86_64 2026-03-09T00:01:22.891 INFO:teuthology.orchestra.run.vm05.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-09T00:01:22.891 INFO:teuthology.orchestra.run.vm05.stdout: 2026-03-09T00:01:22.891 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Running scriptlet: librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 1/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 2/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 3/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 4/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 5/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 6/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 7/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 8/20 2026-03-09T00:01:22.901 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 9/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 11/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 12/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 13/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 14/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 15/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 16/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 17/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 18/20 2026-03-09T00:01:22.902 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : re2-1:20211101-20.el9.x86_64 19/20 2026-03-09T00:01:22.910 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 1/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 2/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 3/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 4/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 5/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 6/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 7/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 8/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 9/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 10/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 11/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 12/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 13/20 2026-03-09T00:01:22.911 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 14/20 2026-03-09T00:01:22.912 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 15/20 2026-03-09T00:01:22.912 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 16/20 2026-03-09T00:01:22.912 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 17/20 2026-03-09T00:01:22.912 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 18/20 2026-03-09T00:01:22.912 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : re2-1:20211101-20.el9.x86_64 19/20 2026-03-09T00:01:22.953 INFO:teuthology.orchestra.run.vm09.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 20/20 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout:Removed: 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: re2-1:20211101-20.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout: 2026-03-09T00:01:22.954 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:22.962 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 20/20 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: librados2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: librbd1-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: librgw2-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: qemu-kvm-block-rbd-17:10.1.0-15.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd-2:19.2.3-678.ge911bdeb.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: re2-1:20211101-20.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-09T00:01:22.963 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:23.114 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: librbd1 2026-03-09T00:01:23.115 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:23.117 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:23.118 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:23.118 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:23.192 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: librbd1 2026-03-09T00:01:23.192 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:23.196 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:23.197 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:23.197 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:23.271 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: librbd1 2026-03-09T00:01:23.271 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:23.272 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:23.272 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:23.272 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:23.312 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: python3-rados 2026-03-09T00:01:23.312 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:23.314 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:23.315 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:23.315 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:23.388 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: python3-rados 2026-03-09T00:01:23.388 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:23.390 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:23.391 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:23.391 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:23.460 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-rados 2026-03-09T00:01:23.460 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:23.462 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:23.462 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:23.462 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:23.490 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: python3-rgw 2026-03-09T00:01:23.490 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:23.492 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:23.492 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:23.493 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:23.563 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: python3-rgw 2026-03-09T00:01:23.563 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:23.565 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:23.566 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:23.566 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:23.634 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-rgw 2026-03-09T00:01:23.634 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:23.636 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:23.636 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:23.636 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:23.663 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: python3-cephfs 2026-03-09T00:01:23.663 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:23.665 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:23.666 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:23.666 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:23.752 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: python3-cephfs 2026-03-09T00:01:23.752 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:23.754 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:23.755 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:23.755 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:23.811 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-cephfs 2026-03-09T00:01:23.811 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:23.813 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:23.813 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:23.814 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:23.841 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: python3-rbd 2026-03-09T00:01:23.841 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:23.843 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:23.843 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:23.843 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:23.929 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: python3-rbd 2026-03-09T00:01:23.929 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:23.931 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:23.932 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:23.932 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:23.989 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-rbd 2026-03-09T00:01:23.989 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:23.991 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:23.992 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:23.992 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:24.023 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: rbd-fuse 2026-03-09T00:01:24.023 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:24.025 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:24.025 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:24.025 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:24.102 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: rbd-fuse 2026-03-09T00:01:24.102 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:24.104 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:24.104 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:24.104 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:24.163 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: rbd-fuse 2026-03-09T00:01:24.163 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:24.166 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:24.167 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:24.167 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:24.201 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: rbd-mirror 2026-03-09T00:01:24.201 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:24.203 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:24.204 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:24.204 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:24.282 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: rbd-mirror 2026-03-09T00:01:24.282 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:24.284 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:24.285 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:24.285 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:24.354 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: rbd-mirror 2026-03-09T00:01:24.354 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:24.356 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:24.357 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:24.357 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:24.385 INFO:teuthology.orchestra.run.vm05.stdout:No match for argument: rbd-nbd 2026-03-09T00:01:24.386 INFO:teuthology.orchestra.run.vm05.stderr:No packages marked for removal. 2026-03-09T00:01:24.388 INFO:teuthology.orchestra.run.vm05.stdout:Dependencies resolved. 2026-03-09T00:01:24.388 INFO:teuthology.orchestra.run.vm05.stdout:Nothing to do. 2026-03-09T00:01:24.388 INFO:teuthology.orchestra.run.vm05.stdout:Complete! 2026-03-09T00:01:24.415 DEBUG:teuthology.orchestra.run.vm05:> sudo yum clean all 2026-03-09T00:01:24.462 INFO:teuthology.orchestra.run.vm09.stdout:No match for argument: rbd-nbd 2026-03-09T00:01:24.462 INFO:teuthology.orchestra.run.vm09.stderr:No packages marked for removal. 2026-03-09T00:01:24.464 INFO:teuthology.orchestra.run.vm09.stdout:Dependencies resolved. 2026-03-09T00:01:24.465 INFO:teuthology.orchestra.run.vm09.stdout:Nothing to do. 2026-03-09T00:01:24.465 INFO:teuthology.orchestra.run.vm09.stdout:Complete! 2026-03-09T00:01:24.488 DEBUG:teuthology.orchestra.run.vm09:> sudo yum clean all 2026-03-09T00:01:24.538 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: rbd-nbd 2026-03-09T00:01:24.539 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-09T00:01:24.540 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-09T00:01:24.541 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-09T00:01:24.541 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-09T00:01:24.555 INFO:teuthology.orchestra.run.vm05.stdout:56 files removed 2026-03-09T00:01:24.567 DEBUG:teuthology.orchestra.run.vm02:> sudo yum clean all 2026-03-09T00:01:24.582 DEBUG:teuthology.orchestra.run.vm05:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-09T00:01:24.608 DEBUG:teuthology.orchestra.run.vm05:> sudo yum clean expire-cache 2026-03-09T00:01:24.624 INFO:teuthology.orchestra.run.vm09.stdout:56 files removed 2026-03-09T00:01:24.645 DEBUG:teuthology.orchestra.run.vm09:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-09T00:01:24.669 DEBUG:teuthology.orchestra.run.vm09:> sudo yum clean expire-cache 2026-03-09T00:01:24.706 INFO:teuthology.orchestra.run.vm02.stdout:56 files removed 2026-03-09T00:01:24.735 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-09T00:01:24.762 DEBUG:teuthology.orchestra.run.vm02:> sudo yum clean expire-cache 2026-03-09T00:01:24.770 INFO:teuthology.orchestra.run.vm05.stdout:Cache was expired 2026-03-09T00:01:24.770 INFO:teuthology.orchestra.run.vm05.stdout:0 files removed 2026-03-09T00:01:24.790 DEBUG:teuthology.parallel:result is None 2026-03-09T00:01:24.826 INFO:teuthology.orchestra.run.vm09.stdout:Cache was expired 2026-03-09T00:01:24.826 INFO:teuthology.orchestra.run.vm09.stdout:0 files removed 2026-03-09T00:01:24.848 DEBUG:teuthology.parallel:result is None 2026-03-09T00:01:24.915 INFO:teuthology.orchestra.run.vm02.stdout:Cache was expired 2026-03-09T00:01:24.915 INFO:teuthology.orchestra.run.vm02.stdout:0 files removed 2026-03-09T00:01:24.933 DEBUG:teuthology.parallel:result is None 2026-03-09T00:01:24.934 INFO:teuthology.task.install:Removing ceph sources lists on ubuntu@vm02.local 2026-03-09T00:01:24.934 INFO:teuthology.task.install:Removing ceph sources lists on ubuntu@vm05.local 2026-03-09T00:01:24.934 INFO:teuthology.task.install:Removing ceph sources lists on ubuntu@vm09.local 2026-03-09T00:01:24.934 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-09T00:01:24.934 DEBUG:teuthology.orchestra.run.vm05:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-09T00:01:24.934 DEBUG:teuthology.orchestra.run.vm09:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-09T00:01:24.960 DEBUG:teuthology.orchestra.run.vm09:> sudo mv -f /etc/yum/pluginconf.d/priorities.conf.orig /etc/yum/pluginconf.d/priorities.conf 2026-03-09T00:01:24.960 DEBUG:teuthology.orchestra.run.vm02:> sudo mv -f /etc/yum/pluginconf.d/priorities.conf.orig /etc/yum/pluginconf.d/priorities.conf 2026-03-09T00:01:24.960 DEBUG:teuthology.orchestra.run.vm05:> sudo mv -f /etc/yum/pluginconf.d/priorities.conf.orig /etc/yum/pluginconf.d/priorities.conf 2026-03-09T00:01:25.025 DEBUG:teuthology.parallel:result is None 2026-03-09T00:01:25.027 DEBUG:teuthology.parallel:result is None 2026-03-09T00:01:25.027 DEBUG:teuthology.parallel:result is None 2026-03-09T00:01:25.027 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-03-09T00:01:25.029 INFO:teuthology.task.clock:Checking final clock skew... 2026-03-09T00:01:25.029 DEBUG:teuthology.orchestra.run.vm02:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-09T00:01:25.070 DEBUG:teuthology.orchestra.run.vm05:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-09T00:01:25.071 DEBUG:teuthology.orchestra.run.vm09:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-09T00:01:25.083 INFO:teuthology.orchestra.run.vm02.stderr:bash: line 1: ntpq: command not found 2026-03-09T00:01:25.084 INFO:teuthology.orchestra.run.vm05.stderr:bash: line 1: ntpq: command not found 2026-03-09T00:01:25.088 INFO:teuthology.orchestra.run.vm09.stderr:bash: line 1: ntpq: command not found 2026-03-09T00:01:25.195 INFO:teuthology.orchestra.run.vm05.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-09T00:01:25.195 INFO:teuthology.orchestra.run.vm05.stdout:=============================================================================== 2026-03-09T00:01:25.195 INFO:teuthology.orchestra.run.vm05.stdout:^* de.relay.mahi.be 3 6 377 2 -1472us[-1371us] +/- 18ms 2026-03-09T00:01:25.195 INFO:teuthology.orchestra.run.vm05.stdout:^+ bard-dmz.cbs.mpg.de 2 6 377 46 -396us[ -298us] +/- 53ms 2026-03-09T00:01:25.195 INFO:teuthology.orchestra.run.vm05.stdout:^+ 139-144-71-56.ip.linodeu> 2 6 377 0 +3985us[+3985us] +/- 31ms 2026-03-09T00:01:25.195 INFO:teuthology.orchestra.run.vm05.stdout:^+ dominus.von-oppen.com 2 6 377 45 +148us[ +247us] +/- 34ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm02.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm02.stdout:=============================================================================== 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm02.stdout:^- tor.nocabal.de 2 6 377 24 -676us[ -676us] +/- 33ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm02.stdout:^* de.relay.mahi.be 3 6 377 64 -1543us[-1534us] +/- 19ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm02.stdout:^+ 139-144-71-56.ip.linodeu> 2 6 377 2 +3815us[+3815us] +/- 30ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm02.stdout:^? timegoesbrrr.net 2 7 40 395 +1042us[+1441us] +/- 27ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm09.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm09.stdout:=============================================================================== 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm09.stdout:^* de.relay.mahi.be 3 6 377 2 -1476us[-1580us] +/- 18ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm09.stdout:^+ tor.nocabal.de 2 6 377 45 -609us[ -715us] +/- 33ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm09.stdout:^+ 139-144-71-56.ip.linodeu> 2 6 377 1 +3945us[+3945us] +/- 30ms 2026-03-09T00:01:25.196 INFO:teuthology.orchestra.run.vm09.stdout:^+ dominus.von-oppen.com 2 6 377 47 +101us[-5186ns] +/- 34ms 2026-03-09T00:01:25.197 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-03-09T00:01:25.199 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-03-09T00:01:25.199 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-03-09T00:01:25.201 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-03-09T00:01:25.203 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-03-09T00:01:25.204 INFO:teuthology.task.internal:Duration was 1140.946801 seconds 2026-03-09T00:01:25.205 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-03-09T00:01:25.207 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-03-09T00:01:25.207 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-09T00:01:25.239 DEBUG:teuthology.orchestra.run.vm05:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-09T00:01:25.240 DEBUG:teuthology.orchestra.run.vm09:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-09T00:01:25.277 INFO:teuthology.orchestra.run.vm02.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T00:01:25.284 INFO:teuthology.orchestra.run.vm05.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T00:01:25.285 INFO:teuthology.orchestra.run.vm09.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-09T00:01:25.655 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-03-09T00:01:25.655 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm02.local 2026-03-09T00:01:25.655 DEBUG:teuthology.orchestra.run.vm02:> 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-03-09T00:01:25.679 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm05.local 2026-03-09T00:01:25.679 DEBUG:teuthology.orchestra.run.vm05:> 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-03-09T00:01:25.704 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm09.local 2026-03-09T00:01:25.704 DEBUG:teuthology.orchestra.run.vm09:> 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-03-09T00:01:25.728 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-03-09T00:01:25.728 DEBUG:teuthology.orchestra.run.vm02:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T00:01:25.729 DEBUG:teuthology.orchestra.run.vm05:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T00:01:25.746 DEBUG:teuthology.orchestra.run.vm09:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T00:01:26.808 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-03-09T00:01:26.808 DEBUG:teuthology.orchestra.run.vm02:> 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-03-09T00:01:26.810 DEBUG:teuthology.orchestra.run.vm05:> 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-03-09T00:01:26.812 DEBUG:teuthology.orchestra.run.vm09:> 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-03-09T00:01:26.836 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T00:01:26.836 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T00:01:26.836 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm09.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm09.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-09T00:01:26.837 INFO:teuthology.orchestra.run.vm09.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-09T00:01:26.838 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-09T00:01:26.838 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-09T00:01:26.838 INFO:teuthology.orchestra.run.vm05.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-09T00:01:26.838 INFO:teuthology.orchestra.run.vm05.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-09T00:01:26.839 INFO:teuthology.orchestra.run.vm05.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0%/home/ubuntu/cephtest/archive/syslog/journalctl.log: -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-09T00:01:26.962 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-09T00:01:26.965 INFO:teuthology.orchestra.run.vm09.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.2% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-09T00:01:27.242 INFO:teuthology.orchestra.run.vm05.stderr: 98.5% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-09T00:01:27.244 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-03-09T00:01:27.247 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-03-09T00:01:27.247 DEBUG:teuthology.orchestra.run.vm02:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-09T00:01:27.273 DEBUG:teuthology.orchestra.run.vm05:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-09T00:01:27.309 DEBUG:teuthology.orchestra.run.vm09:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-09T00:01:27.337 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-03-09T00:01:27.339 DEBUG:teuthology.orchestra.run.vm02:> 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-03-09T00:01:27.341 DEBUG:teuthology.orchestra.run.vm05:> 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-03-09T00:01:27.352 DEBUG:teuthology.orchestra.run.vm09:> 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-03-09T00:01:27.365 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern = core 2026-03-09T00:01:27.376 INFO:teuthology.orchestra.run.vm05.stdout:kernel.core_pattern = core 2026-03-09T00:01:27.405 INFO:teuthology.orchestra.run.vm09.stdout:kernel.core_pattern = core 2026-03-09T00:01:27.420 DEBUG:teuthology.orchestra.run.vm02:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-09T00:01:27.436 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T00:01:27.436 DEBUG:teuthology.orchestra.run.vm05:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-09T00:01:27.450 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T00:01:27.451 DEBUG:teuthology.orchestra.run.vm09:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-09T00:01:27.474 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-09T00:01:27.475 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-03-09T00:01:27.477 INFO:teuthology.task.internal:Transferring archived files... 2026-03-09T00:01:27.477 DEBUG:teuthology.misc:Transferring archived files from vm02:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm02 2026-03-09T00:01:27.478 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-09T00:01:27.505 DEBUG:teuthology.misc:Transferring archived files from vm05:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm05 2026-03-09T00:01:27.505 DEBUG:teuthology.orchestra.run.vm05:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-09T00:01:27.541 DEBUG:teuthology.misc:Transferring archived files from vm09:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-08_22:22:45-orch:cephadm-squid-none-default-vps/305/remote/vm09 2026-03-09T00:01:27.541 DEBUG:teuthology.orchestra.run.vm09:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-09T00:01:27.569 INFO:teuthology.task.internal:Removing archive directory... 2026-03-09T00:01:27.569 DEBUG:teuthology.orchestra.run.vm02:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-09T00:01:27.571 DEBUG:teuthology.orchestra.run.vm05:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-09T00:01:27.580 DEBUG:teuthology.orchestra.run.vm09:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-09T00:01:27.625 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-03-09T00:01:27.628 INFO:teuthology.task.internal:Not uploading archives. 2026-03-09T00:01:27.628 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-03-09T00:01:27.630 INFO:teuthology.task.internal:Tidying up after the test... 2026-03-09T00:01:27.630 DEBUG:teuthology.orchestra.run.vm02:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-09T00:01:27.632 DEBUG:teuthology.orchestra.run.vm05:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-09T00:01:27.635 DEBUG:teuthology.orchestra.run.vm09:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-09T00:01:27.648 INFO:teuthology.orchestra.run.vm02.stdout: 8532140 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 9 00:01 /home/ubuntu/cephtest 2026-03-09T00:01:27.652 INFO:teuthology.orchestra.run.vm05.stdout: 8532146 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 9 00:01 /home/ubuntu/cephtest 2026-03-09T00:01:27.682 INFO:teuthology.orchestra.run.vm09.stdout: 8532144 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 9 00:01 /home/ubuntu/cephtest 2026-03-09T00:01:27.683 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-03-09T00:01:27.688 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/on mon_election/connectivity task/test_host_drain} duration: 1140.9468007087708 flavor: default owner: kyr success: true 2026-03-09T00:01:27.688 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-09T00:01:27.707 INFO:teuthology.run:pass