2026-03-31T17:37:36.056 INFO:root:teuthology version: 1.2.4.dev37+ga59626679 2026-03-31T17:37:36.061 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-31T17:37:36.080 INFO:teuthology.run:Config: archive_path: /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326 branch: tentacle description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: null first_in_suite: false flavor: default job_id: '4326' last_in_suite: false machine_type: vps name: kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: tentacle ansible.cephlab: branch: main repo: https://github.com/kshtsk/ceph-cm-ansible.git skip_tags: nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs vars: logical_volumes: lv_1: scratch_dev: true size: 25%VG vg: vg_nvme lv_2: scratch_dev: true size: 25%VG vg: vg_nvme lv_3: scratch_dev: true size: 25%VG vg: vg_nvme lv_4: scratch_dev: true size: 25%VG vg: vg_nvme timezone: UTC volume_groups: vg_nvme: pvs: /dev/vdb,/dev/vdc,/dev/vdd,/dev/vde ceph: conf: global: mon election default strategy: 1 mgr: debug mgr: 20 debug ms: 1 mgr/cephadm/use_agent: false 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: 5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} cephadm: cephadm_binary_url: https://download.ceph.com/rpm-20.2.0/el9/noarch/cephadm install: ceph: flavor: default sha1: 5bb3278730741031382ca9c3dc9d221a942e06a2 extra_system_packages: deb: - python3-jmespath - python3-xmltodict - s3cmd rpm: - bzip2 - perl-Test-Harness - python3-jmespath - python3-xmltodict - s3cmd selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: tt-tentacle sha1: 0392f78529848ec72469e8e431875cb98d3a5fb4 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: 6407 sha1: 5bb3278730741031382ca9c3dc9d221a942e06a2 sleep_before_teardown: 0 subset: 1/100000 suite: rados suite_branch: tt-tentacle suite_path: /home/teuthos/src/github.com_kshtsk_ceph_0392f78529848ec72469e8e431875cb98d3a5fb4/qa suite_relpath: qa suite_repo: https://github.com/kshtsk/ceph.git suite_sha1: 0392f78529848ec72469e8e431875cb98d3a5fb4 targets: vm02.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBidw1u+M7rOuf66RIyX9pMRQWeUvWTBr/51XKwYkjL5Qrd+AdLieaN5rdDMseK2K413KEgEGVQOG5+FYtmUyl0= vm06.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJUmGS21eCTOBZhDJtzGVkbGB1/ZHqCRcvIO3/QNtjk5v1W1TN0R9rIPzMKSfccjk2zVdn+4gbOM8Ykq0GUDj6Q= vm07.local: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBK+G0aOTA/CyYu9PWBZwiJPl+Kgy/8/g3E7+MxpYyOTAhdV+4W0Qp+d5sUStcXJtK7G4dNZKQWZ/KwqA45OEim8= 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: uv2 teuthology_repo: https://github.com/kshtsk/teuthology teuthology_sha1: a59626679648f962bca99d20d35578f2998c8f37 timestamp: 2026-03-31_11:18:10 tube: vps user: kyr verbose: false worker_log: /home/teuthos/.teuthology/dispatcher/dispatcher.vps.282426 2026-03-31T17:37:36.080 INFO:teuthology.run:suite_path is set to /home/teuthos/src/github.com_kshtsk_ceph_0392f78529848ec72469e8e431875cb98d3a5fb4/qa; will attempt to use it 2026-03-31T17:37:36.080 INFO:teuthology.run:Found tasks at /home/teuthos/src/github.com_kshtsk_ceph_0392f78529848ec72469e8e431875cb98d3a5fb4/qa/tasks 2026-03-31T17:37:36.080 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-03-31T17:37:36.081 INFO:teuthology.task.internal:Checking packages... 2026-03-31T17:37:36.081 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '5bb3278730741031382ca9c3dc9d221a942e06a2' 2026-03-31T17:37:36.081 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-03-31T17:37:36.081 INFO:teuthology.packaging:ref: None 2026-03-31T17:37:36.081 INFO:teuthology.packaging:tag: None 2026-03-31T17:37:36.081 INFO:teuthology.packaging:branch: tentacle 2026-03-31T17:37:36.081 INFO:teuthology.packaging:sha1: 5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:37:36.081 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=tentacle 2026-03-31T17:37:36.819 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-721.g5bb32787 2026-03-31T17:37:36.819 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-03-31T17:37:36.820 INFO:teuthology.task.internal:no buildpackages task found 2026-03-31T17:37:36.820 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-03-31T17:37:36.820 INFO:teuthology.task.internal:Saving configuration 2026-03-31T17:37:36.826 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-03-31T17:37:36.826 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-03-31T17:37:36.834 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm02.local', 'description': '/archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326', '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-31 17:36:08.170452', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:02', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBBidw1u+M7rOuf66RIyX9pMRQWeUvWTBr/51XKwYkjL5Qrd+AdLieaN5rdDMseK2K413KEgEGVQOG5+FYtmUyl0='} 2026-03-31T17:37:36.838 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm06.local', 'description': '/archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326', '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-31 17:36:08.171061', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:06', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBJUmGS21eCTOBZhDJtzGVkbGB1/ZHqCRcvIO3/QNtjk5v1W1TN0R9rIPzMKSfccjk2zVdn+4gbOM8Ykq0GUDj6Q='} 2026-03-31T17:37:36.842 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'vm07.local', 'description': '/archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326', '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-31 17:36:08.170849', 'locked_by': 'kyr', 'mac_address': '52:55:00:00:00:07', 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBK+G0aOTA/CyYu9PWBZwiJPl+Kgy/8/g3E7+MxpYyOTAhdV+4W0Qp+d5sUStcXJtK7G4dNZKQWZ/KwqA45OEim8='} 2026-03-31T17:37:36.842 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-03-31T17:37:36.843 INFO:teuthology.task.internal:roles: ubuntu@vm02.local - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-03-31T17:37:36.843 INFO:teuthology.task.internal:roles: ubuntu@vm06.local - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-03-31T17:37:36.843 INFO:teuthology.task.internal:roles: ubuntu@vm07.local - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-03-31T17:37:36.843 INFO:teuthology.run_tasks:Running task console_log... 2026-03-31T17:37:36.847 DEBUG:teuthology.task.console_log:vm02 does not support IPMI; excluding 2026-03-31T17:37:36.851 DEBUG:teuthology.task.console_log:vm06 does not support IPMI; excluding 2026-03-31T17:37:36.855 DEBUG:teuthology.task.console_log:vm07 does not support IPMI; excluding 2026-03-31T17:37:36.855 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7fabb7079f30>, signals=[15]) 2026-03-31T17:37:36.855 INFO:teuthology.run_tasks:Running task internal.connect... 2026-03-31T17:37:36.856 INFO:teuthology.task.internal:Opening connections... 2026-03-31T17:37:36.856 DEBUG:teuthology.task.internal:connecting to ubuntu@vm02.local 2026-03-31T17:37:36.856 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm02.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-31T17:37:36.914 DEBUG:teuthology.task.internal:connecting to ubuntu@vm06.local 2026-03-31T17:37:36.914 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm06.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-31T17:37:36.972 DEBUG:teuthology.task.internal:connecting to ubuntu@vm07.local 2026-03-31T17:37:36.972 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm07.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-31T17:37:37.032 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-03-31T17:37:37.033 DEBUG:teuthology.orchestra.run.vm02:> uname -m 2026-03-31T17:37:37.048 INFO:teuthology.orchestra.run.vm02.stdout:x86_64 2026-03-31T17:37:37.048 DEBUG:teuthology.orchestra.run.vm02:> cat /etc/os-release 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:NAME="CentOS Stream" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:VERSION="9" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:ID="centos" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:ID_LIKE="rhel fedora" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:VERSION_ID="9" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:PLATFORM_ID="platform:el9" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:ANSI_COLOR="0;31" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:LOGO="fedora-logo-icon" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:HOME_URL="https://centos.org/" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-31T17:37:37.102 INFO:teuthology.orchestra.run.vm02.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-31T17:37:37.103 INFO:teuthology.lock.ops:Updating vm02.local on lock server 2026-03-31T17:37:37.107 DEBUG:teuthology.orchestra.run.vm06:> uname -m 2026-03-31T17:37:37.124 INFO:teuthology.orchestra.run.vm06.stdout:x86_64 2026-03-31T17:37:37.124 DEBUG:teuthology.orchestra.run.vm06:> cat /etc/os-release 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:NAME="CentOS Stream" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:VERSION="9" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:ID="centos" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:ID_LIKE="rhel fedora" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:VERSION_ID="9" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:PLATFORM_ID="platform:el9" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:ANSI_COLOR="0;31" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:LOGO="fedora-logo-icon" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:HOME_URL="https://centos.org/" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-31T17:37:37.179 INFO:teuthology.orchestra.run.vm06.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-31T17:37:37.179 INFO:teuthology.lock.ops:Updating vm06.local on lock server 2026-03-31T17:37:37.183 DEBUG:teuthology.orchestra.run.vm07:> uname -m 2026-03-31T17:37:37.197 INFO:teuthology.orchestra.run.vm07.stdout:x86_64 2026-03-31T17:37:37.197 DEBUG:teuthology.orchestra.run.vm07:> cat /etc/os-release 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:NAME="CentOS Stream" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:VERSION="9" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:ID="centos" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:ID_LIKE="rhel fedora" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:VERSION_ID="9" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:PLATFORM_ID="platform:el9" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:PRETTY_NAME="CentOS Stream 9" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:ANSI_COLOR="0;31" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:LOGO="fedora-logo-icon" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:HOME_URL="https://centos.org/" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-03-31T17:37:37.252 INFO:teuthology.orchestra.run.vm07.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-03-31T17:37:37.252 INFO:teuthology.lock.ops:Updating vm07.local on lock server 2026-03-31T17:37:37.271 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-03-31T17:37:37.272 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-03-31T17:37:37.273 INFO:teuthology.task.internal:Checking for old test directory... 2026-03-31T17:37:37.273 DEBUG:teuthology.orchestra.run.vm02:> test '!' -e /home/ubuntu/cephtest 2026-03-31T17:37:37.275 DEBUG:teuthology.orchestra.run.vm06:> test '!' -e /home/ubuntu/cephtest 2026-03-31T17:37:37.276 DEBUG:teuthology.orchestra.run.vm07:> test '!' -e /home/ubuntu/cephtest 2026-03-31T17:37:37.306 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-03-31T17:37:37.307 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-03-31T17:37:37.307 DEBUG:teuthology.orchestra.run.vm02:> test -z $(ls -A /var/lib/ceph) 2026-03-31T17:37:37.330 DEBUG:teuthology.orchestra.run.vm06:> test -z $(ls -A /var/lib/ceph) 2026-03-31T17:37:37.332 DEBUG:teuthology.orchestra.run.vm07:> test -z $(ls -A /var/lib/ceph) 2026-03-31T17:37:37.343 INFO:teuthology.orchestra.run.vm02.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-31T17:37:37.344 INFO:teuthology.orchestra.run.vm06.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-31T17:37:37.359 INFO:teuthology.orchestra.run.vm07.stderr:ls: cannot access '/var/lib/ceph': No such file or directory 2026-03-31T17:37:37.360 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-03-31T17:37:37.367 DEBUG:teuthology.orchestra.run.vm02:> test -e /ceph-qa-ready 2026-03-31T17:37:37.396 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:37:37.580 DEBUG:teuthology.orchestra.run.vm06:> test -e /ceph-qa-ready 2026-03-31T17:37:37.593 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:37:37.783 DEBUG:teuthology.orchestra.run.vm07:> test -e /ceph-qa-ready 2026-03-31T17:37:37.796 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:37:37.974 INFO:teuthology.run_tasks:Running task internal.base... 2026-03-31T17:37:37.975 INFO:teuthology.task.internal:Creating test directory... 2026-03-31T17:37:37.975 DEBUG:teuthology.orchestra.run.vm02:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-31T17:37:37.977 DEBUG:teuthology.orchestra.run.vm06:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-31T17:37:37.979 DEBUG:teuthology.orchestra.run.vm07:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-03-31T17:37:37.993 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-03-31T17:37:37.994 INFO:teuthology.run_tasks:Running task internal.archive... 2026-03-31T17:37:37.995 INFO:teuthology.task.internal:Creating archive directory... 2026-03-31T17:37:37.995 DEBUG:teuthology.orchestra.run.vm02:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-31T17:37:38.034 DEBUG:teuthology.orchestra.run.vm06:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-31T17:37:38.036 DEBUG:teuthology.orchestra.run.vm07:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-03-31T17:37:38.052 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-03-31T17:37:38.053 INFO:teuthology.task.internal:Enabling coredump saving... 2026-03-31T17:37:38.053 DEBUG:teuthology.orchestra.run.vm02:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-31T17:37:38.104 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:37:38.105 DEBUG:teuthology.orchestra.run.vm06:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-31T17:37:38.117 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:37:38.118 DEBUG:teuthology.orchestra.run.vm07:> test -f /run/.containerenv -o -f /.dockerenv 2026-03-31T17:37:38.131 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:37:38.131 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-31T17:37:38.147 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:37:38.160 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:37:38.166 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-31T17:37:38.175 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-31T17:37:38.182 INFO:teuthology.orchestra.run.vm06.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-31T17:37:38.191 INFO:teuthology.orchestra.run.vm06.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-31T17:37:38.196 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-31T17:37:38.204 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-03-31T17:37:38.205 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-03-31T17:37:38.206 INFO:teuthology.task.internal:Configuring sudo... 2026-03-31T17:37:38.206 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-31T17:37:38.218 DEBUG:teuthology.orchestra.run.vm06:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-31T17:37:38.234 DEBUG:teuthology.orchestra.run.vm07:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-03-31T17:37:38.267 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-03-31T17:37:38.270 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-03-31T17:37:38.270 DEBUG:teuthology.orchestra.run.vm02:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-31T17:37:38.281 DEBUG:teuthology.orchestra.run.vm06:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-31T17:37:38.297 DEBUG:teuthology.orchestra.run.vm07:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-03-31T17:37:38.322 DEBUG:teuthology.orchestra.run.vm02:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-31T17:37:38.354 DEBUG:teuthology.orchestra.run.vm02:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-31T17:37:38.408 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:37:38.408 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-31T17:37:38.466 DEBUG:teuthology.orchestra.run.vm06:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-31T17:37:38.487 DEBUG:teuthology.orchestra.run.vm06:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-31T17:37:38.543 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:37:38.543 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-31T17:37:38.600 DEBUG:teuthology.orchestra.run.vm07:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-31T17:37:38.625 DEBUG:teuthology.orchestra.run.vm07:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-31T17:37:38.680 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:37:38.680 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-03-31T17:37:38.736 DEBUG:teuthology.orchestra.run.vm02:> sudo service rsyslog restart 2026-03-31T17:37:38.738 DEBUG:teuthology.orchestra.run.vm06:> sudo service rsyslog restart 2026-03-31T17:37:38.740 DEBUG:teuthology.orchestra.run.vm07:> sudo service rsyslog restart 2026-03-31T17:37:38.764 INFO:teuthology.orchestra.run.vm02.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-31T17:37:38.765 INFO:teuthology.orchestra.run.vm06.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-31T17:37:38.801 INFO:teuthology.orchestra.run.vm07.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-31T17:37:39.260 INFO:teuthology.run_tasks:Running task internal.timer... 2026-03-31T17:37:39.262 INFO:teuthology.task.internal:Starting timer... 2026-03-31T17:37:39.262 INFO:teuthology.run_tasks:Running task pcp... 2026-03-31T17:37:39.265 INFO:teuthology.run_tasks:Running task selinux... 2026-03-31T17:37:39.267 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-31T17:37:39.267 INFO:teuthology.task.selinux:Excluding vm02: VMs are not yet supported 2026-03-31T17:37:39.267 INFO:teuthology.task.selinux:Excluding vm06: VMs are not yet supported 2026-03-31T17:37:39.267 INFO:teuthology.task.selinux:Excluding vm07: VMs are not yet supported 2026-03-31T17:37:39.267 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-03-31T17:37:39.267 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2026-03-31T17:37:39.267 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-03-31T17:37:39.267 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-03-31T17:37:39.269 DEBUG:teuthology.task:Applying overrides for task ansible.cephlab: {'branch': 'main', 'repo': 'https://github.com/kshtsk/ceph-cm-ansible.git', 'skip_tags': 'nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs', 'vars': {'logical_volumes': {'lv_1': {'scratch_dev': True, 'size': '25%VG', 'vg': 'vg_nvme'}, 'lv_2': {'scratch_dev': True, 'size': '25%VG', 'vg': 'vg_nvme'}, 'lv_3': {'scratch_dev': True, 'size': '25%VG', 'vg': 'vg_nvme'}, 'lv_4': {'scratch_dev': True, 'size': '25%VG', 'vg': 'vg_nvme'}}, 'timezone': 'UTC', 'volume_groups': {'vg_nvme': {'pvs': '/dev/vdb,/dev/vdc,/dev/vdd,/dev/vde'}}}} 2026-03-31T17:37:39.269 DEBUG:teuthology.repo_utils:Setting repo remote to https://github.com/kshtsk/ceph-cm-ansible.git 2026-03-31T17:37:39.271 INFO:teuthology.repo_utils:Fetching github.com_kshtsk_ceph-cm-ansible_main from origin 2026-03-31T17:37:39.767 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthos/src/github.com_kshtsk_ceph-cm-ansible_main to origin/main 2026-03-31T17:37:39.772 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-31T17:37:39.773 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu", "logical_volumes": {"lv_1": {"scratch_dev": true, "size": "25%VG", "vg": "vg_nvme"}, "lv_2": {"scratch_dev": true, "size": "25%VG", "vg": "vg_nvme"}, "lv_3": {"scratch_dev": true, "size": "25%VG", "vg": "vg_nvme"}, "lv_4": {"scratch_dev": true, "size": "25%VG", "vg": "vg_nvme"}}, "timezone": "UTC", "volume_groups": {"vg_nvme": {"pvs": "/dev/vdb,/dev/vdc,/dev/vdd,/dev/vde"}}}' -i /tmp/teuth_ansible_inventory677coar9 --limit vm02.local,vm06.local,vm07.local /home/teuthos/src/github.com_kshtsk_ceph-cm-ansible_main/cephlab.yml --skip-tags nagios,monitoring-scripts,hostname,pubkeys,zap,sudoers,kerberos,ntp-client,resolvconf,cpan,nfs 2026-03-31T17:39:40.342 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@vm02.local'), Remote(name='ubuntu@vm06.local'), Remote(name='ubuntu@vm07.local')] 2026-03-31T17:39:40.343 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm02.local' 2026-03-31T17:39:40.343 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm02.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-31T17:39:40.408 DEBUG:teuthology.orchestra.run.vm02:> true 2026-03-31T17:39:40.495 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm02.local' 2026-03-31T17:39:40.495 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm06.local' 2026-03-31T17:39:40.496 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm06.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-31T17:39:40.558 DEBUG:teuthology.orchestra.run.vm06:> true 2026-03-31T17:39:40.647 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm06.local' 2026-03-31T17:39:40.648 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@vm07.local' 2026-03-31T17:39:40.648 DEBUG:teuthology.orchestra.connection:{'hostname': 'vm07.local', 'username': 'ubuntu', 'timeout': 60} 2026-03-31T17:39:40.711 DEBUG:teuthology.orchestra.run.vm07:> true 2026-03-31T17:39:40.798 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@vm07.local' 2026-03-31T17:39:40.798 INFO:teuthology.run_tasks:Running task clock... 2026-03-31T17:39:40.801 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-03-31T17:39:40.801 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-31T17:39:40.801 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-31T17:39:40.803 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-31T17:39:40.803 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:39:40.805 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-03-31T17:39:40.805 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:39:40.837 INFO:teuthology.orchestra.run.vm02.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-03-31T17:39:40.839 INFO:teuthology.orchestra.run.vm06.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-03-31T17:39:40.854 INFO:teuthology.orchestra.run.vm02.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-03-31T17:39:40.858 INFO:teuthology.orchestra.run.vm06.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-03-31T17:39:40.876 INFO:teuthology.orchestra.run.vm07.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-03-31T17:39:40.881 INFO:teuthology.orchestra.run.vm02.stderr:sudo: ntpd: command not found 2026-03-31T17:39:40.891 INFO:teuthology.orchestra.run.vm06.stderr:sudo: ntpd: command not found 2026-03-31T17:39:40.897 INFO:teuthology.orchestra.run.vm02.stdout:506 Cannot talk to daemon 2026-03-31T17:39:40.898 INFO:teuthology.orchestra.run.vm07.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-03-31T17:39:40.907 INFO:teuthology.orchestra.run.vm06.stdout:506 Cannot talk to daemon 2026-03-31T17:39:40.917 INFO:teuthology.orchestra.run.vm02.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-03-31T17:39:40.924 INFO:teuthology.orchestra.run.vm06.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-03-31T17:39:40.928 INFO:teuthology.orchestra.run.vm07.stderr:sudo: ntpd: command not found 2026-03-31T17:39:40.937 INFO:teuthology.orchestra.run.vm02.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-03-31T17:39:40.943 INFO:teuthology.orchestra.run.vm06.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-03-31T17:39:40.944 INFO:teuthology.orchestra.run.vm07.stdout:506 Cannot talk to daemon 2026-03-31T17:39:40.963 INFO:teuthology.orchestra.run.vm07.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-03-31T17:39:40.978 INFO:teuthology.orchestra.run.vm07.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-03-31T17:39:41.007 INFO:teuthology.orchestra.run.vm02.stderr:bash: line 1: ntpq: command not found 2026-03-31T17:39:41.009 INFO:teuthology.orchestra.run.vm06.stderr:bash: line 1: ntpq: command not found 2026-03-31T17:39:41.035 INFO:teuthology.orchestra.run.vm07.stderr:bash: line 1: ntpq: command not found 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm06.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm06.stdout:=============================================================================== 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm06.stdout:^? 185.13.148.71 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm06.stdout:^? ntp1.rrze.uni-erlangen.de 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm06.stdout:^? ip217-154-182-60.pbiaas.> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm06.stdout:^? 217.160.19.219 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm07.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm07.stdout:=============================================================================== 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm07.stdout:^? 217.160.19.219 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm07.stdout:^? 185.13.148.71 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm07.stdout:^? ntp1.rrze.uni-erlangen.de 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.085 INFO:teuthology.orchestra.run.vm07.stdout:^? ip217-154-182-60.pbiaas.> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.086 INFO:teuthology.orchestra.run.vm02.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-31T17:39:41.086 INFO:teuthology.orchestra.run.vm02.stdout:=============================================================================== 2026-03-31T17:39:41.086 INFO:teuthology.orchestra.run.vm02.stdout:^? 217.160.19.219 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.086 INFO:teuthology.orchestra.run.vm02.stdout:^? 185.13.148.71 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.086 INFO:teuthology.orchestra.run.vm02.stdout:^? ntp1.rrze.uni-erlangen.de 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.086 INFO:teuthology.orchestra.run.vm02.stdout:^? ip217-154-182-60.pbiaas.> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-03-31T17:39:41.086 INFO:teuthology.run_tasks:Running task pexec... 2026-03-31T17:39:41.090 INFO:teuthology.task.pexec:Executing custom commands... 2026-03-31T17:39:41.090 DEBUG:teuthology.orchestra.run.vm02:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-03-31T17:39:41.090 DEBUG:teuthology.orchestra.run.vm06:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-03-31T17:39:41.090 DEBUG:teuthology.orchestra.run.vm07:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-03-31T17:39:41.128 INFO:teuthology.task.pexec:Running commands on host ubuntu@vm06.local 2026-03-31T17:39:41.128 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-03-31T17:39:41.128 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-03-31T17:39:41.129 INFO:teuthology.task.pexec:Running commands on host ubuntu@vm02.local 2026-03-31T17:39:41.129 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-03-31T17:39:41.129 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-03-31T17:39:41.130 INFO:teuthology.task.pexec:Running commands on host ubuntu@vm07.local 2026-03-31T17:39:41.130 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-03-31T17:39:41.130 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-03-31T17:39:41.348 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: nvme-cli 2026-03-31T17:39:41.348 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:39:41.354 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: nvme-cli 2026-03-31T17:39:41.355 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:39:41.355 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:39:41.356 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:39:41.356 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:39:41.358 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:39:41.359 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:39:41.359 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:39:41.392 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: nvme-cli 2026-03-31T17:39:41.392 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:39:41.395 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:39:41.396 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:39:41.396 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:39:41.801 INFO:teuthology.orchestra.run.vm06.stdout:Last metadata expiration check: 0:01:04 ago on Tue 31 Mar 2026 05:38:37 PM UTC. 2026-03-31T17:39:41.847 INFO:teuthology.orchestra.run.vm02.stdout:Last metadata expiration check: 0:01:29 ago on Tue 31 Mar 2026 05:38:12 PM UTC. 2026-03-31T17:39:41.870 INFO:teuthology.orchestra.run.vm07.stdout:Last metadata expiration check: 0:01:30 ago on Tue 31 Mar 2026 05:38:11 PM UTC. 2026-03-31T17:39:41.912 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: Package Architecture Version Repository Size 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Installing: 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Installing dependencies: 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Install 6 Packages 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Total download size: 2.3 M 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Installed size: 11 M 2026-03-31T17:39:41.913 INFO:teuthology.orchestra.run.vm06.stdout:Downloading Packages: 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: Package Architecture Version Repository Size 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout:Installing: 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout:Installing dependencies: 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-03-31T17:39:41.976 INFO:teuthology.orchestra.run.vm07.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout:Install 6 Packages 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout:Total download size: 2.3 M 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout:Installed size: 11 M 2026-03-31T17:39:41.977 INFO:teuthology.orchestra.run.vm07.stdout:Downloading Packages: 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout: Package Architecture Version Repository Size 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout:Installing: 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout:Installing dependencies: 2026-03-31T17:39:41.984 INFO:teuthology.orchestra.run.vm02.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout:Install 6 Packages 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout:Total download size: 2.3 M 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout:Installed size: 11 M 2026-03-31T17:39:41.985 INFO:teuthology.orchestra.run.vm02.stdout:Downloading Packages: 2026-03-31T17:39:42.305 INFO:teuthology.orchestra.run.vm02.stdout:(1/6): python3-configshell-1.1.30-1.el9.noarch. 345 kB/s | 72 kB 00:00 2026-03-31T17:39:42.321 INFO:teuthology.orchestra.run.vm02.stdout:(2/6): nvmetcli-0.8-3.el9.noarch.rpm 195 kB/s | 44 kB 00:00 2026-03-31T17:39:42.423 INFO:teuthology.orchestra.run.vm02.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 714 kB/s | 84 kB 00:00 2026-03-31T17:39:42.460 INFO:teuthology.orchestra.run.vm02.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.1 MB/s | 150 kB 00:00 2026-03-31T17:39:42.637 INFO:teuthology.orchestra.run.vm02.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 2.1 MB/s | 1.2 MB 00:00 2026-03-31T17:39:42.639 INFO:teuthology.orchestra.run.vm07.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 350 kB/s | 44 kB 00:00 2026-03-31T17:39:42.669 INFO:teuthology.orchestra.run.vm07.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 462 kB/s | 72 kB 00:00 2026-03-31T17:39:42.718 INFO:teuthology.orchestra.run.vm02.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 2.8 MB/s | 837 kB 00:00 2026-03-31T17:39:42.718 INFO:teuthology.orchestra.run.vm02.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:39:42.718 INFO:teuthology.orchestra.run.vm02.stdout:Total 3.2 MB/s | 2.3 MB 00:00 2026-03-31T17:39:42.733 INFO:teuthology.orchestra.run.vm07.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 894 kB/s | 84 kB 00:00 2026-03-31T17:39:42.794 INFO:teuthology.orchestra.run.vm07.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.2 MB/s | 150 kB 00:00 2026-03-31T17:39:42.798 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:39:42.809 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:39:42.809 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:39:42.870 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:39:42.870 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:39:42.950 INFO:teuthology.orchestra.run.vm07.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 2.6 MB/s | 1.2 MB 00:00 2026-03-31T17:39:43.045 INFO:teuthology.orchestra.run.vm07.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 2.6 MB/s | 837 kB 00:00 2026-03-31T17:39:43.045 INFO:teuthology.orchestra.run.vm07.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:39:43.045 INFO:teuthology.orchestra.run.vm07.stdout:Total 2.2 MB/s | 2.3 MB 00:01 2026-03-31T17:39:43.056 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:39:43.069 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-03-31T17:39:43.081 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-03-31T17:39:43.091 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-31T17:39:43.102 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-31T17:39:43.104 INFO:teuthology.orchestra.run.vm02.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-03-31T17:39:43.120 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:39:43.129 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:39:43.129 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:39:43.187 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:39:43.187 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:39:43.222 INFO:teuthology.orchestra.run.vm06.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 57 kB/s | 44 kB 00:00 2026-03-31T17:39:43.227 INFO:teuthology.orchestra.run.vm06.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 92 kB/s | 72 kB 00:00 2026-03-31T17:39:43.273 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-03-31T17:39:43.278 INFO:teuthology.orchestra.run.vm02.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-31T17:39:43.301 INFO:teuthology.orchestra.run.vm06.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.0 MB/s | 84 kB 00:00 2026-03-31T17:39:43.308 INFO:teuthology.orchestra.run.vm06.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 1.8 MB/s | 150 kB 00:00 2026-03-31T17:39:43.354 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:39:43.367 INFO:teuthology.orchestra.run.vm06.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 1.3 MB/s | 1.2 MB 00:00 2026-03-31T17:39:43.367 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-03-31T17:39:43.380 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-03-31T17:39:43.388 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-31T17:39:43.397 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-31T17:39:43.400 INFO:teuthology.orchestra.run.vm07.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-03-31T17:39:43.423 INFO:teuthology.orchestra.run.vm06.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 6.7 MB/s | 837 kB 00:00 2026-03-31T17:39:43.423 INFO:teuthology.orchestra.run.vm06.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:39:43.423 INFO:teuthology.orchestra.run.vm06.stdout:Total 1.5 MB/s | 2.3 MB 00:01 2026-03-31T17:39:43.483 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:39:43.491 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:39:43.491 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:39:43.555 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:39:43.556 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:39:43.607 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-03-31T17:39:43.613 INFO:teuthology.orchestra.run.vm07.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-31T17:39:43.644 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-31T17:39:43.644 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-31T17:39:43.644 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:39:43.754 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:39:43.768 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-03-31T17:39:43.782 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-03-31T17:39:43.791 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-31T17:39:43.800 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-31T17:39:43.803 INFO:teuthology.orchestra.run.vm06.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-03-31T17:39:43.989 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-31T17:39:43.989 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-03-31T17:39:43.989 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:39:43.993 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-03-31T17:39:44.013 INFO:teuthology.orchestra.run.vm06.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-31T17:39:44.060 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-03-31T17:39:44.060 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-03-31T17:39:44.060 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-31T17:39:44.060 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-31T17:39:44.060 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-03-31T17:39:44.135 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-03-31T17:39:44.135 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:39:44.135 INFO:teuthology.orchestra.run.vm02.stdout:Installed: 2026-03-31T17:39:44.135 INFO:teuthology.orchestra.run.vm02.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-03-31T17:39:44.135 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-31T17:39:44.135 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-31T17:39:44.135 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:39:44.135 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:39:44.190 DEBUG:teuthology.parallel:result is None 2026-03-31T17:39:44.406 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-03-31T17:39:44.406 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-03-31T17:39:44.406 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:39:44.459 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-03-31T17:39:44.459 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-03-31T17:39:44.459 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-31T17:39:44.459 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-31T17:39:44.459 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-03-31T17:39:44.530 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout:Installed: 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:39:44.531 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:39:44.586 DEBUG:teuthology.parallel:result is None 2026-03-31T17:39:44.859 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-03-31T17:39:44.859 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-03-31T17:39:44.859 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-03-31T17:39:44.859 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-03-31T17:39:44.859 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout:Installed: 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:39:44.935 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:39:45.007 DEBUG:teuthology.parallel:result is None 2026-03-31T17:39:45.007 INFO:teuthology.run_tasks:Running task install... 2026-03-31T17:39:45.009 DEBUG:teuthology.task.install:project ceph 2026-03-31T17:39:45.010 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '5bb3278730741031382ca9c3dc9d221a942e06a2'}, 'extra_system_packages': {'deb': ['python3-jmespath', 'python3-xmltodict', 's3cmd'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-jmespath', 'python3-xmltodict', 's3cmd']}} 2026-03-31T17:39:45.010 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '5bb3278730741031382ca9c3dc9d221a942e06a2', 'extra_system_packages': {'deb': ['python3-jmespath', 'python3-xmltodict', 's3cmd'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-jmespath', 'python3-xmltodict', 's3cmd']}} 2026-03-31T17:39:45.010 INFO:teuthology.task.install:Using flavor: default 2026-03-31T17:39:45.012 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-31T17:39:45.012 INFO:teuthology.task.install:extra packages: [] 2026-03-31T17:39:45.013 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-jmespath', 'python3-xmltodict', 's3cmd'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-jmespath', 'python3-xmltodict', 's3cmd']}, 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '5bb3278730741031382ca9c3dc9d221a942e06a2', 'tag': None, 'wait_for_package': False} 2026-03-31T17:39:45.013 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:39:45.014 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-jmespath', 'python3-xmltodict', 's3cmd'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-jmespath', 'python3-xmltodict', 's3cmd']}, 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '5bb3278730741031382ca9c3dc9d221a942e06a2', 'tag': None, 'wait_for_package': False} 2026-03-31T17:39:45.014 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:39:45.014 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-jmespath', 'python3-xmltodict', 's3cmd'], 'rpm': ['bzip2', 'perl-Test-Harness', 'python3-jmespath', 'python3-xmltodict', 's3cmd']}, 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': '5bb3278730741031382ca9c3dc9d221a942e06a2', 'tag': None, 'wait_for_package': False} 2026-03-31T17:39:45.014 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:39:45.639 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/ 2026-03-31T17:39:45.639 INFO:teuthology.task.install.rpm:Package version is 20.2.0-721.g5bb32787 2026-03-31T17:39:45.730 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/ 2026-03-31T17:39:45.730 INFO:teuthology.task.install.rpm:Package version is 20.2.0-721.g5bb32787 2026-03-31T17:39:45.731 INFO:teuthology.task.install.rpm:Pulling from https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/ 2026-03-31T17:39:45.731 INFO:teuthology.task.install.rpm:Package version is 20.2.0-721.g5bb32787 2026-03-31T17:39:46.188 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-03-31T17:39:46.188 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:39:46.188 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-03-31T17:39:46.205 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-03-31T17:39:46.205 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:39:46.205 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-03-31T17:39:46.232 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-jmespath, python3-xmltodict, s3cmd on remote rpm x86_64 2026-03-31T17:39:46.233 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' /etc/yum.repos.d/ceph.repo ; fi 2026-03-31T17:39:46.242 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-jmespath, python3-xmltodict, s3cmd on remote rpm x86_64 2026-03-31T17:39:46.242 DEBUG:teuthology.orchestra.run.vm07:> 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' /etc/yum.repos.d/ceph.repo ; fi 2026-03-31T17:39:46.283 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://2.chacra.ceph.com/r/ceph/tentacle-release/5bb3278730741031382ca9c3dc9d221a942e06a2/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-03-31T17:39:46.283 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:39:46.283 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-03-31T17:39:46.312 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-31T17:39:46.318 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:39:46.337 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-jmespath, python3-xmltodict, s3cmd on remote rpm x86_64 2026-03-31T17:39:46.337 DEBUG:teuthology.orchestra.run.vm06:> 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' /etc/yum.repos.d/ceph.repo ; fi 2026-03-31T17:39:46.397 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-31T17:39:46.407 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:39:46.411 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:39:46.426 INFO:teuthology.orchestra.run.vm02.stdout:check_obsoletes = 1 2026-03-31T17:39:46.427 DEBUG:teuthology.orchestra.run.vm02:> sudo yum clean all 2026-03-31T17:39:46.440 INFO:teuthology.orchestra.run.vm07.stdout:check_obsoletes = 1 2026-03-31T17:39:46.442 DEBUG:teuthology.orchestra.run.vm07:> sudo yum clean all 2026-03-31T17:39:46.502 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:39:46.538 INFO:teuthology.orchestra.run.vm06.stdout:check_obsoletes = 1 2026-03-31T17:39:46.540 DEBUG:teuthology.orchestra.run.vm06:> sudo yum clean all 2026-03-31T17:39:46.646 INFO:teuthology.orchestra.run.vm07.stdout:41 files removed 2026-03-31T17:39:46.652 INFO:teuthology.orchestra.run.vm02.stdout:41 files removed 2026-03-31T17:39:46.671 DEBUG:teuthology.orchestra.run.vm07:> 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-jmespath python3-xmltodict s3cmd 2026-03-31T17:39:46.697 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-jmespath python3-xmltodict s3cmd 2026-03-31T17:39:46.766 INFO:teuthology.orchestra.run.vm06.stdout:41 files removed 2026-03-31T17:39:46.817 DEBUG:teuthology.orchestra.run.vm06:> 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-jmespath python3-xmltodict s3cmd 2026-03-31T17:39:48.077 INFO:teuthology.orchestra.run.vm07.stdout:ceph packages for x86_64 73 kB/s | 89 kB 00:01 2026-03-31T17:39:48.083 INFO:teuthology.orchestra.run.vm02.stdout:ceph packages for x86_64 73 kB/s | 89 kB 00:01 2026-03-31T17:39:48.233 INFO:teuthology.orchestra.run.vm06.stdout:ceph packages for x86_64 73 kB/s | 89 kB 00:01 2026-03-31T17:39:49.150 INFO:teuthology.orchestra.run.vm02.stdout:ceph noarch packages 18 kB/s | 19 kB 00:01 2026-03-31T17:39:49.167 INFO:teuthology.orchestra.run.vm07.stdout:ceph noarch packages 18 kB/s | 19 kB 00:01 2026-03-31T17:39:49.337 INFO:teuthology.orchestra.run.vm06.stdout:ceph noarch packages 17 kB/s | 19 kB 00:01 2026-03-31T17:39:50.087 INFO:teuthology.orchestra.run.vm02.stdout:ceph source packages 2.1 kB/s | 1.9 kB 00:00 2026-03-31T17:39:50.132 INFO:teuthology.orchestra.run.vm07.stdout:ceph source packages 2.1 kB/s | 1.9 kB 00:00 2026-03-31T17:39:50.282 INFO:teuthology.orchestra.run.vm06.stdout:ceph source packages 2.1 kB/s | 1.9 kB 00:00 2026-03-31T17:39:51.267 INFO:teuthology.orchestra.run.vm07.stdout:CentOS Stream 9 - BaseOS 8.0 MB/s | 8.9 MB 00:01 2026-03-31T17:39:52.819 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - BaseOS 3.3 MB/s | 8.9 MB 00:02 2026-03-31T17:39:54.702 INFO:teuthology.orchestra.run.vm06.stdout:CentOS Stream 9 - BaseOS 2.0 MB/s | 8.9 MB 00:04 2026-03-31T17:39:55.431 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - AppStream 14 MB/s | 27 MB 00:01 2026-03-31T17:39:56.703 INFO:teuthology.orchestra.run.vm06.stdout:CentOS Stream 9 - AppStream 20 MB/s | 27 MB 00:01 2026-03-31T17:39:59.654 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - CRB 5.0 MB/s | 8.0 MB 00:01 2026-03-31T17:40:00.567 INFO:teuthology.orchestra.run.vm06.stdout:CentOS Stream 9 - CRB 6.6 MB/s | 8.0 MB 00:01 2026-03-31T17:40:01.398 INFO:teuthology.orchestra.run.vm02.stdout:CentOS Stream 9 - Extras packages 22 kB/s | 21 kB 00:00 2026-03-31T17:40:01.740 INFO:teuthology.orchestra.run.vm06.stdout:CentOS Stream 9 - Extras packages 55 kB/s | 21 kB 00:00 2026-03-31T17:40:02.160 INFO:teuthology.orchestra.run.vm02.stdout:Extra Packages for Enterprise Linux 29 MB/s | 20 MB 00:00 2026-03-31T17:40:02.520 INFO:teuthology.orchestra.run.vm06.stdout:Extra Packages for Enterprise Linux 28 MB/s | 20 MB 00:00 2026-03-31T17:40:06.647 INFO:teuthology.orchestra.run.vm02.stdout:lab-extras 63 kB/s | 50 kB 00:00 2026-03-31T17:40:06.980 INFO:teuthology.orchestra.run.vm06.stdout:lab-extras 64 kB/s | 50 kB 00:00 2026-03-31T17:40:07.973 INFO:teuthology.orchestra.run.vm02.stdout:Package librados2-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-31T17:40:07.974 INFO:teuthology.orchestra.run.vm02.stdout:Package librbd1-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-31T17:40:08.007 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout:====================================================================================== 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout:====================================================================================== 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout:Installing: 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: bzip2 x86_64 1.0.8-11.el9 baseos 55 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph x86_64 2:20.2.0-721.g5bb32787.el9 ceph 6.5 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base x86_64 2:20.2.0-721.g5bb32787.el9 ceph 5.9 M 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 940 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-721.g5bb32787.el9 ceph 154 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr x86_64 2:20.2.0-721.g5bb32787.el9 ceph 961 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 173 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 11 M 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 7.4 M 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 50 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 M 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test x86_64 2:20.2.0-721.g5bb32787.el9 ceph 84 M 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 298 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: cephadm noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 1.0 M 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel x86_64 2:20.2.0-721.g5bb32787.el9 ceph 34 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 867 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel x86_64 2:20.2.0-721.g5bb32787.el9 ceph 126 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: perl-Test-Harness noarch 1:3.42-461.el9 appstream 295 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs x86_64 2:20.2.0-721.g5bb32787.el9 ceph 163 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-03-31T17:40:08.012 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados x86_64 2:20.2.0-721.g5bb32787.el9 ceph 323 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 304 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw x86_64 2:20.2.0-721.g5bb32787.el9 ceph 99 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 91 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.9 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 179 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: s3cmd noarch 2.4.0-1.el9 epel 206 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout:Upgrading: 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: librados2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 3.5 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: librbd1 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.8 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout:Installing dependencies: 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 43 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.3 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 290 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon x86_64 2:20.2.0-721.g5bb32787.el9 ceph 5.0 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 17 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 17 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux x86_64 2:20.2.0-721.g5bb32787.el9 ceph 25 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: fuse x86_64 2.9.9-17.el9 baseos 80 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-proxy2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite x86_64 2:20.2.0-721.g5bb32787.el9 ceph 164 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-03-31T17:40:08.013 INFO:teuthology.orchestra.run.vm02.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 250 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: librgw2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 6.4 M 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: perl-Benchmark noarch 1.23-483.el9 appstream 26 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 45 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 ceph 175 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot noarch 10.0.1-5.el9 epel 173 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy noarch 18.10.0-5.el9 epel 290 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-03-31T17:40:08.014 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1 noarch 0.4.8-7.el9 appstream 157 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 appstream 277 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout:Installing weak dependencies: 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 22 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-daemon x86_64 2:20.2.0-721.g5bb32787.el9 ceph 35 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: smartmontools x86_64 1:7.2-10.el9 baseos 556 k 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout:====================================================================================== 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout:Install 146 Packages 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout:Upgrade 2 Packages 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:08.015 INFO:teuthology.orchestra.run.vm02.stdout:Total download size: 269 M 2026-03-31T17:40:08.016 INFO:teuthology.orchestra.run.vm02.stdout:Downloading Packages: 2026-03-31T17:40:08.325 INFO:teuthology.orchestra.run.vm06.stdout:Package librados2-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-31T17:40:08.325 INFO:teuthology.orchestra.run.vm06.stdout:Package librbd1-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-31T17:40:08.358 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout:====================================================================================== 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout:====================================================================================== 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout:Installing: 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: bzip2 x86_64 1.0.8-11.el9 baseos 55 k 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph x86_64 2:20.2.0-721.g5bb32787.el9 ceph 6.5 k 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-base x86_64 2:20.2.0-721.g5bb32787.el9 ceph 5.9 M 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-fuse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 940 k 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-721.g5bb32787.el9 ceph 154 k 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr x86_64 2:20.2.0-721.g5bb32787.el9 ceph 961 k 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-cephadm noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 173 k 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-dashboard noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 11 M 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 7.4 M 2026-03-31T17:40:08.362 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-rook noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 50 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-radosgw x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-test x86_64 2:20.2.0-721.g5bb32787.el9 ceph 84 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-volume noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 298 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: cephadm noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 1.0 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-devel x86_64 2:20.2.0-721.g5bb32787.el9 ceph 34 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 867 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: librados-devel x86_64 2:20.2.0-721.g5bb32787.el9 ceph 126 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: perl-Test-Harness noarch 1:3.42-461.el9 appstream 295 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: python3-cephfs x86_64 2:20.2.0-721.g5bb32787.el9 ceph 163 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: python3-rados x86_64 2:20.2.0-721.g5bb32787.el9 ceph 323 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: python3-rbd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 304 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: python3-rgw x86_64 2:20.2.0-721.g5bb32787.el9 ceph 99 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: rbd-fuse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 91 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: rbd-mirror x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.9 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: rbd-nbd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 179 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: s3cmd noarch 2.4.0-1.el9 epel 206 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout:Upgrading: 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: librados2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 3.5 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: librbd1 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.8 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout:Installing dependencies: 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-grafana-dashboards noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 43 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mds x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.3 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-modules-core noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 290 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mon x86_64 2:20.2.0-721.g5bb32787.el9 ceph 5.0 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-osd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 17 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-prometheus-alerts noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 17 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ceph-selinux x86_64 2:20.2.0-721.g5bb32787.el9 ceph 25 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: fuse x86_64 2.9.9-17.el9 baseos 80 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-proxy2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libcephsqlite x86_64 2:20.2.0-721.g5bb32787.el9 ceph 164 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libradosstriper1 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 250 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: librgw2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 6.4 M 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-03-31T17:40:08.363 INFO:teuthology.orchestra.run.vm06.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: perl-Benchmark noarch 1.23-483.el9 appstream 26 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-argparse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 45 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 ceph 175 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-cheroot noarch 10.0.1-5.el9 epel 173 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-cherrypy noarch 18.10.0-5.el9 epel 290 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1 noarch 0.4.8-7.el9 appstream 157 k 2026-03-31T17:40:08.364 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 appstream 277 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:Installing weak dependencies: 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 22 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-daemon x86_64 2:20.2.0-721.g5bb32787.el9 ceph 35 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: smartmontools x86_64 1:7.2-10.el9 baseos 556 k 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:====================================================================================== 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:Install 146 Packages 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:Upgrade 2 Packages 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:Total download size: 269 M 2026-03-31T17:40:08.365 INFO:teuthology.orchestra.run.vm06.stdout:Downloading Packages: 2026-03-31T17:40:09.939 INFO:teuthology.orchestra.run.vm02.stdout:(1/148): ceph-20.2.0-721.g5bb32787.el9.x86_64.r 14 kB/s | 6.5 kB 00:00 2026-03-31T17:40:10.039 INFO:teuthology.orchestra.run.vm06.stdout:(1/148): ceph-20.2.0-721.g5bb32787.el9.x86_64.r 14 kB/s | 6.5 kB 00:00 2026-03-31T17:40:10.747 INFO:teuthology.orchestra.run.vm02.stdout:(2/148): ceph-fuse-20.2.0-721.g5bb32787.el9.x86 1.1 MB/s | 940 kB 00:00 2026-03-31T17:40:10.849 INFO:teuthology.orchestra.run.vm06.stdout:(2/148): ceph-fuse-20.2.0-721.g5bb32787.el9.x86 1.1 MB/s | 940 kB 00:00 2026-03-31T17:40:10.865 INFO:teuthology.orchestra.run.vm02.stdout:(3/148): ceph-immutable-object-cache-20.2.0-721 1.3 MB/s | 154 kB 00:00 2026-03-31T17:40:10.995 INFO:teuthology.orchestra.run.vm06.stdout:(3/148): ceph-immutable-object-cache-20.2.0-721 1.0 MB/s | 154 kB 00:00 2026-03-31T17:40:11.068 INFO:teuthology.orchestra.run.vm02.stdout:(4/148): ceph-base-20.2.0-721.g5bb32787.el9.x86 3.7 MB/s | 5.9 MB 00:01 2026-03-31T17:40:11.165 INFO:teuthology.orchestra.run.vm02.stdout:(5/148): ceph-mds-20.2.0-721.g5bb32787.el9.x86_ 7.8 MB/s | 2.3 MB 00:00 2026-03-31T17:40:11.173 INFO:teuthology.orchestra.run.vm06.stdout:(4/148): ceph-base-20.2.0-721.g5bb32787.el9.x86 3.7 MB/s | 5.9 MB 00:01 2026-03-31T17:40:11.334 INFO:teuthology.orchestra.run.vm06.stdout:(5/148): ceph-mgr-20.2.0-721.g5bb32787.el9.x86_ 5.9 MB/s | 961 kB 00:00 2026-03-31T17:40:11.344 INFO:teuthology.orchestra.run.vm02.stdout:(6/148): ceph-mgr-20.2.0-721.g5bb32787.el9.x86_ 3.4 MB/s | 961 kB 00:00 2026-03-31T17:40:11.395 INFO:teuthology.orchestra.run.vm06.stdout:(6/148): ceph-mds-20.2.0-721.g5bb32787.el9.x86_ 5.9 MB/s | 2.3 MB 00:00 2026-03-31T17:40:11.761 INFO:teuthology.orchestra.run.vm06.stdout:(7/148): ceph-mon-20.2.0-721.g5bb32787.el9.x86_ 12 MB/s | 5.0 MB 00:00 2026-03-31T17:40:12.405 INFO:teuthology.orchestra.run.vm06.stdout:(8/148): ceph-common-20.2.0-721.g5bb32787.el9.x 8.4 MB/s | 24 MB 00:02 2026-03-31T17:40:12.518 INFO:teuthology.orchestra.run.vm06.stdout:(9/148): ceph-selinux-20.2.0-721.g5bb32787.el9. 221 kB/s | 25 kB 00:00 2026-03-31T17:40:12.601 INFO:teuthology.orchestra.run.vm07.stdout:CentOS Stream 9 - AppStream 1.3 MB/s | 27 MB 00:20 2026-03-31T17:40:12.622 INFO:teuthology.orchestra.run.vm02.stdout:(7/148): ceph-osd-20.2.0-721.g5bb32787.el9.x86_ 13 MB/s | 17 MB 00:01 2026-03-31T17:40:12.676 INFO:teuthology.orchestra.run.vm02.stdout:(8/148): ceph-common-20.2.0-721.g5bb32787.el9.x 7.4 MB/s | 24 MB 00:03 2026-03-31T17:40:12.817 INFO:teuthology.orchestra.run.vm02.stdout:(9/148): ceph-selinux-20.2.0-721.g5bb32787.el9. 178 kB/s | 25 kB 00:00 2026-03-31T17:40:12.939 INFO:teuthology.orchestra.run.vm02.stdout:(10/148): ceph-mon-20.2.0-721.g5bb32787.el9.x86 2.8 MB/s | 5.0 MB 00:01 2026-03-31T17:40:13.091 INFO:teuthology.orchestra.run.vm02.stdout:(11/148): libcephfs-daemon-20.2.0-721.g5bb32787 234 kB/s | 35 kB 00:00 2026-03-31T17:40:13.242 INFO:teuthology.orchestra.run.vm02.stdout:(12/148): libcephfs-devel-20.2.0-721.g5bb32787. 227 kB/s | 34 kB 00:00 2026-03-31T17:40:13.393 INFO:teuthology.orchestra.run.vm02.stdout:(13/148): libcephfs-proxy2-20.2.0-721.g5bb32787 160 kB/s | 24 kB 00:00 2026-03-31T17:40:13.497 INFO:teuthology.orchestra.run.vm06.stdout:(10/148): ceph-radosgw-20.2.0-721.g5bb32787.el9 14 MB/s | 24 MB 00:01 2026-03-31T17:40:13.560 INFO:teuthology.orchestra.run.vm02.stdout:(14/148): libcephfs2-20.2.0-721.g5bb32787.el9.x 5.1 MB/s | 867 kB 00:00 2026-03-31T17:40:13.628 INFO:teuthology.orchestra.run.vm06.stdout:(11/148): libcephfs-daemon-20.2.0-721.g5bb32787 270 kB/s | 35 kB 00:00 2026-03-31T17:40:13.681 INFO:teuthology.orchestra.run.vm02.stdout:(15/148): libcephsqlite-20.2.0-721.g5bb32787.el 1.3 MB/s | 164 kB 00:00 2026-03-31T17:40:13.755 INFO:teuthology.orchestra.run.vm06.stdout:(12/148): libcephfs-devel-20.2.0-721.g5bb32787. 272 kB/s | 34 kB 00:00 2026-03-31T17:40:13.802 INFO:teuthology.orchestra.run.vm02.stdout:(16/148): librados-devel-20.2.0-721.g5bb32787.e 1.0 MB/s | 126 kB 00:00 2026-03-31T17:40:13.881 INFO:teuthology.orchestra.run.vm06.stdout:(13/148): libcephfs-proxy2-20.2.0-721.g5bb32787 192 kB/s | 24 kB 00:00 2026-03-31T17:40:13.925 INFO:teuthology.orchestra.run.vm02.stdout:(17/148): libradosstriper1-20.2.0-721.g5bb32787 2.0 MB/s | 250 kB 00:00 2026-03-31T17:40:14.026 INFO:teuthology.orchestra.run.vm06.stdout:(14/148): libcephfs2-20.2.0-721.g5bb32787.el9.x 5.8 MB/s | 867 kB 00:00 2026-03-31T17:40:14.186 INFO:teuthology.orchestra.run.vm06.stdout:(15/148): libcephsqlite-20.2.0-721.g5bb32787.el 1.0 MB/s | 164 kB 00:00 2026-03-31T17:40:14.355 INFO:teuthology.orchestra.run.vm06.stdout:(16/148): librados-devel-20.2.0-721.g5bb32787.e 744 kB/s | 126 kB 00:00 2026-03-31T17:40:14.355 INFO:teuthology.orchestra.run.vm02.stdout:(18/148): ceph-radosgw-20.2.0-721.g5bb32787.el9 14 MB/s | 24 MB 00:01 2026-03-31T17:40:14.480 INFO:teuthology.orchestra.run.vm02.stdout:(19/148): python3-ceph-argparse-20.2.0-721.g5bb 361 kB/s | 45 kB 00:00 2026-03-31T17:40:14.481 INFO:teuthology.orchestra.run.vm06.stdout:(17/148): libradosstriper1-20.2.0-721.g5bb32787 1.9 MB/s | 250 kB 00:00 2026-03-31T17:40:14.506 INFO:teuthology.orchestra.run.vm02.stdout:(20/148): librgw2-20.2.0-721.g5bb32787.el9.x86_ 11 MB/s | 6.4 MB 00:00 2026-03-31T17:40:14.601 INFO:teuthology.orchestra.run.vm02.stdout:(21/148): python3-ceph-common-20.2.0-721.g5bb32 1.4 MB/s | 175 kB 00:00 2026-03-31T17:40:14.601 INFO:teuthology.orchestra.run.vm06.stdout:(18/148): ceph-osd-20.2.0-721.g5bb32787.el9.x86 5.3 MB/s | 17 MB 00:03 2026-03-31T17:40:14.637 INFO:teuthology.orchestra.run.vm02.stdout:(22/148): python3-cephfs-20.2.0-721.g5bb32787.e 1.2 MB/s | 163 kB 00:00 2026-03-31T17:40:14.721 INFO:teuthology.orchestra.run.vm06.stdout:(19/148): python3-ceph-argparse-20.2.0-721.g5bb 378 kB/s | 45 kB 00:00 2026-03-31T17:40:14.765 INFO:teuthology.orchestra.run.vm02.stdout:(23/148): python3-rbd-20.2.0-721.g5bb32787.el9. 2.3 MB/s | 304 kB 00:00 2026-03-31T17:40:14.839 INFO:teuthology.orchestra.run.vm06.stdout:(20/148): python3-ceph-common-20.2.0-721.g5bb32 1.4 MB/s | 175 kB 00:00 2026-03-31T17:40:14.882 INFO:teuthology.orchestra.run.vm02.stdout:(24/148): python3-rgw-20.2.0-721.g5bb32787.el9. 849 kB/s | 99 kB 00:00 2026-03-31T17:40:14.957 INFO:teuthology.orchestra.run.vm06.stdout:(21/148): python3-cephfs-20.2.0-721.g5bb32787.e 1.4 MB/s | 163 kB 00:00 2026-03-31T17:40:14.975 INFO:teuthology.orchestra.run.vm06.stdout:(22/148): librgw2-20.2.0-721.g5bb32787.el9.x86_ 13 MB/s | 6.4 MB 00:00 2026-03-31T17:40:15.003 INFO:teuthology.orchestra.run.vm02.stdout:(25/148): rbd-fuse-20.2.0-721.g5bb32787.el9.x86 753 kB/s | 91 kB 00:00 2026-03-31T17:40:15.077 INFO:teuthology.orchestra.run.vm06.stdout:(23/148): python3-rados-20.2.0-721.g5bb32787.el 2.6 MB/s | 323 kB 00:00 2026-03-31T17:40:15.097 INFO:teuthology.orchestra.run.vm06.stdout:(24/148): python3-rbd-20.2.0-721.g5bb32787.el9. 2.4 MB/s | 304 kB 00:00 2026-03-31T17:40:15.198 INFO:teuthology.orchestra.run.vm06.stdout:(25/148): python3-rgw-20.2.0-721.g5bb32787.el9. 826 kB/s | 99 kB 00:00 2026-03-31T17:40:15.216 INFO:teuthology.orchestra.run.vm06.stdout:(26/148): rbd-fuse-20.2.0-721.g5bb32787.el9.x86 762 kB/s | 91 kB 00:00 2026-03-31T17:40:15.268 INFO:teuthology.orchestra.run.vm02.stdout:(26/148): rbd-mirror-20.2.0-721.g5bb32787.el9.x 11 MB/s | 2.9 MB 00:00 2026-03-31T17:40:15.337 INFO:teuthology.orchestra.run.vm06.stdout:(27/148): rbd-nbd-20.2.0-721.g5bb32787.el9.x86_ 1.5 MB/s | 179 kB 00:00 2026-03-31T17:40:15.386 INFO:teuthology.orchestra.run.vm02.stdout:(27/148): rbd-nbd-20.2.0-721.g5bb32787.el9.x86_ 1.5 MB/s | 179 kB 00:00 2026-03-31T17:40:15.456 INFO:teuthology.orchestra.run.vm06.stdout:(28/148): ceph-grafana-dashboards-20.2.0-721.g5 366 kB/s | 43 kB 00:00 2026-03-31T17:40:15.502 INFO:teuthology.orchestra.run.vm02.stdout:(28/148): ceph-grafana-dashboards-20.2.0-721.g5 374 kB/s | 43 kB 00:00 2026-03-31T17:40:15.599 INFO:teuthology.orchestra.run.vm02.stdout:(29/148): python3-rados-20.2.0-721.g5bb32787.el 324 kB/s | 323 kB 00:00 2026-03-31T17:40:15.619 INFO:teuthology.orchestra.run.vm02.stdout:(30/148): ceph-mgr-cephadm-20.2.0-721.g5bb32787 1.4 MB/s | 173 kB 00:00 2026-03-31T17:40:15.789 INFO:teuthology.orchestra.run.vm06.stdout:(29/148): rbd-mirror-20.2.0-721.g5bb32787.el9.x 4.9 MB/s | 2.9 MB 00:00 2026-03-31T17:40:16.063 INFO:teuthology.orchestra.run.vm06.stdout:(30/148): ceph-mgr-cephadm-20.2.0-721.g5bb32787 285 kB/s | 173 kB 00:00 2026-03-31T17:40:16.152 INFO:teuthology.orchestra.run.vm02.stdout:(31/148): ceph-mgr-diskprediction-local-20.2.0- 14 MB/s | 7.4 MB 00:00 2026-03-31T17:40:16.288 INFO:teuthology.orchestra.run.vm02.stdout:(32/148): ceph-mgr-k8sevents-20.2.0-721.g5bb327 162 kB/s | 22 kB 00:00 2026-03-31T17:40:16.408 INFO:teuthology.orchestra.run.vm02.stdout:(33/148): ceph-mgr-modules-core-20.2.0-721.g5bb 2.4 MB/s | 290 kB 00:00 2026-03-31T17:40:16.525 INFO:teuthology.orchestra.run.vm02.stdout:(34/148): ceph-mgr-rook-20.2.0-721.g5bb32787.el 429 kB/s | 50 kB 00:00 2026-03-31T17:40:16.649 INFO:teuthology.orchestra.run.vm02.stdout:(35/148): ceph-mgr-dashboard-20.2.0-721.g5bb327 10 MB/s | 11 MB 00:01 2026-03-31T17:40:16.650 INFO:teuthology.orchestra.run.vm02.stdout:(36/148): ceph-prometheus-alerts-20.2.0-721.g5b 138 kB/s | 17 kB 00:00 2026-03-31T17:40:17.184 INFO:teuthology.orchestra.run.vm06.stdout:(31/148): ceph-mgr-diskprediction-local-20.2.0- 6.6 MB/s | 7.4 MB 00:01 2026-03-31T17:40:17.306 INFO:teuthology.orchestra.run.vm06.stdout:(32/148): ceph-mgr-k8sevents-20.2.0-721.g5bb327 182 kB/s | 22 kB 00:00 2026-03-31T17:40:17.428 INFO:teuthology.orchestra.run.vm06.stdout:(33/148): ceph-mgr-modules-core-20.2.0-721.g5bb 2.3 MB/s | 290 kB 00:00 2026-03-31T17:40:17.546 INFO:teuthology.orchestra.run.vm06.stdout:(34/148): ceph-mgr-rook-20.2.0-721.g5bb32787.el 425 kB/s | 50 kB 00:00 2026-03-31T17:40:17.665 INFO:teuthology.orchestra.run.vm06.stdout:(35/148): ceph-prometheus-alerts-20.2.0-721.g5b 147 kB/s | 17 kB 00:00 2026-03-31T17:40:17.732 INFO:teuthology.orchestra.run.vm02.stdout:(37/148): cephadm-20.2.0-721.g5bb32787.el9.noar 944 kB/s | 1.0 MB 00:01 2026-03-31T17:40:17.786 INFO:teuthology.orchestra.run.vm06.stdout:(36/148): ceph-volume-20.2.0-721.g5bb32787.el9. 2.4 MB/s | 298 kB 00:00 2026-03-31T17:40:17.842 INFO:teuthology.orchestra.run.vm02.stdout:(38/148): ceph-volume-20.2.0-721.g5bb32787.el9. 250 kB/s | 298 kB 00:01 2026-03-31T17:40:17.915 INFO:teuthology.orchestra.run.vm06.stdout:(37/148): cephadm-20.2.0-721.g5bb32787.el9.noar 7.8 MB/s | 1.0 MB 00:00 2026-03-31T17:40:17.962 INFO:teuthology.orchestra.run.vm02.stdout:(39/148): cryptsetup-2.8.1-3.el9.x86_64.rpm 2.8 MB/s | 351 kB 00:00 2026-03-31T17:40:17.967 INFO:teuthology.orchestra.run.vm02.stdout:(40/148): bzip2-1.0.8-11.el9.x86_64.rpm 233 kB/s | 55 kB 00:00 2026-03-31T17:40:18.012 INFO:teuthology.orchestra.run.vm02.stdout:(41/148): fuse-2.9.9-17.el9.x86_64.rpm 1.6 MB/s | 80 kB 00:00 2026-03-31T17:40:18.073 INFO:teuthology.orchestra.run.vm02.stdout:(42/148): ledmon-libs-1.1.0-3.el9.x86_64.rpm 384 kB/s | 40 kB 00:00 2026-03-31T17:40:18.097 INFO:teuthology.orchestra.run.vm02.stdout:(43/148): libconfig-1.7.2-9.el9.x86_64.rpm 849 kB/s | 72 kB 00:00 2026-03-31T17:40:18.101 INFO:teuthology.orchestra.run.vm06.stdout:(38/148): bzip2-1.0.8-11.el9.x86_64.rpm 294 kB/s | 55 kB 00:00 2026-03-31T17:40:18.147 INFO:teuthology.orchestra.run.vm02.stdout:(44/148): libgfortran-11.5.0-14.el9.x86_64.rpm 10 MB/s | 794 kB 00:00 2026-03-31T17:40:18.217 INFO:teuthology.orchestra.run.vm02.stdout:(45/148): libquadmath-11.5.0-14.el9.x86_64.rpm 1.5 MB/s | 184 kB 00:00 2026-03-31T17:40:18.217 INFO:teuthology.orchestra.run.vm02.stdout:(46/148): mailcap-2.1.49-5.el9.noarch.rpm 471 kB/s | 33 kB 00:00 2026-03-31T17:40:18.241 INFO:teuthology.orchestra.run.vm06.stdout:(39/148): cryptsetup-2.8.1-3.el9.x86_64.rpm 2.5 MB/s | 351 kB 00:00 2026-03-31T17:40:18.264 INFO:teuthology.orchestra.run.vm02.stdout:(47/148): pciutils-3.7.0-7.el9.x86_64.rpm 1.9 MB/s | 93 kB 00:00 2026-03-31T17:40:18.265 INFO:teuthology.orchestra.run.vm06.stdout:(40/148): ceph-mgr-dashboard-20.2.0-721.g5bb327 4.3 MB/s | 11 MB 00:02 2026-03-31T17:40:18.310 INFO:teuthology.orchestra.run.vm06.stdout:(41/148): fuse-2.9.9-17.el9.x86_64.rpm 1.1 MB/s | 80 kB 00:00 2026-03-31T17:40:18.332 INFO:teuthology.orchestra.run.vm02.stdout:(48/148): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.2 MB/s | 253 kB 00:00 2026-03-31T17:40:18.345 INFO:teuthology.orchestra.run.vm07.stdout:CentOS Stream 9 - CRB 2.6 MB/s | 8.0 MB 00:03 2026-03-31T17:40:18.366 INFO:teuthology.orchestra.run.vm02.stdout:(49/148): python3-cryptography-36.0.1-5.el9.x86 12 MB/s | 1.2 MB 00:00 2026-03-31T17:40:18.383 INFO:teuthology.orchestra.run.vm02.stdout:(50/148): python3-ply-3.11-14.el9.noarch.rpm 2.0 MB/s | 106 kB 00:00 2026-03-31T17:40:18.383 INFO:teuthology.orchestra.run.vm06.stdout:(42/148): libconfig-1.7.2-9.el9.x86_64.rpm 981 kB/s | 72 kB 00:00 2026-03-31T17:40:18.405 INFO:teuthology.orchestra.run.vm06.stdout:(43/148): ledmon-libs-1.1.0-3.el9.x86_64.rpm 290 kB/s | 40 kB 00:00 2026-03-31T17:40:18.415 INFO:teuthology.orchestra.run.vm02.stdout:(51/148): python3-pycparser-2.20-6.el9.noarch.r 2.7 MB/s | 135 kB 00:00 2026-03-31T17:40:18.429 INFO:teuthology.orchestra.run.vm02.stdout:(52/148): python3-requests-2.25.1-10.el9.noarch 2.7 MB/s | 126 kB 00:00 2026-03-31T17:40:18.465 INFO:teuthology.orchestra.run.vm02.stdout:(53/148): python3-urllib3-1.26.5-7.el9.noarch.r 4.3 MB/s | 218 kB 00:00 2026-03-31T17:40:18.490 INFO:teuthology.orchestra.run.vm02.stdout:(54/148): smartmontools-7.2-10.el9.x86_64.rpm 9.0 MB/s | 556 kB 00:00 2026-03-31T17:40:18.519 INFO:teuthology.orchestra.run.vm02.stdout:(55/148): unzip-6.0-59.el9.x86_64.rpm 3.3 MB/s | 182 kB 00:00 2026-03-31T17:40:18.534 INFO:teuthology.orchestra.run.vm06.stdout:(44/148): libgfortran-11.5.0-14.el9.x86_64.rpm 5.2 MB/s | 794 kB 00:00 2026-03-31T17:40:18.550 INFO:teuthology.orchestra.run.vm02.stdout:(56/148): zip-3.0-35.el9.x86_64.rpm 4.4 MB/s | 266 kB 00:00 2026-03-31T17:40:18.559 INFO:teuthology.orchestra.run.vm06.stdout:(45/148): libquadmath-11.5.0-14.el9.x86_64.rpm 1.2 MB/s | 184 kB 00:00 2026-03-31T17:40:18.582 INFO:teuthology.orchestra.run.vm06.stdout:(46/148): mailcap-2.1.49-5.el9.noarch.rpm 699 kB/s | 33 kB 00:00 2026-03-31T17:40:18.618 INFO:teuthology.orchestra.run.vm06.stdout:(47/148): pciutils-3.7.0-7.el9.x86_64.rpm 1.6 MB/s | 93 kB 00:00 2026-03-31T17:40:18.668 INFO:teuthology.orchestra.run.vm06.stdout:(48/148): python3-cffi-1.14.5-5.el9.x86_64.rpm 2.9 MB/s | 253 kB 00:00 2026-03-31T17:40:18.721 INFO:teuthology.orchestra.run.vm06.stdout:(49/148): python3-ply-3.11-14.el9.noarch.rpm 2.0 MB/s | 106 kB 00:00 2026-03-31T17:40:18.766 INFO:teuthology.orchestra.run.vm06.stdout:(50/148): python3-cryptography-36.0.1-5.el9.x86 8.4 MB/s | 1.2 MB 00:00 2026-03-31T17:40:18.802 INFO:teuthology.orchestra.run.vm02.stdout:(57/148): flexiblas-3.0.4-9.el9.x86_64.rpm 117 kB/s | 30 kB 00:00 2026-03-31T17:40:18.816 INFO:teuthology.orchestra.run.vm06.stdout:(51/148): python3-requests-2.25.1-10.el9.noarch 2.5 MB/s | 126 kB 00:00 2026-03-31T17:40:18.829 INFO:teuthology.orchestra.run.vm06.stdout:(52/148): python3-pycparser-2.20-6.el9.noarch.r 1.2 MB/s | 135 kB 00:00 2026-03-31T17:40:18.868 INFO:teuthology.orchestra.run.vm06.stdout:(53/148): python3-urllib3-1.26.5-7.el9.noarch.r 4.1 MB/s | 218 kB 00:00 2026-03-31T17:40:18.872 INFO:teuthology.orchestra.run.vm02.stdout:(58/148): boost-program-options-1.75.0-13.el9.x 294 kB/s | 104 kB 00:00 2026-03-31T17:40:18.898 INFO:teuthology.orchestra.run.vm06.stdout:(54/148): smartmontools-7.2-10.el9.x86_64.rpm 7.9 MB/s | 556 kB 00:00 2026-03-31T17:40:18.919 INFO:teuthology.orchestra.run.vm06.stdout:(55/148): unzip-6.0-59.el9.x86_64.rpm 3.6 MB/s | 182 kB 00:00 2026-03-31T17:40:18.946 INFO:teuthology.orchestra.run.vm02.stdout:(59/148): flexiblas-openblas-openmp-3.0.4-9.el9 204 kB/s | 15 kB 00:00 2026-03-31T17:40:18.995 INFO:teuthology.orchestra.run.vm06.stdout:(56/148): zip-3.0-35.el9.x86_64.rpm 2.7 MB/s | 266 kB 00:00 2026-03-31T17:40:19.099 INFO:teuthology.orchestra.run.vm06.stdout:(57/148): flexiblas-3.0.4-9.el9.x86_64.rpm 285 kB/s | 30 kB 00:00 2026-03-31T17:40:19.104 INFO:teuthology.orchestra.run.vm06.stdout:(58/148): boost-program-options-1.75.0-13.el9.x 560 kB/s | 104 kB 00:00 2026-03-31T17:40:19.121 INFO:teuthology.orchestra.run.vm02.stdout:(60/148): libnbd-1.20.3-4.el9.x86_64.rpm 936 kB/s | 164 kB 00:00 2026-03-31T17:40:19.152 INFO:teuthology.orchestra.run.vm06.stdout:(59/148): flexiblas-openblas-openmp-3.0.4-9.el9 311 kB/s | 15 kB 00:00 2026-03-31T17:40:19.243 INFO:teuthology.orchestra.run.vm02.stdout:(61/148): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.3 MB/s | 160 kB 00:00 2026-03-31T17:40:19.258 INFO:teuthology.orchestra.run.vm06.stdout:(60/148): libnbd-1.20.3-4.el9.x86_64.rpm 1.5 MB/s | 164 kB 00:00 2026-03-31T17:40:19.341 INFO:teuthology.orchestra.run.vm02.stdout:(62/148): librabbitmq-0.11.0-7.el9.x86_64.rpm 463 kB/s | 45 kB 00:00 2026-03-31T17:40:19.359 INFO:teuthology.orchestra.run.vm06.stdout:(61/148): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.6 MB/s | 160 kB 00:00 2026-03-31T17:40:19.396 INFO:teuthology.orchestra.run.vm02.stdout:(63/148): flexiblas-netlib-3.0.4-9.el9.x86_64.r 5.0 MB/s | 3.0 MB 00:00 2026-03-31T17:40:19.407 INFO:teuthology.orchestra.run.vm06.stdout:(62/148): librabbitmq-0.11.0-7.el9.x86_64.rpm 936 kB/s | 45 kB 00:00 2026-03-31T17:40:19.437 INFO:teuthology.orchestra.run.vm07.stdout:CentOS Stream 9 - Extras packages 78 kB/s | 21 kB 00:00 2026-03-31T17:40:19.514 INFO:teuthology.orchestra.run.vm02.stdout:(64/148): libstoragemgmt-1.10.1-1.el9.x86_64.rp 2.0 MB/s | 246 kB 00:00 2026-03-31T17:40:19.569 INFO:teuthology.orchestra.run.vm02.stdout:(65/148): librdkafka-1.6.1-102.el9.x86_64.rpm 2.8 MB/s | 662 kB 00:00 2026-03-31T17:40:19.570 INFO:teuthology.orchestra.run.vm06.stdout:(63/148): librdkafka-1.6.1-102.el9.x86_64.rpm 4.0 MB/s | 662 kB 00:00 2026-03-31T17:40:19.600 INFO:teuthology.orchestra.run.vm06.stdout:(64/148): flexiblas-netlib-3.0.4-9.el9.x86_64.r 6.0 MB/s | 3.0 MB 00:00 2026-03-31T17:40:19.636 INFO:teuthology.orchestra.run.vm02.stdout:(66/148): libxslt-1.1.34-12.el9.x86_64.rpm 1.9 MB/s | 233 kB 00:00 2026-03-31T17:40:19.643 INFO:teuthology.orchestra.run.vm06.stdout:(65/148): libstoragemgmt-1.10.1-1.el9.x86_64.rp 3.3 MB/s | 246 kB 00:00 2026-03-31T17:40:19.678 INFO:teuthology.orchestra.run.vm02.stdout:(67/148): lttng-ust-2.12.0-6.el9.x86_64.rpm 2.6 MB/s | 292 kB 00:00 2026-03-31T17:40:19.708 INFO:teuthology.orchestra.run.vm06.stdout:(66/148): libxslt-1.1.34-12.el9.x86_64.rpm 2.1 MB/s | 233 kB 00:00 2026-03-31T17:40:19.738 INFO:teuthology.orchestra.run.vm02.stdout:(68/148): lua-5.4.4-4.el9.x86_64.rpm 1.8 MB/s | 188 kB 00:00 2026-03-31T17:40:19.740 INFO:teuthology.orchestra.run.vm06.stdout:(67/148): lttng-ust-2.12.0-6.el9.x86_64.rpm 3.0 MB/s | 292 kB 00:00 2026-03-31T17:40:19.769 INFO:teuthology.orchestra.run.vm06.stdout:(68/148): lua-5.4.4-4.el9.x86_64.rpm 3.0 MB/s | 188 kB 00:00 2026-03-31T17:40:19.773 INFO:teuthology.orchestra.run.vm02.stdout:(69/148): openblas-0.3.29-1.el9.x86_64.rpm 444 kB/s | 42 kB 00:00 2026-03-31T17:40:19.786 INFO:teuthology.orchestra.run.vm06.stdout:(69/148): openblas-0.3.29-1.el9.x86_64.rpm 922 kB/s | 42 kB 00:00 2026-03-31T17:40:19.827 INFO:teuthology.orchestra.run.vm06.stdout:(70/148): perl-Benchmark-1.23-483.el9.noarch.rp 644 kB/s | 26 kB 00:00 2026-03-31T17:40:19.859 INFO:teuthology.orchestra.run.vm02.stdout:(70/148): perl-Benchmark-1.23-483.el9.noarch.rp 309 kB/s | 26 kB 00:00 2026-03-31T17:40:19.982 INFO:teuthology.orchestra.run.vm07.stdout:Extra Packages for Enterprise Linux 43 MB/s | 20 MB 00:00 2026-03-31T17:40:20.009 INFO:teuthology.orchestra.run.vm02.stdout:(71/148): perl-Test-Harness-3.42-461.el9.noarch 1.9 MB/s | 295 kB 00:00 2026-03-31T17:40:20.064 INFO:teuthology.orchestra.run.vm02.stdout:(72/148): openblas-openmp-0.3.29-1.el9.x86_64.r 16 MB/s | 5.3 MB 00:00 2026-03-31T17:40:20.092 INFO:teuthology.orchestra.run.vm06.stdout:(71/148): perl-Test-Harness-3.42-461.el9.noarch 1.1 MB/s | 295 kB 00:00 2026-03-31T17:40:20.203 INFO:teuthology.orchestra.run.vm02.stdout:(73/148): protobuf-3.14.0-17.el9.x86_64.rpm 5.2 MB/s | 1.0 MB 00:00 2026-03-31T17:40:20.247 INFO:teuthology.orchestra.run.vm06.stdout:(72/148): openblas-openmp-0.3.29-1.el9.x86_64.r 11 MB/s | 5.3 MB 00:00 2026-03-31T17:40:20.311 INFO:teuthology.orchestra.run.vm02.stdout:(74/148): python3-devel-3.9.25-3.el9.x86_64.rpm 2.2 MB/s | 244 kB 00:00 2026-03-31T17:40:20.419 INFO:teuthology.orchestra.run.vm02.stdout:(75/148): python3-babel-2.9.1-2.el9.noarch.rpm 17 MB/s | 6.0 MB 00:00 2026-03-31T17:40:20.424 INFO:teuthology.orchestra.run.vm02.stdout:(76/148): python3-jinja2-2.11.3-8.el9.noarch.rp 2.1 MB/s | 249 kB 00:00 2026-03-31T17:40:20.513 INFO:teuthology.orchestra.run.vm02.stdout:(77/148): python3-jmespath-1.0.1-1.el9.noarch.r 503 kB/s | 48 kB 00:00 2026-03-31T17:40:20.541 INFO:teuthology.orchestra.run.vm02.stdout:(78/148): python3-libstoragemgmt-1.10.1-1.el9.x 1.5 MB/s | 177 kB 00:00 2026-03-31T17:40:20.616 INFO:teuthology.orchestra.run.vm02.stdout:(79/148): python3-markupsafe-1.1.1-12.el9.x86_6 466 kB/s | 35 kB 00:00 2026-03-31T17:40:20.674 INFO:teuthology.orchestra.run.vm02.stdout:(80/148): python3-lxml-4.6.5-3.el9.x86_64.rpm 7.6 MB/s | 1.2 MB 00:00 2026-03-31T17:40:20.776 INFO:teuthology.orchestra.run.vm06.stdout:(73/148): python3-babel-2.9.1-2.el9.noarch.rpm 11 MB/s | 6.0 MB 00:00 2026-03-31T17:40:20.807 INFO:teuthology.orchestra.run.vm02.stdout:(81/148): python3-numpy-f2py-1.23.5-2.el9.x86_6 3.3 MB/s | 442 kB 00:00 2026-03-31T17:40:20.845 INFO:teuthology.orchestra.run.vm06.stdout:(74/148): python3-devel-3.9.25-3.el9.x86_64.rpm 3.5 MB/s | 244 kB 00:00 2026-03-31T17:40:20.888 INFO:teuthology.orchestra.run.vm02.stdout:(82/148): python3-packaging-20.9-5.el9.noarch.r 956 kB/s | 77 kB 00:00 2026-03-31T17:40:20.897 INFO:teuthology.orchestra.run.vm06.stdout:(75/148): protobuf-3.14.0-17.el9.x86_64.rpm 1.2 MB/s | 1.0 MB 00:00 2026-03-31T17:40:20.918 INFO:teuthology.orchestra.run.vm06.stdout:(76/148): python3-jinja2-2.11.3-8.el9.noarch.rp 3.3 MB/s | 249 kB 00:00 2026-03-31T17:40:20.939 INFO:teuthology.orchestra.run.vm02.stdout:(83/148): python3-numpy-1.23.5-2.el9.x86_64.rpm 19 MB/s | 6.1 MB 00:00 2026-03-31T17:40:20.942 INFO:teuthology.orchestra.run.vm06.stdout:(77/148): python3-jmespath-1.0.1-1.el9.noarch.r 1.0 MB/s | 48 kB 00:00 2026-03-31T17:40:20.987 INFO:teuthology.orchestra.run.vm06.stdout:(78/148): python3-libstoragemgmt-1.10.1-1.el9.x 2.5 MB/s | 177 kB 00:00 2026-03-31T17:40:21.019 INFO:teuthology.orchestra.run.vm02.stdout:(84/148): python3-protobuf-3.14.0-17.el9.noarch 2.0 MB/s | 267 kB 00:00 2026-03-31T17:40:21.036 INFO:teuthology.orchestra.run.vm06.stdout:(79/148): python3-markupsafe-1.1.1-12.el9.x86_6 723 kB/s | 35 kB 00:00 2026-03-31T17:40:21.039 INFO:teuthology.orchestra.run.vm02.stdout:(85/148): python3-pyasn1-0.4.8-7.el9.noarch.rpm 1.5 MB/s | 157 kB 00:00 2026-03-31T17:40:21.115 INFO:teuthology.orchestra.run.vm02.stdout:(86/148): python3-pyasn1-modules-0.4.8-7.el9.no 2.8 MB/s | 277 kB 00:00 2026-03-31T17:40:21.140 INFO:teuthology.orchestra.run.vm02.stdout:(87/148): python3-requests-oauthlib-1.3.0-12.el 528 kB/s | 54 kB 00:00 2026-03-31T17:40:21.237 INFO:teuthology.orchestra.run.vm02.stdout:(88/148): python3-toml-0.10.2-6.el9.noarch.rpm 433 kB/s | 42 kB 00:00 2026-03-31T17:40:21.334 INFO:teuthology.orchestra.run.vm02.stdout:(89/148): qatlib-25.08.0-2.el9.x86_64.rpm 2.4 MB/s | 240 kB 00:00 2026-03-31T17:40:21.414 INFO:teuthology.orchestra.run.vm02.stdout:(90/148): qatlib-service-25.08.0-2.el9.x86_64.r 468 kB/s | 37 kB 00:00 2026-03-31T17:40:21.493 INFO:teuthology.orchestra.run.vm02.stdout:(91/148): qatzip-libs-1.3.1-1.el9.x86_64.rpm 840 kB/s | 66 kB 00:00 2026-03-31T17:40:21.556 INFO:teuthology.orchestra.run.vm06.stdout:(80/148): python3-numpy-1.23.5-2.el9.x86_64.rpm 12 MB/s | 6.1 MB 00:00 2026-03-31T17:40:21.567 INFO:teuthology.orchestra.run.vm06.stdout:(81/148): python3-lxml-4.6.5-3.el9.x86_64.rpm 2.0 MB/s | 1.2 MB 00:00 2026-03-31T17:40:21.602 INFO:teuthology.orchestra.run.vm02.stdout:(92/148): socat-1.7.4.1-8.el9.x86_64.rpm 2.7 MB/s | 303 kB 00:00 2026-03-31T17:40:21.650 INFO:teuthology.orchestra.run.vm06.stdout:(82/148): python3-packaging-20.9-5.el9.noarch.r 935 kB/s | 77 kB 00:00 2026-03-31T17:40:21.665 INFO:teuthology.orchestra.run.vm06.stdout:(83/148): python3-numpy-f2py-1.23.5-2.el9.x86_6 4.0 MB/s | 442 kB 00:00 2026-03-31T17:40:21.692 INFO:teuthology.orchestra.run.vm02.stdout:(93/148): xmlsec1-1.2.29-13.el9.x86_64.rpm 2.1 MB/s | 189 kB 00:00 2026-03-31T17:40:21.751 INFO:teuthology.orchestra.run.vm06.stdout:(84/148): python3-pyasn1-0.4.8-7.el9.noarch.rpm 1.8 MB/s | 157 kB 00:00 2026-03-31T17:40:21.775 INFO:teuthology.orchestra.run.vm02.stdout:(94/148): xmlsec1-openssl-1.2.29-13.el9.x86_64. 1.1 MB/s | 90 kB 00:00 2026-03-31T17:40:21.805 INFO:teuthology.orchestra.run.vm06.stdout:(85/148): python3-pyasn1-modules-0.4.8-7.el9.no 5.0 MB/s | 277 kB 00:00 2026-03-31T17:40:21.837 INFO:teuthology.orchestra.run.vm06.stdout:(86/148): python3-protobuf-3.14.0-17.el9.noarch 1.4 MB/s | 267 kB 00:00 2026-03-31T17:40:21.850 INFO:teuthology.orchestra.run.vm06.stdout:(87/148): python3-requests-oauthlib-1.3.0-12.el 1.2 MB/s | 54 kB 00:00 2026-03-31T17:40:21.887 INFO:teuthology.orchestra.run.vm02.stdout:(95/148): xmlstarlet-1.6.1-20.el9.x86_64.rpm 568 kB/s | 64 kB 00:00 2026-03-31T17:40:21.920 INFO:teuthology.orchestra.run.vm06.stdout:(88/148): python3-toml-0.10.2-6.el9.noarch.rpm 604 kB/s | 42 kB 00:00 2026-03-31T17:40:21.977 INFO:teuthology.orchestra.run.vm02.stdout:(96/148): python3-scipy-1.9.3-2.el9.x86_64.rpm 22 MB/s | 19 MB 00:00 2026-03-31T17:40:21.983 INFO:teuthology.orchestra.run.vm06.stdout:(89/148): qatlib-25.08.0-2.el9.x86_64.rpm 3.7 MB/s | 240 kB 00:00 2026-03-31T17:40:22.032 INFO:teuthology.orchestra.run.vm06.stdout:(90/148): qatlib-service-25.08.0-2.el9.x86_64.r 763 kB/s | 37 kB 00:00 2026-03-31T17:40:22.055 INFO:teuthology.orchestra.run.vm02.stdout:(97/148): protobuf-compiler-3.14.0-17.el9.x86_6 11 MB/s | 862 kB 00:00 2026-03-31T17:40:22.070 INFO:teuthology.orchestra.run.vm02.stdout:(98/148): abseil-cpp-20211102.0-4.el9.x86_64.rp 38 MB/s | 551 kB 00:00 2026-03-31T17:40:22.077 INFO:teuthology.orchestra.run.vm02.stdout:(99/148): gperftools-libs-2.9.1-3.el9.x86_64.rp 44 MB/s | 308 kB 00:00 2026-03-31T17:40:22.079 INFO:teuthology.orchestra.run.vm02.stdout:(100/148): grpc-data-1.46.7-10.el9.noarch.rpm 8.2 MB/s | 19 kB 00:00 2026-03-31T17:40:22.094 INFO:teuthology.orchestra.run.vm06.stdout:(91/148): qatzip-libs-1.3.1-1.el9.x86_64.rpm 1.0 MB/s | 66 kB 00:00 2026-03-31T17:40:22.136 INFO:teuthology.orchestra.run.vm02.stdout:(101/148): libarrow-9.0.0-15.el9.x86_64.rpm 78 MB/s | 4.4 MB 00:00 2026-03-31T17:40:22.140 INFO:teuthology.orchestra.run.vm02.stdout:(102/148): libarrow-doc-9.0.0-15.el9.noarch.rpm 6.3 MB/s | 25 kB 00:00 2026-03-31T17:40:22.143 INFO:teuthology.orchestra.run.vm02.stdout:(103/148): liboath-2.6.12-1.el9.x86_64.rpm 16 MB/s | 49 kB 00:00 2026-03-31T17:40:22.147 INFO:teuthology.orchestra.run.vm02.stdout:(104/148): libunwind-1.6.2-1.el9.x86_64.rpm 20 MB/s | 67 kB 00:00 2026-03-31T17:40:22.152 INFO:teuthology.orchestra.run.vm02.stdout:(105/148): luarocks-3.9.2-5.el9.noarch.rpm 33 MB/s | 151 kB 00:00 2026-03-31T17:40:22.153 INFO:teuthology.orchestra.run.vm06.stdout:(92/148): socat-1.7.4.1-8.el9.x86_64.rpm 5.0 MB/s | 303 kB 00:00 2026-03-31T17:40:22.167 INFO:teuthology.orchestra.run.vm02.stdout:(106/148): parquet-libs-9.0.0-15.el9.x86_64.rpm 55 MB/s | 838 kB 00:00 2026-03-31T17:40:22.176 INFO:teuthology.orchestra.run.vm02.stdout:(107/148): python3-asyncssh-2.13.2-5.el9.noarch 59 MB/s | 548 kB 00:00 2026-03-31T17:40:22.179 INFO:teuthology.orchestra.run.vm02.stdout:(108/148): python3-autocommand-2.2.2-8.el9.noar 12 MB/s | 29 kB 00:00 2026-03-31T17:40:22.182 INFO:teuthology.orchestra.run.vm02.stdout:(109/148): python3-backports-tarfile-1.2.0-1.el 18 MB/s | 60 kB 00:00 2026-03-31T17:40:22.186 INFO:teuthology.orchestra.run.vm02.stdout:(110/148): python3-bcrypt-3.2.2-1.el9.x86_64.rp 16 MB/s | 43 kB 00:00 2026-03-31T17:40:22.188 INFO:teuthology.orchestra.run.vm02.stdout:(111/148): python3-cachetools-4.2.4-1.el9.noarc 13 MB/s | 32 kB 00:00 2026-03-31T17:40:22.191 INFO:teuthology.orchestra.run.vm02.stdout:(112/148): python3-certifi-2023.05.07-4.el9.noa 6.4 MB/s | 14 kB 00:00 2026-03-31T17:40:22.195 INFO:teuthology.orchestra.run.vm02.stdout:(113/148): python3-cheroot-10.0.1-5.el9.noarch. 39 MB/s | 173 kB 00:00 2026-03-31T17:40:22.201 INFO:teuthology.orchestra.run.vm02.stdout:(114/148): python3-cherrypy-18.10.0-5.el9.noarc 50 MB/s | 290 kB 00:00 2026-03-31T17:40:22.207 INFO:teuthology.orchestra.run.vm02.stdout:(115/148): python3-google-auth-2.45.0-1.el9.noa 44 MB/s | 254 kB 00:00 2026-03-31T17:40:22.230 INFO:teuthology.orchestra.run.vm06.stdout:(93/148): xmlsec1-1.2.29-13.el9.x86_64.rpm 2.4 MB/s | 189 kB 00:00 2026-03-31T17:40:22.236 INFO:teuthology.orchestra.run.vm02.stdout:(116/148): python3-grpcio-1.46.7-10.el9.x86_64. 71 MB/s | 2.0 MB 00:00 2026-03-31T17:40:22.240 INFO:teuthology.orchestra.run.vm02.stdout:(117/148): python3-grpcio-tools-1.46.7-10.el9.x 37 MB/s | 144 kB 00:00 2026-03-31T17:40:22.245 INFO:teuthology.orchestra.run.vm02.stdout:(118/148): python3-influxdb-5.3.1-1.el9.noarch. 33 MB/s | 139 kB 00:00 2026-03-31T17:40:22.247 INFO:teuthology.orchestra.run.vm02.stdout:(119/148): python3-isodate-0.6.1-3.el9.noarch.r 22 MB/s | 56 kB 00:00 2026-03-31T17:40:22.249 INFO:teuthology.orchestra.run.vm02.stdout:(120/148): python3-jaraco-8.2.1-3.el9.noarch.rp 4.8 MB/s | 11 kB 00:00 2026-03-31T17:40:22.252 INFO:teuthology.orchestra.run.vm02.stdout:(121/148): python3-jaraco-classes-3.2.1-5.el9.n 7.6 MB/s | 18 kB 00:00 2026-03-31T17:40:22.254 INFO:teuthology.orchestra.run.vm02.stdout:(122/148): python3-jaraco-collections-3.0.0-8.e 9.9 MB/s | 23 kB 00:00 2026-03-31T17:40:22.256 INFO:teuthology.orchestra.run.vm02.stdout:(123/148): python3-jaraco-context-6.0.1-3.el9.n 9.7 MB/s | 20 kB 00:00 2026-03-31T17:40:22.258 INFO:teuthology.orchestra.run.vm02.stdout:(124/148): python3-jaraco-functools-3.5.0-2.el9 9.0 MB/s | 19 kB 00:00 2026-03-31T17:40:22.262 INFO:teuthology.orchestra.run.vm02.stdout:(125/148): python3-jaraco-text-4.0.0-2.el9.noar 8.7 MB/s | 26 kB 00:00 2026-03-31T17:40:22.276 INFO:teuthology.orchestra.run.vm02.stdout:(126/148): python3-kubernetes-26.1.0-3.el9.noar 71 MB/s | 1.0 MB 00:00 2026-03-31T17:40:22.280 INFO:teuthology.orchestra.run.vm02.stdout:(127/148): python3-more-itertools-8.12.0-2.el9. 22 MB/s | 79 kB 00:00 2026-03-31T17:40:22.283 INFO:teuthology.orchestra.run.vm02.stdout:(128/148): python3-msgpack-1.0.3-2.el9.x86_64.r 24 MB/s | 86 kB 00:00 2026-03-31T17:40:22.289 INFO:teuthology.orchestra.run.vm02.stdout:(129/148): python3-natsort-7.1.1-5.el9.noarch.r 9.7 MB/s | 58 kB 00:00 2026-03-31T17:40:22.291 INFO:teuthology.orchestra.run.vm02.stdout:(130/148): python3-portend-3.1.0-2.el9.noarch.r 7.5 MB/s | 16 kB 00:00 2026-03-31T17:40:22.295 INFO:teuthology.orchestra.run.vm02.stdout:(131/148): python3-pyOpenSSL-21.0.0-1.el9.noarc 23 MB/s | 90 kB 00:00 2026-03-31T17:40:22.298 INFO:teuthology.orchestra.run.vm02.stdout:(132/148): python3-repoze-lru-0.7-16.el9.noarch 13 MB/s | 31 kB 00:00 2026-03-31T17:40:22.299 INFO:teuthology.orchestra.run.vm06.stdout:(94/148): xmlsec1-openssl-1.2.29-13.el9.x86_64. 1.3 MB/s | 90 kB 00:00 2026-03-31T17:40:22.302 INFO:teuthology.orchestra.run.vm02.stdout:(133/148): python3-routes-2.5.1-5.el9.noarch.rp 41 MB/s | 188 kB 00:00 2026-03-31T17:40:22.306 INFO:teuthology.orchestra.run.vm02.stdout:(134/148): python3-rsa-4.9-2.el9.noarch.rpm 17 MB/s | 59 kB 00:00 2026-03-31T17:40:22.310 INFO:teuthology.orchestra.run.vm02.stdout:(135/148): python3-saml-1.16.0-1.el9.noarch.rpm 32 MB/s | 125 kB 00:00 2026-03-31T17:40:22.313 INFO:teuthology.orchestra.run.vm02.stdout:(136/148): python3-tempora-5.0.0-2.el9.noarch.r 13 MB/s | 36 kB 00:00 2026-03-31T17:40:22.316 INFO:teuthology.orchestra.run.vm02.stdout:(137/148): python3-typing-extensions-4.15.0-1.e 27 MB/s | 86 kB 00:00 2026-03-31T17:40:22.320 INFO:teuthology.orchestra.run.vm02.stdout:(138/148): python3-websocket-client-1.2.3-2.el9 24 MB/s | 90 kB 00:00 2026-03-31T17:40:22.324 INFO:teuthology.orchestra.run.vm02.stdout:(139/148): python3-xmlsec-1.3.13-1.el9.x86_64.r 14 MB/s | 48 kB 00:00 2026-03-31T17:40:22.327 INFO:teuthology.orchestra.run.vm02.stdout:(140/148): python3-xmltodict-0.12.0-15.el9.noar 5.9 MB/s | 22 kB 00:00 2026-03-31T17:40:22.330 INFO:teuthology.orchestra.run.vm02.stdout:(141/148): python3-zc-lockfile-2.0-10.el9.noarc 9.1 MB/s | 20 kB 00:00 2026-03-31T17:40:22.335 INFO:teuthology.orchestra.run.vm02.stdout:(142/148): re2-20211101-20.el9.x86_64.rpm 36 MB/s | 191 kB 00:00 2026-03-31T17:40:22.337 INFO:teuthology.orchestra.run.vm02.stdout:(143/148): lua-devel-5.4.4-4.el9.x86_64.rpm 49 kB/s | 22 kB 00:00 2026-03-31T17:40:22.340 INFO:teuthology.orchestra.run.vm02.stdout:(144/148): s3cmd-2.4.0-1.el9.noarch.rpm 41 MB/s | 206 kB 00:00 2026-03-31T17:40:22.355 INFO:teuthology.orchestra.run.vm06.stdout:(95/148): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.1 MB/s | 64 kB 00:00 2026-03-31T17:40:22.379 INFO:teuthology.orchestra.run.vm02.stdout:(145/148): thrift-0.15.0-4.el9.x86_64.rpm 38 MB/s | 1.6 MB 00:00 2026-03-31T17:40:22.462 INFO:teuthology.orchestra.run.vm06.stdout:(96/148): lua-devel-5.4.4-4.el9.x86_64.rpm 210 kB/s | 22 kB 00:00 2026-03-31T17:40:22.658 INFO:teuthology.orchestra.run.vm06.stdout:(97/148): ceph-test-20.2.0-721.g5bb32787.el9.x8 8.3 MB/s | 84 MB 00:10 2026-03-31T17:40:22.674 INFO:teuthology.orchestra.run.vm06.stdout:(98/148): abseil-cpp-20211102.0-4.el9.x86_64.rp 37 MB/s | 551 kB 00:00 2026-03-31T17:40:22.681 INFO:teuthology.orchestra.run.vm06.stdout:(99/148): gperftools-libs-2.9.1-3.el9.x86_64.rp 43 MB/s | 308 kB 00:00 2026-03-31T17:40:22.684 INFO:teuthology.orchestra.run.vm06.stdout:(100/148): grpc-data-1.46.7-10.el9.noarch.rpm 7.5 MB/s | 19 kB 00:00 2026-03-31T17:40:22.741 INFO:teuthology.orchestra.run.vm06.stdout:(101/148): libarrow-9.0.0-15.el9.x86_64.rpm 78 MB/s | 4.4 MB 00:00 2026-03-31T17:40:22.744 INFO:teuthology.orchestra.run.vm06.stdout:(102/148): libarrow-doc-9.0.0-15.el9.noarch.rpm 8.8 MB/s | 25 kB 00:00 2026-03-31T17:40:22.746 INFO:teuthology.orchestra.run.vm06.stdout:(103/148): liboath-2.6.12-1.el9.x86_64.rpm 21 MB/s | 49 kB 00:00 2026-03-31T17:40:22.750 INFO:teuthology.orchestra.run.vm06.stdout:(104/148): libunwind-1.6.2-1.el9.x86_64.rpm 21 MB/s | 67 kB 00:00 2026-03-31T17:40:22.754 INFO:teuthology.orchestra.run.vm06.stdout:(105/148): luarocks-3.9.2-5.el9.noarch.rpm 34 MB/s | 151 kB 00:00 2026-03-31T17:40:22.766 INFO:teuthology.orchestra.run.vm06.stdout:(106/148): protobuf-compiler-3.14.0-17.el9.x86_ 2.8 MB/s | 862 kB 00:00 2026-03-31T17:40:22.769 INFO:teuthology.orchestra.run.vm06.stdout:(107/148): parquet-libs-9.0.0-15.el9.x86_64.rpm 56 MB/s | 838 kB 00:00 2026-03-31T17:40:22.776 INFO:teuthology.orchestra.run.vm06.stdout:(108/148): python3-asyncssh-2.13.2-5.el9.noarch 55 MB/s | 548 kB 00:00 2026-03-31T17:40:22.778 INFO:teuthology.orchestra.run.vm06.stdout:(109/148): python3-autocommand-2.2.2-8.el9.noar 3.5 MB/s | 29 kB 00:00 2026-03-31T17:40:22.779 INFO:teuthology.orchestra.run.vm06.stdout:(110/148): python3-backports-tarfile-1.2.0-1.el 22 MB/s | 60 kB 00:00 2026-03-31T17:40:22.780 INFO:teuthology.orchestra.run.vm06.stdout:(111/148): python3-bcrypt-3.2.2-1.el9.x86_64.rp 19 MB/s | 43 kB 00:00 2026-03-31T17:40:22.781 INFO:teuthology.orchestra.run.vm06.stdout:(112/148): python3-cachetools-4.2.4-1.el9.noarc 16 MB/s | 32 kB 00:00 2026-03-31T17:40:22.782 INFO:teuthology.orchestra.run.vm06.stdout:(113/148): python3-certifi-2023.05.07-4.el9.noa 7.3 MB/s | 14 kB 00:00 2026-03-31T17:40:22.786 INFO:teuthology.orchestra.run.vm06.stdout:(114/148): python3-cheroot-10.0.1-5.el9.noarch. 42 MB/s | 173 kB 00:00 2026-03-31T17:40:22.791 INFO:teuthology.orchestra.run.vm06.stdout:(115/148): python3-google-auth-2.45.0-1.el9.noa 50 MB/s | 254 kB 00:00 2026-03-31T17:40:22.794 INFO:teuthology.orchestra.run.vm06.stdout:(116/148): python3-cherrypy-18.10.0-5.el9.noarc 25 MB/s | 290 kB 00:00 2026-03-31T17:40:22.801 INFO:teuthology.orchestra.run.vm06.stdout:(117/148): python3-grpcio-tools-1.46.7-10.el9.x 22 MB/s | 144 kB 00:00 2026-03-31T17:40:22.809 INFO:teuthology.orchestra.run.vm06.stdout:(118/148): python3-influxdb-5.3.1-1.el9.noarch. 17 MB/s | 139 kB 00:00 2026-03-31T17:40:22.815 INFO:teuthology.orchestra.run.vm06.stdout:(119/148): python3-isodate-0.6.1-3.el9.noarch.r 9.2 MB/s | 56 kB 00:00 2026-03-31T17:40:22.822 INFO:teuthology.orchestra.run.vm06.stdout:(120/148): python3-grpcio-1.46.7-10.el9.x86_64. 66 MB/s | 2.0 MB 00:00 2026-03-31T17:40:22.823 INFO:teuthology.orchestra.run.vm06.stdout:(121/148): python3-jaraco-8.2.1-3.el9.noarch.rp 1.4 MB/s | 11 kB 00:00 2026-03-31T17:40:22.824 INFO:teuthology.orchestra.run.vm06.stdout:(122/148): python3-jaraco-classes-3.2.1-5.el9.n 9.0 MB/s | 18 kB 00:00 2026-03-31T17:40:22.825 INFO:teuthology.orchestra.run.vm06.stdout:(123/148): python3-jaraco-collections-3.0.0-8.e 12 MB/s | 23 kB 00:00 2026-03-31T17:40:22.827 INFO:teuthology.orchestra.run.vm06.stdout:(124/148): python3-jaraco-context-6.0.1-3.el9.n 7.9 MB/s | 20 kB 00:00 2026-03-31T17:40:22.828 INFO:teuthology.orchestra.run.vm06.stdout:(125/148): python3-jaraco-functools-3.5.0-2.el9 6.2 MB/s | 19 kB 00:00 2026-03-31T17:40:22.829 INFO:teuthology.orchestra.run.vm06.stdout:(126/148): python3-jaraco-text-4.0.0-2.el9.noar 13 MB/s | 26 kB 00:00 2026-03-31T17:40:22.833 INFO:teuthology.orchestra.run.vm06.stdout:(127/148): python3-more-itertools-8.12.0-2.el9. 20 MB/s | 79 kB 00:00 2026-03-31T17:40:22.837 INFO:teuthology.orchestra.run.vm06.stdout:(128/148): python3-msgpack-1.0.3-2.el9.x86_64.r 25 MB/s | 86 kB 00:00 2026-03-31T17:40:22.841 INFO:teuthology.orchestra.run.vm06.stdout:(129/148): python3-natsort-7.1.1-5.el9.noarch.r 16 MB/s | 58 kB 00:00 2026-03-31T17:40:22.846 INFO:teuthology.orchestra.run.vm06.stdout:(130/148): python3-kubernetes-26.1.0-3.el9.noar 58 MB/s | 1.0 MB 00:00 2026-03-31T17:40:22.847 INFO:teuthology.orchestra.run.vm06.stdout:(131/148): python3-portend-3.1.0-2.el9.noarch.r 2.8 MB/s | 16 kB 00:00 2026-03-31T17:40:22.850 INFO:teuthology.orchestra.run.vm06.stdout:(132/148): python3-pyOpenSSL-21.0.0-1.el9.noarc 26 MB/s | 90 kB 00:00 2026-03-31T17:40:22.851 INFO:teuthology.orchestra.run.vm06.stdout:(133/148): python3-repoze-lru-0.7-16.el9.noarch 8.1 MB/s | 31 kB 00:00 2026-03-31T17:40:22.854 INFO:teuthology.orchestra.run.vm06.stdout:(134/148): python3-routes-2.5.1-5.el9.noarch.rp 42 MB/s | 188 kB 00:00 2026-03-31T17:40:22.855 INFO:teuthology.orchestra.run.vm06.stdout:(135/148): python3-rsa-4.9-2.el9.noarch.rpm 14 MB/s | 59 kB 00:00 2026-03-31T17:40:22.858 INFO:teuthology.orchestra.run.vm06.stdout:(136/148): python3-saml-1.16.0-1.el9.noarch.rpm 32 MB/s | 125 kB 00:00 2026-03-31T17:40:22.860 INFO:teuthology.orchestra.run.vm06.stdout:(137/148): python3-tempora-5.0.0-2.el9.noarch.r 6.9 MB/s | 36 kB 00:00 2026-03-31T17:40:22.862 INFO:teuthology.orchestra.run.vm06.stdout:(138/148): python3-typing-extensions-4.15.0-1.e 27 MB/s | 86 kB 00:00 2026-03-31T17:40:22.864 INFO:teuthology.orchestra.run.vm06.stdout:(139/148): python3-websocket-client-1.2.3-2.el9 28 MB/s | 90 kB 00:00 2026-03-31T17:40:22.865 INFO:teuthology.orchestra.run.vm06.stdout:(140/148): python3-xmlsec-1.3.13-1.el9.x86_64.r 15 MB/s | 48 kB 00:00 2026-03-31T17:40:22.866 INFO:teuthology.orchestra.run.vm06.stdout:(141/148): python3-xmltodict-0.12.0-15.el9.noar 11 MB/s | 22 kB 00:00 2026-03-31T17:40:22.867 INFO:teuthology.orchestra.run.vm06.stdout:(142/148): python3-zc-lockfile-2.0-10.el9.noarc 10 MB/s | 20 kB 00:00 2026-03-31T17:40:22.870 INFO:teuthology.orchestra.run.vm06.stdout:(143/148): re2-20211101-20.el9.x86_64.rpm 45 MB/s | 191 kB 00:00 2026-03-31T17:40:22.873 INFO:teuthology.orchestra.run.vm06.stdout:(144/148): s3cmd-2.4.0-1.el9.noarch.rpm 39 MB/s | 206 kB 00:00 2026-03-31T17:40:22.892 INFO:teuthology.orchestra.run.vm06.stdout:(145/148): thrift-0.15.0-4.el9.x86_64.rpm 73 MB/s | 1.6 MB 00:00 2026-03-31T17:40:23.385 INFO:teuthology.orchestra.run.vm02.stdout:(146/148): librados2-20.2.0-721.g5bb32787.el9.x 3.4 MB/s | 3.5 MB 00:01 2026-03-31T17:40:23.468 INFO:teuthology.orchestra.run.vm02.stdout:(147/148): librbd1-20.2.0-721.g5bb32787.el9.x86 2.6 MB/s | 2.8 MB 00:01 2026-03-31T17:40:23.846 INFO:teuthology.orchestra.run.vm06.stdout:(146/148): librbd1-20.2.0-721.g5bb32787.el9.x86 3.0 MB/s | 2.8 MB 00:00 2026-03-31T17:40:24.150 INFO:teuthology.orchestra.run.vm06.stdout:(147/148): librados2-20.2.0-721.g5bb32787.el9.x 2.8 MB/s | 3.5 MB 00:01 2026-03-31T17:40:24.541 INFO:teuthology.orchestra.run.vm07.stdout:lab-extras 64 kB/s | 50 kB 00:00 2026-03-31T17:40:25.853 INFO:teuthology.orchestra.run.vm07.stdout:Package librados2-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-31T17:40:25.853 INFO:teuthology.orchestra.run.vm07.stdout:Package librbd1-2:16.2.4-5.el9.x86_64 is already installed. 2026-03-31T17:40:25.888 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout:====================================================================================== 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout:====================================================================================== 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout:Installing: 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: bzip2 x86_64 1.0.8-11.el9 baseos 55 k 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph x86_64 2:20.2.0-721.g5bb32787.el9 ceph 6.5 k 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph-base x86_64 2:20.2.0-721.g5bb32787.el9 ceph 5.9 M 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph-fuse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 940 k 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-721.g5bb32787.el9 ceph 154 k 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr x86_64 2:20.2.0-721.g5bb32787.el9 ceph 961 k 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-cephadm noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 173 k 2026-03-31T17:40:25.892 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-dashboard noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 11 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 7.4 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-rook noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 50 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-radosgw x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-test x86_64 2:20.2.0-721.g5bb32787.el9 ceph 84 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-volume noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 298 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: cephadm noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 1.0 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-devel x86_64 2:20.2.0-721.g5bb32787.el9 ceph 34 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 867 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: librados-devel x86_64 2:20.2.0-721.g5bb32787.el9 ceph 126 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: perl-Test-Harness noarch 1:3.42-461.el9 appstream 295 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: python3-cephfs x86_64 2:20.2.0-721.g5bb32787.el9 ceph 163 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: python3-rados x86_64 2:20.2.0-721.g5bb32787.el9 ceph 323 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: python3-rbd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 304 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: python3-rgw x86_64 2:20.2.0-721.g5bb32787.el9 ceph 99 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: rbd-fuse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 91 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: rbd-mirror x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.9 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: rbd-nbd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 179 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: s3cmd noarch 2.4.0-1.el9 epel 206 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout:Upgrading: 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: librados2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 3.5 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: librbd1 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.8 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout:Installing dependencies: 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-grafana-dashboards noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 43 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mds x86_64 2:20.2.0-721.g5bb32787.el9 ceph 2.3 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-modules-core noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 290 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mon x86_64 2:20.2.0-721.g5bb32787.el9 ceph 5.0 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-osd x86_64 2:20.2.0-721.g5bb32787.el9 ceph 17 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-prometheus-alerts noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 17 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ceph-selinux x86_64 2:20.2.0-721.g5bb32787.el9 ceph 25 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: fuse x86_64 2.9.9-17.el9 baseos 80 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-proxy2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 24 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libcephsqlite x86_64 2:20.2.0-721.g5bb32787.el9 ceph 164 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-03-31T17:40:25.893 INFO:teuthology.orchestra.run.vm07.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: libradosstriper1 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 250 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: librgw2 x86_64 2:20.2.0-721.g5bb32787.el9 ceph 6.4 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: perl-Benchmark noarch 1.23-483.el9 appstream 26 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-argparse x86_64 2:20.2.0-721.g5bb32787.el9 ceph 45 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 ceph 175 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-cheroot noarch 10.0.1-5.el9 epel 173 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-cherrypy noarch 18.10.0-5.el9 epel 290 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1 noarch 0.4.8-7.el9 appstream 157 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 appstream 277 k 2026-03-31T17:40:25.894 INFO:teuthology.orchestra.run.vm07.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:Installing weak dependencies: 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-721.g5bb32787.el9 ceph-noarch 22 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-daemon x86_64 2:20.2.0-721.g5bb32787.el9 ceph 35 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: smartmontools x86_64 1:7.2-10.el9 baseos 556 k 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:====================================================================================== 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:Install 146 Packages 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:Upgrade 2 Packages 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:Total download size: 269 M 2026-03-31T17:40:25.895 INFO:teuthology.orchestra.run.vm07.stdout:Downloading Packages: 2026-03-31T17:40:27.918 INFO:teuthology.orchestra.run.vm07.stdout:(1/148): ceph-20.2.0-721.g5bb32787.el9.x86_64.r 14 kB/s | 6.5 kB 00:00 2026-03-31T17:40:28.272 INFO:teuthology.orchestra.run.vm06.stdout:(148/148): python3-scipy-1.9.3-2.el9.x86_64.rpm 3.0 MB/s | 19 MB 00:06 2026-03-31T17:40:28.273 INFO:teuthology.orchestra.run.vm06.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:40:28.273 INFO:teuthology.orchestra.run.vm06.stdout:Total 14 MB/s | 269 MB 00:19 2026-03-31T17:40:28.728 INFO:teuthology.orchestra.run.vm07.stdout:(2/148): ceph-fuse-20.2.0-721.g5bb32787.el9.x86 1.1 MB/s | 940 kB 00:00 2026-03-31T17:40:28.846 INFO:teuthology.orchestra.run.vm07.stdout:(3/148): ceph-immutable-object-cache-20.2.0-721 1.3 MB/s | 154 kB 00:00 2026-03-31T17:40:28.887 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:40:28.952 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:40:28.952 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:40:29.028 INFO:teuthology.orchestra.run.vm07.stdout:(4/148): ceph-base-20.2.0-721.g5bb32787.el9.x86 3.7 MB/s | 5.9 MB 00:01 2026-03-31T17:40:29.098 INFO:teuthology.orchestra.run.vm07.stdout:(5/148): ceph-mds-20.2.0-721.g5bb32787.el9.x86_ 9.3 MB/s | 2.3 MB 00:00 2026-03-31T17:40:29.158 INFO:teuthology.orchestra.run.vm07.stdout:(6/148): ceph-mgr-20.2.0-721.g5bb32787.el9.x86_ 7.2 MB/s | 961 kB 00:00 2026-03-31T17:40:29.470 INFO:teuthology.orchestra.run.vm07.stdout:(7/148): ceph-mon-20.2.0-721.g5bb32787.el9.x86_ 14 MB/s | 5.0 MB 00:00 2026-03-31T17:40:29.953 INFO:teuthology.orchestra.run.vm02.stdout:(148/148): ceph-test-20.2.0-721.g5bb32787.el9.x 4.9 MB/s | 84 MB 00:17 2026-03-31T17:40:29.956 INFO:teuthology.orchestra.run.vm02.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:40:29.956 INFO:teuthology.orchestra.run.vm02.stdout:Total 12 MB/s | 269 MB 00:21 2026-03-31T17:40:30.023 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:40:30.024 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:40:30.139 INFO:teuthology.orchestra.run.vm07.stdout:(8/148): ceph-common-20.2.0-721.g5bb32787.el9.x 8.8 MB/s | 24 MB 00:02 2026-03-31T17:40:30.258 INFO:teuthology.orchestra.run.vm07.stdout:(9/148): ceph-selinux-20.2.0-721.g5bb32787.el9. 210 kB/s | 25 kB 00:00 2026-03-31T17:40:30.303 INFO:teuthology.orchestra.run.vm07.stdout:(10/148): ceph-osd-20.2.0-721.g5bb32787.el9.x86 15 MB/s | 17 MB 00:01 2026-03-31T17:40:30.426 INFO:teuthology.orchestra.run.vm07.stdout:(11/148): libcephfs-daemon-20.2.0-721.g5bb32787 289 kB/s | 35 kB 00:00 2026-03-31T17:40:30.553 INFO:teuthology.orchestra.run.vm07.stdout:(12/148): libcephfs-devel-20.2.0-721.g5bb32787. 271 kB/s | 34 kB 00:00 2026-03-31T17:40:30.615 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:40:30.673 INFO:teuthology.orchestra.run.vm07.stdout:(13/148): libcephfs-proxy2-20.2.0-721.g5bb32787 202 kB/s | 24 kB 00:00 2026-03-31T17:40:30.675 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:40:30.675 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:40:31.167 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:40:31.176 INFO:teuthology.orchestra.run.vm06.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/150 2026-03-31T17:40:31.179 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 2/150 2026-03-31T17:40:31.191 INFO:teuthology.orchestra.run.vm06.stdout: Installing : liboath-2.6.12-1.el9.x86_64 3/150 2026-03-31T17:40:31.284 INFO:teuthology.orchestra.run.vm07.stdout:(14/148): ceph-radosgw-20.2.0-721.g5bb32787.el9 13 MB/s | 24 MB 00:01 2026-03-31T17:40:31.369 INFO:teuthology.orchestra.run.vm06.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 4/150 2026-03-31T17:40:31.371 INFO:teuthology.orchestra.run.vm06.stdout: Upgrading : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 5/150 2026-03-31T17:40:31.403 INFO:teuthology.orchestra.run.vm07.stdout:(15/148): libcephsqlite-20.2.0-721.g5bb32787.el 1.4 MB/s | 164 kB 00:00 2026-03-31T17:40:31.427 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 5/150 2026-03-31T17:40:31.429 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:31.444 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:31.448 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_ 7/150 2026-03-31T17:40:31.449 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 8/150 2026-03-31T17:40:31.482 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 8/150 2026-03-31T17:40:31.489 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 9/150 2026-03-31T17:40:31.500 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 10/150 2026-03-31T17:40:31.504 INFO:teuthology.orchestra.run.vm06.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 11/150 2026-03-31T17:40:31.509 INFO:teuthology.orchestra.run.vm06.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 12/150 2026-03-31T17:40:31.511 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 13/150 2026-03-31T17:40:31.517 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 14/150 2026-03-31T17:40:31.520 INFO:teuthology.orchestra.run.vm07.stdout:(16/148): librados-devel-20.2.0-721.g5bb32787.e 1.0 MB/s | 126 kB 00:00 2026-03-31T17:40:31.642 INFO:teuthology.orchestra.run.vm07.stdout:(17/148): libradosstriper1-20.2.0-721.g5bb32787 2.0 MB/s | 250 kB 00:00 2026-03-31T17:40:31.669 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 15/150 2026-03-31T17:40:31.672 INFO:teuthology.orchestra.run.vm06.stdout: Upgrading : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:31.691 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:40:31.691 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:40:31.730 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:31.738 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 17/150 2026-03-31T17:40:31.748 INFO:teuthology.orchestra.run.vm06.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 18/150 2026-03-31T17:40:31.750 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 19/150 2026-03-31T17:40:31.778 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 19/150 2026-03-31T17:40:31.780 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 20/150 2026-03-31T17:40:31.788 INFO:teuthology.orchestra.run.vm07.stdout:(18/148): libcephfs2-20.2.0-721.g5bb32787.el9.x 778 kB/s | 867 kB 00:01 2026-03-31T17:40:31.803 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 20/150 2026-03-31T17:40:31.838 INFO:teuthology.orchestra.run.vm06.stdout: Installing : re2-1:20211101-20.el9.x86_64 21/150 2026-03-31T17:40:31.864 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 22/150 2026-03-31T17:40:31.878 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-pyasn1-0.4.8-7.el9.noarch 23/150 2026-03-31T17:40:31.889 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-packaging-20.9-5.el9.noarch 24/150 2026-03-31T17:40:31.896 INFO:teuthology.orchestra.run.vm06.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 25/150 2026-03-31T17:40:31.900 INFO:teuthology.orchestra.run.vm06.stdout: Installing : lua-5.4.4-4.el9.x86_64 26/150 2026-03-31T17:40:31.907 INFO:teuthology.orchestra.run.vm06.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 27/150 2026-03-31T17:40:31.908 INFO:teuthology.orchestra.run.vm07.stdout:(19/148): python3-ceph-argparse-20.2.0-721.g5bb 374 kB/s | 45 kB 00:00 2026-03-31T17:40:31.937 INFO:teuthology.orchestra.run.vm06.stdout: Installing : unzip-6.0-59.el9.x86_64 28/150 2026-03-31T17:40:31.955 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 29/150 2026-03-31T17:40:31.960 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 30/150 2026-03-31T17:40:31.967 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 31/150 2026-03-31T17:40:31.970 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 32/150 2026-03-31T17:40:32.011 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 33/150 2026-03-31T17:40:32.018 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 34/150 2026-03-31T17:40:32.029 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9 35/150 2026-03-31T17:40:32.030 INFO:teuthology.orchestra.run.vm07.stdout:(20/148): python3-ceph-common-20.2.0-721.g5bb32 1.4 MB/s | 175 kB 00:00 2026-03-31T17:40:32.045 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 36/150 2026-03-31T17:40:32.055 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 37/150 2026-03-31T17:40:32.086 INFO:teuthology.orchestra.run.vm06.stdout: Installing : zip-3.0-35.el9.x86_64 38/150 2026-03-31T17:40:32.092 INFO:teuthology.orchestra.run.vm06.stdout: Installing : luarocks-3.9.2-5.el9.noarch 39/150 2026-03-31T17:40:32.100 INFO:teuthology.orchestra.run.vm06.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 40/150 2026-03-31T17:40:32.152 INFO:teuthology.orchestra.run.vm07.stdout:(21/148): python3-cephfs-20.2.0-721.g5bb32787.e 1.3 MB/s | 163 kB 00:00 2026-03-31T17:40:32.161 INFO:teuthology.orchestra.run.vm06.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 41/150 2026-03-31T17:40:32.179 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-pyasn1-modules-0.4.8-7.el9.noarch 42/150 2026-03-31T17:40:32.183 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-rsa-4.9-2.el9.noarch 43/150 2026-03-31T17:40:32.190 INFO:teuthology.orchestra.run.vm06.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 44/150 2026-03-31T17:40:32.208 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 45/150 2026-03-31T17:40:32.215 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 46/150 2026-03-31T17:40:32.221 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 47/150 2026-03-31T17:40:32.231 INFO:teuthology.orchestra.run.vm06.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 48/150 2026-03-31T17:40:32.238 INFO:teuthology.orchestra.run.vm06.stdout: Installing : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 49/150 2026-03-31T17:40:32.242 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 50/150 2026-03-31T17:40:32.261 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 51/150 2026-03-31T17:40:32.268 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 52/150 2026-03-31T17:40:32.275 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 53/150 2026-03-31T17:40:32.276 INFO:teuthology.orchestra.run.vm07.stdout:(22/148): python3-rados-20.2.0-721.g5bb32787.el 2.6 MB/s | 323 kB 00:00 2026-03-31T17:40:32.291 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 54/150 2026-03-31T17:40:32.303 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 55/150 2026-03-31T17:40:32.311 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 56/150 2026-03-31T17:40:32.337 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 57/150 2026-03-31T17:40:32.352 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 58/150 2026-03-31T17:40:32.353 INFO:teuthology.orchestra.run.vm07.stdout:(23/148): librgw2-20.2.0-721.g5bb32787.el9.x86_ 9.0 MB/s | 6.4 MB 00:00 2026-03-31T17:40:32.371 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 59/150 2026-03-31T17:40:32.378 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 60/150 2026-03-31T17:40:32.388 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 61/150 2026-03-31T17:40:32.400 INFO:teuthology.orchestra.run.vm07.stdout:(24/148): python3-rbd-20.2.0-721.g5bb32787.el9. 2.4 MB/s | 304 kB 00:00 2026-03-31T17:40:32.438 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 62/150 2026-03-31T17:40:32.471 INFO:teuthology.orchestra.run.vm07.stdout:(25/148): python3-rgw-20.2.0-721.g5bb32787.el9. 847 kB/s | 99 kB 00:00 2026-03-31T17:40:32.522 INFO:teuthology.orchestra.run.vm07.stdout:(26/148): rbd-fuse-20.2.0-721.g5bb32787.el9.x86 748 kB/s | 91 kB 00:00 2026-03-31T17:40:32.646 INFO:teuthology.orchestra.run.vm07.stdout:(27/148): rbd-nbd-20.2.0-721.g5bb32787.el9.x86_ 1.4 MB/s | 179 kB 00:00 2026-03-31T17:40:32.718 INFO:teuthology.orchestra.run.vm07.stdout:(28/148): rbd-mirror-20.2.0-721.g5bb32787.el9.x 12 MB/s | 2.9 MB 00:00 2026-03-31T17:40:32.765 INFO:teuthology.orchestra.run.vm07.stdout:(29/148): ceph-grafana-dashboards-20.2.0-721.g5 362 kB/s | 43 kB 00:00 2026-03-31T17:40:32.817 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:40:32.835 INFO:teuthology.orchestra.run.vm02.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/150 2026-03-31T17:40:32.835 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 63/150 2026-03-31T17:40:32.835 INFO:teuthology.orchestra.run.vm07.stdout:(30/148): ceph-mgr-cephadm-20.2.0-721.g5bb32787 1.4 MB/s | 173 kB 00:00 2026-03-31T17:40:32.839 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 2/150 2026-03-31T17:40:32.852 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 64/150 2026-03-31T17:40:32.852 INFO:teuthology.orchestra.run.vm02.stdout: Installing : liboath-2.6.12-1.el9.x86_64 3/150 2026-03-31T17:40:32.858 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 65/150 2026-03-31T17:40:32.866 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 66/150 2026-03-31T17:40:32.872 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 67/150 2026-03-31T17:40:32.880 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 68/150 2026-03-31T17:40:32.884 INFO:teuthology.orchestra.run.vm06.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 69/150 2026-03-31T17:40:32.886 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 70/150 2026-03-31T17:40:32.918 INFO:teuthology.orchestra.run.vm06.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 71/150 2026-03-31T17:40:32.969 INFO:teuthology.orchestra.run.vm06.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 72/150 2026-03-31T17:40:32.983 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 73/150 2026-03-31T17:40:32.992 INFO:teuthology.orchestra.run.vm06.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 74/150 2026-03-31T17:40:32.998 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 75/150 2026-03-31T17:40:33.007 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 76/150 2026-03-31T17:40:33.012 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 77/150 2026-03-31T17:40:33.022 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 78/150 2026-03-31T17:40:33.028 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 79/150 2026-03-31T17:40:33.034 INFO:teuthology.orchestra.run.vm02.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 4/150 2026-03-31T17:40:33.035 INFO:teuthology.orchestra.run.vm02.stdout: Upgrading : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 5/150 2026-03-31T17:40:33.061 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 80/150 2026-03-31T17:40:33.075 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 81/150 2026-03-31T17:40:33.084 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 82/150 2026-03-31T17:40:33.090 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 5/150 2026-03-31T17:40:33.092 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:33.092 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 83/150 2026-03-31T17:40:33.105 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:33.109 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_ 7/150 2026-03-31T17:40:33.110 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 8/150 2026-03-31T17:40:33.137 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 84/150 2026-03-31T17:40:33.141 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 8/150 2026-03-31T17:40:33.149 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 9/150 2026-03-31T17:40:33.159 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 10/150 2026-03-31T17:40:33.163 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 11/150 2026-03-31T17:40:33.167 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 12/150 2026-03-31T17:40:33.169 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 13/150 2026-03-31T17:40:33.174 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 14/150 2026-03-31T17:40:33.316 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 15/150 2026-03-31T17:40:33.318 INFO:teuthology.orchestra.run.vm02.stdout: Upgrading : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:33.376 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:33.385 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 17/150 2026-03-31T17:40:33.395 INFO:teuthology.orchestra.run.vm02.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 18/150 2026-03-31T17:40:33.396 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 19/150 2026-03-31T17:40:33.420 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 19/150 2026-03-31T17:40:33.422 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 20/150 2026-03-31T17:40:33.425 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 85/150 2026-03-31T17:40:33.437 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 20/150 2026-03-31T17:40:33.455 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 86/150 2026-03-31T17:40:33.459 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 87/150 2026-03-31T17:40:33.463 INFO:teuthology.orchestra.run.vm06.stdout: Installing : perl-Benchmark-1.23-483.el9.noarch 88/150 2026-03-31T17:40:33.475 INFO:teuthology.orchestra.run.vm02.stdout: Installing : re2-1:20211101-20.el9.x86_64 21/150 2026-03-31T17:40:33.500 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 22/150 2026-03-31T17:40:33.515 INFO:teuthology.orchestra.run.vm07.stdout:(31/148): ceph-mgr-dashboard-20.2.0-721.g5bb327 14 MB/s | 11 MB 00:00 2026-03-31T17:40:33.515 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyasn1-0.4.8-7.el9.noarch 23/150 2026-03-31T17:40:33.526 INFO:teuthology.orchestra.run.vm06.stdout: Installing : openblas-0.3.29-1.el9.x86_64 89/150 2026-03-31T17:40:33.526 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-packaging-20.9-5.el9.noarch 24/150 2026-03-31T17:40:33.528 INFO:teuthology.orchestra.run.vm06.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 90/150 2026-03-31T17:40:33.533 INFO:teuthology.orchestra.run.vm02.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 25/150 2026-03-31T17:40:33.537 INFO:teuthology.orchestra.run.vm02.stdout: Installing : lua-5.4.4-4.el9.x86_64 26/150 2026-03-31T17:40:33.543 INFO:teuthology.orchestra.run.vm02.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 27/150 2026-03-31T17:40:33.555 INFO:teuthology.orchestra.run.vm06.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 91/150 2026-03-31T17:40:33.571 INFO:teuthology.orchestra.run.vm02.stdout: Installing : unzip-6.0-59.el9.x86_64 28/150 2026-03-31T17:40:33.587 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 29/150 2026-03-31T17:40:33.592 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 30/150 2026-03-31T17:40:33.600 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 31/150 2026-03-31T17:40:33.603 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 32/150 2026-03-31T17:40:33.634 INFO:teuthology.orchestra.run.vm07.stdout:(32/148): ceph-mgr-k8sevents-20.2.0-721.g5bb327 185 kB/s | 22 kB 00:00 2026-03-31T17:40:33.641 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 33/150 2026-03-31T17:40:33.648 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 34/150 2026-03-31T17:40:33.658 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9 35/150 2026-03-31T17:40:33.665 INFO:teuthology.orchestra.run.vm07.stdout:(33/148): ceph-mgr-diskprediction-local-20.2.0- 8.9 MB/s | 7.4 MB 00:00 2026-03-31T17:40:33.678 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 36/150 2026-03-31T17:40:33.686 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 37/150 2026-03-31T17:40:33.716 INFO:teuthology.orchestra.run.vm02.stdout: Installing : zip-3.0-35.el9.x86_64 38/150 2026-03-31T17:40:33.721 INFO:teuthology.orchestra.run.vm02.stdout: Installing : luarocks-3.9.2-5.el9.noarch 39/150 2026-03-31T17:40:33.729 INFO:teuthology.orchestra.run.vm02.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 40/150 2026-03-31T17:40:33.756 INFO:teuthology.orchestra.run.vm07.stdout:(34/148): ceph-mgr-modules-core-20.2.0-721.g5bb 2.3 MB/s | 290 kB 00:00 2026-03-31T17:40:33.782 INFO:teuthology.orchestra.run.vm07.stdout:(35/148): ceph-mgr-rook-20.2.0-721.g5bb32787.el 431 kB/s | 50 kB 00:00 2026-03-31T17:40:33.788 INFO:teuthology.orchestra.run.vm02.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 41/150 2026-03-31T17:40:33.805 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyasn1-modules-0.4.8-7.el9.noarch 42/150 2026-03-31T17:40:33.809 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rsa-4.9-2.el9.noarch 43/150 2026-03-31T17:40:33.815 INFO:teuthology.orchestra.run.vm02.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 44/150 2026-03-31T17:40:33.834 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 45/150 2026-03-31T17:40:33.842 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 46/150 2026-03-31T17:40:33.848 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 47/150 2026-03-31T17:40:33.857 INFO:teuthology.orchestra.run.vm02.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 48/150 2026-03-31T17:40:33.865 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 49/150 2026-03-31T17:40:33.870 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 50/150 2026-03-31T17:40:33.875 INFO:teuthology.orchestra.run.vm07.stdout:(36/148): ceph-prometheus-alerts-20.2.0-721.g5b 146 kB/s | 17 kB 00:00 2026-03-31T17:40:33.889 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 51/150 2026-03-31T17:40:33.896 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 52/150 2026-03-31T17:40:33.901 INFO:teuthology.orchestra.run.vm07.stdout:(37/148): ceph-volume-20.2.0-721.g5bb32787.el9. 2.4 MB/s | 298 kB 00:00 2026-03-31T17:40:33.903 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 53/150 2026-03-31T17:40:33.918 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 54/150 2026-03-31T17:40:33.931 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 55/150 2026-03-31T17:40:33.939 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 56/150 2026-03-31T17:40:33.959 INFO:teuthology.orchestra.run.vm06.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 92/150 2026-03-31T17:40:33.966 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 57/150 2026-03-31T17:40:33.982 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 58/150 2026-03-31T17:40:34.004 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 59/150 2026-03-31T17:40:34.006 INFO:teuthology.orchestra.run.vm07.stdout:(38/148): cephadm-20.2.0-721.g5bb32787.el9.noar 7.7 MB/s | 1.0 MB 00:00 2026-03-31T17:40:34.012 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 60/150 2026-03-31T17:40:34.017 INFO:teuthology.orchestra.run.vm07.stdout:(39/148): bzip2-1.0.8-11.el9.x86_64.rpm 474 kB/s | 55 kB 00:00 2026-03-31T17:40:34.023 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 61/150 2026-03-31T17:40:34.059 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 93/150 2026-03-31T17:40:34.076 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 62/150 2026-03-31T17:40:34.212 INFO:teuthology.orchestra.run.vm07.stdout:(40/148): cryptsetup-2.8.1-3.el9.x86_64.rpm 1.7 MB/s | 351 kB 00:00 2026-03-31T17:40:34.240 INFO:teuthology.orchestra.run.vm07.stdout:(41/148): ledmon-libs-1.1.0-3.el9.x86_64.rpm 1.4 MB/s | 40 kB 00:00 2026-03-31T17:40:34.330 INFO:teuthology.orchestra.run.vm07.stdout:(42/148): libconfig-1.7.2-9.el9.x86_64.rpm 806 kB/s | 72 kB 00:00 2026-03-31T17:40:34.433 INFO:teuthology.orchestra.run.vm07.stdout:(43/148): libgfortran-11.5.0-14.el9.x86_64.rpm 7.6 MB/s | 794 kB 00:00 2026-03-31T17:40:34.476 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 63/150 2026-03-31T17:40:34.481 INFO:teuthology.orchestra.run.vm07.stdout:(44/148): fuse-2.9.9-17.el9.x86_64.rpm 172 kB/s | 80 kB 00:00 2026-03-31T17:40:34.493 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 64/150 2026-03-31T17:40:34.495 INFO:teuthology.orchestra.run.vm07.stdout:(45/148): libquadmath-11.5.0-14.el9.x86_64.rpm 2.9 MB/s | 184 kB 00:00 2026-03-31T17:40:34.499 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 65/150 2026-03-31T17:40:34.507 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 66/150 2026-03-31T17:40:34.512 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 67/150 2026-03-31T17:40:34.519 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 68/150 2026-03-31T17:40:34.523 INFO:teuthology.orchestra.run.vm07.stdout:(46/148): pciutils-3.7.0-7.el9.x86_64.rpm 3.3 MB/s | 93 kB 00:00 2026-03-31T17:40:34.524 INFO:teuthology.orchestra.run.vm02.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 69/150 2026-03-31T17:40:34.526 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 70/150 2026-03-31T17:40:34.556 INFO:teuthology.orchestra.run.vm02.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 71/150 2026-03-31T17:40:34.570 INFO:teuthology.orchestra.run.vm07.stdout:(47/148): python3-cffi-1.14.5-5.el9.x86_64.rpm 5.4 MB/s | 253 kB 00:00 2026-03-31T17:40:34.611 INFO:teuthology.orchestra.run.vm02.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 72/150 2026-03-31T17:40:34.622 INFO:teuthology.orchestra.run.vm07.stdout:(48/148): python3-cryptography-36.0.1-5.el9.x86 24 MB/s | 1.2 MB 00:00 2026-03-31T17:40:34.624 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 73/150 2026-03-31T17:40:34.632 INFO:teuthology.orchestra.run.vm02.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 74/150 2026-03-31T17:40:34.638 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 75/150 2026-03-31T17:40:34.645 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 76/150 2026-03-31T17:40:34.650 INFO:teuthology.orchestra.run.vm07.stdout:(49/148): python3-ply-3.11-14.el9.noarch.rpm 3.8 MB/s | 106 kB 00:00 2026-03-31T17:40:34.651 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 77/150 2026-03-31T17:40:34.660 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 78/150 2026-03-31T17:40:34.681 INFO:teuthology.orchestra.run.vm07.stdout:(50/148): python3-pycparser-2.20-6.el9.noarch.r 4.2 MB/s | 135 kB 00:00 2026-03-31T17:40:34.685 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 79/150 2026-03-31T17:40:34.709 INFO:teuthology.orchestra.run.vm07.stdout:(51/148): python3-requests-2.25.1-10.el9.noarch 4.4 MB/s | 126 kB 00:00 2026-03-31T17:40:34.719 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 80/150 2026-03-31T17:40:34.731 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 81/150 2026-03-31T17:40:34.740 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 82/150 2026-03-31T17:40:34.750 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 83/150 2026-03-31T17:40:34.785 INFO:teuthology.orchestra.run.vm07.stdout:(52/148): python3-urllib3-1.26.5-7.el9.noarch.r 2.8 MB/s | 218 kB 00:00 2026-03-31T17:40:34.795 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 84/150 2026-03-31T17:40:34.860 INFO:teuthology.orchestra.run.vm07.stdout:(53/148): smartmontools-7.2-10.el9.x86_64.rpm 7.4 MB/s | 556 kB 00:00 2026-03-31T17:40:34.889 INFO:teuthology.orchestra.run.vm07.stdout:(54/148): unzip-6.0-59.el9.x86_64.rpm 6.1 MB/s | 182 kB 00:00 2026-03-31T17:40:34.892 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 94/150 2026-03-31T17:40:34.916 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 95/150 2026-03-31T17:40:34.920 INFO:teuthology.orchestra.run.vm07.stdout:(55/148): zip-3.0-35.el9.x86_64.rpm 8.4 MB/s | 266 kB 00:00 2026-03-31T17:40:34.924 INFO:teuthology.orchestra.run.vm06.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 96/150 2026-03-31T17:40:34.995 INFO:teuthology.orchestra.run.vm07.stdout:(56/148): mailcap-2.1.49-5.el9.noarch.rpm 65 kB/s | 33 kB 00:00 2026-03-31T17:40:35.071 INFO:teuthology.orchestra.run.vm07.stdout:(57/148): boost-program-options-1.75.0-13.el9.x 692 kB/s | 104 kB 00:00 2026-03-31T17:40:35.087 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 85/150 2026-03-31T17:40:35.095 INFO:teuthology.orchestra.run.vm07.stdout:(58/148): flexiblas-3.0.4-9.el9.x86_64.rpm 297 kB/s | 30 kB 00:00 2026-03-31T17:40:35.117 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 86/150 2026-03-31T17:40:35.122 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 87/150 2026-03-31T17:40:35.125 INFO:teuthology.orchestra.run.vm02.stdout: Installing : perl-Benchmark-1.23-483.el9.noarch 88/150 2026-03-31T17:40:35.145 INFO:teuthology.orchestra.run.vm07.stdout:(59/148): flexiblas-openblas-openmp-3.0.4-9.el9 298 kB/s | 15 kB 00:00 2026-03-31T17:40:35.189 INFO:teuthology.orchestra.run.vm02.stdout: Installing : openblas-0.3.29-1.el9.x86_64 89/150 2026-03-31T17:40:35.191 INFO:teuthology.orchestra.run.vm02.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 90/150 2026-03-31T17:40:35.215 INFO:teuthology.orchestra.run.vm02.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 91/150 2026-03-31T17:40:35.221 INFO:teuthology.orchestra.run.vm07.stdout:(60/148): libnbd-1.20.3-4.el9.x86_64.rpm 2.1 MB/s | 164 kB 00:00 2026-03-31T17:40:35.243 INFO:teuthology.orchestra.run.vm06.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 97/150 2026-03-31T17:40:35.246 INFO:teuthology.orchestra.run.vm06.stdout: Installing : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 98/150 2026-03-31T17:40:35.263 INFO:teuthology.orchestra.run.vm07.stdout:(61/148): libpmemobj-1.12.1-1.el9.x86_64.rpm 3.8 MB/s | 160 kB 00:00 2026-03-31T17:40:35.270 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 98/150 2026-03-31T17:40:35.272 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 99/150 2026-03-31T17:40:35.303 INFO:teuthology.orchestra.run.vm07.stdout:(62/148): flexiblas-netlib-3.0.4-9.el9.x86_64.r 13 MB/s | 3.0 MB 00:00 2026-03-31T17:40:35.304 INFO:teuthology.orchestra.run.vm07.stdout:(63/148): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.1 MB/s | 45 kB 00:00 2026-03-31T17:40:35.357 INFO:teuthology.orchestra.run.vm07.stdout:(64/148): libstoragemgmt-1.10.1-1.el9.x86_64.rp 4.6 MB/s | 246 kB 00:00 2026-03-31T17:40:35.363 INFO:teuthology.orchestra.run.vm07.stdout:(65/148): librdkafka-1.6.1-102.el9.x86_64.rpm 11 MB/s | 662 kB 00:00 2026-03-31T17:40:35.389 INFO:teuthology.orchestra.run.vm07.stdout:(66/148): lttng-ust-2.12.0-6.el9.x86_64.rpm 11 MB/s | 292 kB 00:00 2026-03-31T17:40:35.391 INFO:teuthology.orchestra.run.vm07.stdout:(67/148): libxslt-1.1.34-12.el9.x86_64.rpm 6.6 MB/s | 233 kB 00:00 2026-03-31T17:40:35.420 INFO:teuthology.orchestra.run.vm07.stdout:(68/148): lua-5.4.4-4.el9.x86_64.rpm 6.0 MB/s | 188 kB 00:00 2026-03-31T17:40:35.429 INFO:teuthology.orchestra.run.vm07.stdout:(69/148): openblas-0.3.29-1.el9.x86_64.rpm 1.1 MB/s | 42 kB 00:00 2026-03-31T17:40:35.458 INFO:teuthology.orchestra.run.vm07.stdout:(70/148): perl-Benchmark-1.23-483.el9.noarch.rp 918 kB/s | 26 kB 00:00 2026-03-31T17:40:35.500 INFO:teuthology.orchestra.run.vm07.stdout:(71/148): perl-Test-Harness-3.42-461.el9.noarch 7.0 MB/s | 295 kB 00:00 2026-03-31T17:40:35.546 INFO:teuthology.orchestra.run.vm07.stdout:(72/148): openblas-openmp-0.3.29-1.el9.x86_64.r 42 MB/s | 5.3 MB 00:00 2026-03-31T17:40:35.585 INFO:teuthology.orchestra.run.vm07.stdout:(73/148): protobuf-3.14.0-17.el9.x86_64.rpm 12 MB/s | 1.0 MB 00:00 2026-03-31T17:40:35.609 INFO:teuthology.orchestra.run.vm02.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 92/150 2026-03-31T17:40:35.654 INFO:teuthology.orchestra.run.vm07.stdout:(74/148): python3-devel-3.9.25-3.el9.x86_64.rpm 3.4 MB/s | 244 kB 00:00 2026-03-31T17:40:35.670 INFO:teuthology.orchestra.run.vm07.stdout:(75/148): python3-babel-2.9.1-2.el9.noarch.rpm 48 MB/s | 6.0 MB 00:00 2026-03-31T17:40:35.697 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 93/150 2026-03-31T17:40:35.697 INFO:teuthology.orchestra.run.vm07.stdout:(76/148): python3-jinja2-2.11.3-8.el9.noarch.rp 5.7 MB/s | 249 kB 00:00 2026-03-31T17:40:35.698 INFO:teuthology.orchestra.run.vm07.stdout:(77/148): python3-jmespath-1.0.1-1.el9.noarch.r 1.7 MB/s | 48 kB 00:00 2026-03-31T17:40:35.724 INFO:teuthology.orchestra.run.vm07.stdout:(78/148): python3-libstoragemgmt-1.10.1-1.el9.x 6.5 MB/s | 177 kB 00:00 2026-03-31T17:40:35.769 INFO:teuthology.orchestra.run.vm07.stdout:(79/148): python3-lxml-4.6.5-3.el9.x86_64.rpm 17 MB/s | 1.2 MB 00:00 2026-03-31T17:40:35.769 INFO:teuthology.orchestra.run.vm07.stdout:(80/148): python3-markupsafe-1.1.1-12.el9.x86_6 768 kB/s | 35 kB 00:00 2026-03-31T17:40:35.831 INFO:teuthology.orchestra.run.vm07.stdout:(81/148): python3-numpy-f2py-1.23.5-2.el9.x86_6 7.0 MB/s | 442 kB 00:00 2026-03-31T17:40:35.856 INFO:teuthology.orchestra.run.vm07.stdout:(82/148): python3-packaging-20.9-5.el9.noarch.r 3.2 MB/s | 77 kB 00:00 2026-03-31T17:40:35.920 INFO:teuthology.orchestra.run.vm07.stdout:(83/148): python3-protobuf-3.14.0-17.el9.noarch 4.1 MB/s | 267 kB 00:00 2026-03-31T17:40:35.964 INFO:teuthology.orchestra.run.vm07.stdout:(84/148): python3-pyasn1-0.4.8-7.el9.noarch.rpm 3.5 MB/s | 157 kB 00:00 2026-03-31T17:40:36.044 INFO:teuthology.orchestra.run.vm07.stdout:(85/148): python3-pyasn1-modules-0.4.8-7.el9.no 3.4 MB/s | 277 kB 00:00 2026-03-31T17:40:36.239 INFO:teuthology.orchestra.run.vm07.stdout:(86/148): ceph-test-20.2.0-721.g5bb32787.el9.x8 14 MB/s | 84 MB 00:05 2026-03-31T17:40:36.239 INFO:teuthology.orchestra.run.vm07.stdout:(87/148): python3-requests-oauthlib-1.3.0-12.el 275 kB/s | 54 kB 00:00 2026-03-31T17:40:36.254 INFO:teuthology.orchestra.run.vm07.stdout:(88/148): python3-numpy-1.23.5-2.el9.x86_64.rpm 13 MB/s | 6.1 MB 00:00 2026-03-31T17:40:36.267 INFO:teuthology.orchestra.run.vm07.stdout:(89/148): python3-toml-0.10.2-6.el9.noarch.rpm 1.5 MB/s | 42 kB 00:00 2026-03-31T17:40:36.280 INFO:teuthology.orchestra.run.vm07.stdout:(90/148): qatlib-25.08.0-2.el9.x86_64.rpm 8.9 MB/s | 240 kB 00:00 2026-03-31T17:40:36.294 INFO:teuthology.orchestra.run.vm07.stdout:(91/148): qatlib-service-25.08.0-2.el9.x86_64.r 1.4 MB/s | 37 kB 00:00 2026-03-31T17:40:36.304 INFO:teuthology.orchestra.run.vm07.stdout:(92/148): qatzip-libs-1.3.1-1.el9.x86_64.rpm 2.8 MB/s | 66 kB 00:00 2026-03-31T17:40:36.322 INFO:teuthology.orchestra.run.vm07.stdout:(93/148): socat-1.7.4.1-8.el9.x86_64.rpm 11 MB/s | 303 kB 00:00 2026-03-31T17:40:36.331 INFO:teuthology.orchestra.run.vm07.stdout:(94/148): xmlsec1-1.2.29-13.el9.x86_64.rpm 6.9 MB/s | 189 kB 00:00 2026-03-31T17:40:36.348 INFO:teuthology.orchestra.run.vm07.stdout:(95/148): xmlsec1-openssl-1.2.29-13.el9.x86_64. 3.4 MB/s | 90 kB 00:00 2026-03-31T17:40:36.355 INFO:teuthology.orchestra.run.vm07.stdout:(96/148): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.6 MB/s | 64 kB 00:00 2026-03-31T17:40:36.489 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 94/150 2026-03-31T17:40:36.514 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 95/150 2026-03-31T17:40:36.519 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:36.522 INFO:teuthology.orchestra.run.vm02.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 96/150 2026-03-31T17:40:36.523 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:36.550 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:36.553 INFO:teuthology.orchestra.run.vm06.stdout: Installing : smartmontools-1:7.2-10.el9.x86_64 101/150 2026-03-31T17:40:36.559 INFO:teuthology.orchestra.run.vm07.stdout:(97/148): lua-devel-5.4.4-4.el9.x86_64.rpm 106 kB/s | 22 kB 00:00 2026-03-31T17:40:36.567 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 101/150 2026-03-31T17:40:36.567 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/smartd.service → /usr/lib/systemd/system/smartd.service. 2026-03-31T17:40:36.567 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:36.581 INFO:teuthology.orchestra.run.vm07.stdout:(98/148): abseil-cpp-20211102.0-4.el9.x86_64.rp 26 MB/s | 551 kB 00:00 2026-03-31T17:40:36.592 INFO:teuthology.orchestra.run.vm07.stdout:(99/148): gperftools-libs-2.9.1-3.el9.x86_64.rp 28 MB/s | 308 kB 00:00 2026-03-31T17:40:36.592 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-ply-3.11-14.el9.noarch 102/150 2026-03-31T17:40:36.596 INFO:teuthology.orchestra.run.vm07.stdout:(100/148): grpc-data-1.46.7-10.el9.noarch.rpm 4.7 MB/s | 19 kB 00:00 2026-03-31T17:40:36.614 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 103/150 2026-03-31T17:40:36.682 INFO:teuthology.orchestra.run.vm07.stdout:(101/148): libarrow-9.0.0-15.el9.x86_64.rpm 51 MB/s | 4.4 MB 00:00 2026-03-31T17:40:36.685 INFO:teuthology.orchestra.run.vm07.stdout:(102/148): libarrow-doc-9.0.0-15.el9.noarch.rpm 11 MB/s | 25 kB 00:00 2026-03-31T17:40:36.688 INFO:teuthology.orchestra.run.vm07.stdout:(103/148): liboath-2.6.12-1.el9.x86_64.rpm 16 MB/s | 49 kB 00:00 2026-03-31T17:40:36.691 INFO:teuthology.orchestra.run.vm07.stdout:(104/148): libunwind-1.6.2-1.el9.x86_64.rpm 23 MB/s | 67 kB 00:00 2026-03-31T17:40:36.697 INFO:teuthology.orchestra.run.vm07.stdout:(105/148): luarocks-3.9.2-5.el9.noarch.rpm 27 MB/s | 151 kB 00:00 2026-03-31T17:40:36.704 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 104/150 2026-03-31T17:40:36.716 INFO:teuthology.orchestra.run.vm07.stdout:(106/148): parquet-libs-9.0.0-15.el9.x86_64.rpm 42 MB/s | 838 kB 00:00 2026-03-31T17:40:36.718 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 105/150 2026-03-31T17:40:36.726 INFO:teuthology.orchestra.run.vm07.stdout:(107/148): python3-asyncssh-2.13.2-5.el9.noarch 58 MB/s | 548 kB 00:00 2026-03-31T17:40:36.728 INFO:teuthology.orchestra.run.vm07.stdout:(108/148): python3-autocommand-2.2.2-8.el9.noar 14 MB/s | 29 kB 00:00 2026-03-31T17:40:36.731 INFO:teuthology.orchestra.run.vm07.stdout:(109/148): python3-backports-tarfile-1.2.0-1.el 22 MB/s | 60 kB 00:00 2026-03-31T17:40:36.734 INFO:teuthology.orchestra.run.vm07.stdout:(110/148): python3-bcrypt-3.2.2-1.el9.x86_64.rp 16 MB/s | 43 kB 00:00 2026-03-31T17:40:36.736 INFO:teuthology.orchestra.run.vm07.stdout:(111/148): python3-cachetools-4.2.4-1.el9.noarc 13 MB/s | 32 kB 00:00 2026-03-31T17:40:36.739 INFO:teuthology.orchestra.run.vm07.stdout:(112/148): python3-certifi-2023.05.07-4.el9.noa 6.2 MB/s | 14 kB 00:00 2026-03-31T17:40:36.744 INFO:teuthology.orchestra.run.vm07.stdout:(113/148): python3-cheroot-10.0.1-5.el9.noarch. 38 MB/s | 173 kB 00:00 2026-03-31T17:40:36.747 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 106/150 2026-03-31T17:40:36.753 INFO:teuthology.orchestra.run.vm07.stdout:(114/148): python3-cherrypy-18.10.0-5.el9.noarc 32 MB/s | 290 kB 00:00 2026-03-31T17:40:36.764 INFO:teuthology.orchestra.run.vm07.stdout:(115/148): python3-google-auth-2.45.0-1.el9.noa 23 MB/s | 254 kB 00:00 2026-03-31T17:40:36.784 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-cheroot-10.0.1-5.el9.noarch 107/150 2026-03-31T17:40:36.816 INFO:teuthology.orchestra.run.vm07.stdout:(116/148): python3-scipy-1.9.3-2.el9.x86_64.rpm 33 MB/s | 19 MB 00:00 2026-03-31T17:40:36.836 INFO:teuthology.orchestra.run.vm07.stdout:(117/148): python3-grpcio-1.46.7-10.el9.x86_64. 29 MB/s | 2.0 MB 00:00 2026-03-31T17:40:36.837 INFO:teuthology.orchestra.run.vm07.stdout:(118/148): python3-grpcio-tools-1.46.7-10.el9.x 6.7 MB/s | 144 kB 00:00 2026-03-31T17:40:36.839 INFO:teuthology.orchestra.run.vm02.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 97/150 2026-03-31T17:40:36.839 INFO:teuthology.orchestra.run.vm07.stdout:(119/148): python3-influxdb-5.3.1-1.el9.noarch. 37 MB/s | 139 kB 00:00 2026-03-31T17:40:36.841 INFO:teuthology.orchestra.run.vm07.stdout:(120/148): python3-isodate-0.6.1-3.el9.noarch.r 13 MB/s | 56 kB 00:00 2026-03-31T17:40:36.842 INFO:teuthology.orchestra.run.vm02.stdout: Installing : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 98/150 2026-03-31T17:40:36.844 INFO:teuthology.orchestra.run.vm07.stdout:(121/148): python3-jaraco-classes-3.2.1-5.el9.n 8.1 MB/s | 18 kB 00:00 2026-03-31T17:40:36.846 INFO:teuthology.orchestra.run.vm07.stdout:(122/148): python3-jaraco-collections-3.0.0-8.e 11 MB/s | 23 kB 00:00 2026-03-31T17:40:36.848 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-cherrypy-18.10.0-5.el9.noarch 108/150 2026-03-31T17:40:36.848 INFO:teuthology.orchestra.run.vm07.stdout:(123/148): python3-jaraco-context-6.0.1-3.el9.n 10 MB/s | 20 kB 00:00 2026-03-31T17:40:36.850 INFO:teuthology.orchestra.run.vm07.stdout:(124/148): python3-jaraco-functools-3.5.0-2.el9 8.9 MB/s | 19 kB 00:00 2026-03-31T17:40:36.852 INFO:teuthology.orchestra.run.vm07.stdout:(125/148): python3-jaraco-8.2.1-3.el9.noarch.rp 877 kB/s | 11 kB 00:00 2026-03-31T17:40:36.853 INFO:teuthology.orchestra.run.vm07.stdout:(126/148): python3-jaraco-text-4.0.0-2.el9.noar 9.5 MB/s | 26 kB 00:00 2026-03-31T17:40:36.859 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 109/150 2026-03-31T17:40:36.861 INFO:teuthology.orchestra.run.vm07.stdout:(127/148): python3-more-itertools-8.12.0-2.el9. 11 MB/s | 79 kB 00:00 2026-03-31T17:40:36.864 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 110/150 2026-03-31T17:40:36.864 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 98/150 2026-03-31T17:40:36.868 INFO:teuthology.orchestra.run.vm07.stdout:(128/148): python3-kubernetes-26.1.0-3.el9.noar 66 MB/s | 1.0 MB 00:00 2026-03-31T17:40:36.868 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 99/150 2026-03-31T17:40:36.870 INFO:teuthology.orchestra.run.vm07.stdout:(129/148): python3-msgpack-1.0.3-2.el9.x86_64.r 9.2 MB/s | 86 kB 00:00 2026-03-31T17:40:36.870 INFO:teuthology.orchestra.run.vm06.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 111/150 2026-03-31T17:40:36.871 INFO:teuthology.orchestra.run.vm07.stdout:(130/148): python3-natsort-7.1.1-5.el9.noarch.r 18 MB/s | 58 kB 00:00 2026-03-31T17:40:36.873 INFO:teuthology.orchestra.run.vm07.stdout:(131/148): python3-portend-3.1.0-2.el9.noarch.r 7.4 MB/s | 16 kB 00:00 2026-03-31T17:40:36.875 INFO:teuthology.orchestra.run.vm07.stdout:(132/148): python3-pyOpenSSL-21.0.0-1.el9.noarc 24 MB/s | 90 kB 00:00 2026-03-31T17:40:36.875 INFO:teuthology.orchestra.run.vm06.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 112/150 2026-03-31T17:40:36.875 INFO:teuthology.orchestra.run.vm07.stdout:(133/148): python3-repoze-lru-0.7-16.el9.noarch 12 MB/s | 31 kB 00:00 2026-03-31T17:40:36.877 INFO:teuthology.orchestra.run.vm06.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 113/150 2026-03-31T17:40:36.879 INFO:teuthology.orchestra.run.vm07.stdout:(134/148): python3-routes-2.5.1-5.el9.noarch.rp 43 MB/s | 188 kB 00:00 2026-03-31T17:40:36.881 INFO:teuthology.orchestra.run.vm07.stdout:(135/148): python3-rsa-4.9-2.el9.noarch.rpm 10 MB/s | 59 kB 00:00 2026-03-31T17:40:36.883 INFO:teuthology.orchestra.run.vm07.stdout:(136/148): python3-saml-1.16.0-1.el9.noarch.rpm 36 MB/s | 125 kB 00:00 2026-03-31T17:40:36.884 INFO:teuthology.orchestra.run.vm07.stdout:(137/148): python3-tempora-5.0.0-2.el9.noarch.r 13 MB/s | 36 kB 00:00 2026-03-31T17:40:36.887 INFO:teuthology.orchestra.run.vm07.stdout:(138/148): python3-typing-extensions-4.15.0-1.e 21 MB/s | 86 kB 00:00 2026-03-31T17:40:36.889 INFO:teuthology.orchestra.run.vm07.stdout:(139/148): python3-websocket-client-1.2.3-2.el9 17 MB/s | 90 kB 00:00 2026-03-31T17:40:36.890 INFO:teuthology.orchestra.run.vm07.stdout:(140/148): python3-xmlsec-1.3.13-1.el9.x86_64.r 15 MB/s | 48 kB 00:00 2026-03-31T17:40:36.892 INFO:teuthology.orchestra.run.vm07.stdout:(141/148): python3-zc-lockfile-2.0-10.el9.noarc 10 MB/s | 20 kB 00:00 2026-03-31T17:40:36.896 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 113/150 2026-03-31T17:40:36.897 INFO:teuthology.orchestra.run.vm07.stdout:(142/148): re2-20211101-20.el9.x86_64.rpm 46 MB/s | 191 kB 00:00 2026-03-31T17:40:36.897 INFO:teuthology.orchestra.run.vm07.stdout:(143/148): python3-xmltodict-0.12.0-15.el9.noar 2.8 MB/s | 22 kB 00:00 2026-03-31T17:40:36.902 INFO:teuthology.orchestra.run.vm07.stdout:(144/148): s3cmd-2.4.0-1.el9.noarch.rpm 41 MB/s | 206 kB 00:00 2026-03-31T17:40:36.929 INFO:teuthology.orchestra.run.vm07.stdout:(145/148): thrift-0.15.0-4.el9.x86_64.rpm 50 MB/s | 1.6 MB 00:00 2026-03-31T17:40:37.221 INFO:teuthology.orchestra.run.vm06.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 114/150 2026-03-31T17:40:37.286 INFO:teuthology.orchestra.run.vm07.stdout:(146/148): protobuf-compiler-3.14.0-17.el9.x86_ 925 kB/s | 862 kB 00:00 2026-03-31T17:40:37.288 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 115/150 2026-03-31T17:40:37.325 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 115/150 2026-03-31T17:40:37.325 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-03-31T17:40:37.325 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-03-31T17:40:37.325 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:37.330 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 116/150 2026-03-31T17:40:37.903 INFO:teuthology.orchestra.run.vm07.stdout:(147/148): librbd1-20.2.0-721.g5bb32787.el9.x86 2.9 MB/s | 2.8 MB 00:00 2026-03-31T17:40:37.987 INFO:teuthology.orchestra.run.vm07.stdout:(148/148): librados2-20.2.0-721.g5bb32787.el9.x 3.2 MB/s | 3.5 MB 00:01 2026-03-31T17:40:37.989 INFO:teuthology.orchestra.run.vm07.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:40:37.990 INFO:teuthology.orchestra.run.vm07.stdout:Total 22 MB/s | 269 MB 00:12 2026-03-31T17:40:38.122 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:38.127 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:38.155 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:38.158 INFO:teuthology.orchestra.run.vm02.stdout: Installing : smartmontools-1:7.2-10.el9.x86_64 101/150 2026-03-31T17:40:38.176 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 101/150 2026-03-31T17:40:38.176 INFO:teuthology.orchestra.run.vm02.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/smartd.service → /usr/lib/systemd/system/smartd.service. 2026-03-31T17:40:38.176 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:38.200 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-ply-3.11-14.el9.noarch 102/150 2026-03-31T17:40:38.222 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 103/150 2026-03-31T17:40:38.314 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 104/150 2026-03-31T17:40:38.387 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 105/150 2026-03-31T17:40:38.419 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 106/150 2026-03-31T17:40:38.460 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cheroot-10.0.1-5.el9.noarch 107/150 2026-03-31T17:40:38.529 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-cherrypy-18.10.0-5.el9.noarch 108/150 2026-03-31T17:40:38.539 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 109/150 2026-03-31T17:40:38.546 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 110/150 2026-03-31T17:40:38.552 INFO:teuthology.orchestra.run.vm02.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 111/150 2026-03-31T17:40:38.557 INFO:teuthology.orchestra.run.vm02.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 112/150 2026-03-31T17:40:38.558 INFO:teuthology.orchestra.run.vm02.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 113/150 2026-03-31T17:40:38.577 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 113/150 2026-03-31T17:40:38.617 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:40:38.676 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:40:38.676 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:40:38.903 INFO:teuthology.orchestra.run.vm02.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 114/150 2026-03-31T17:40:38.910 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 115/150 2026-03-31T17:40:38.954 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 115/150 2026-03-31T17:40:38.954 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-31T17:40:38.954 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-31T17:40:38.954 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:38.959 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 116/150 2026-03-31T17:40:39.693 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:40:39.693 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:40:40.788 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:40:40.797 INFO:teuthology.orchestra.run.vm07.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/150 2026-03-31T17:40:40.800 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 2/150 2026-03-31T17:40:40.811 INFO:teuthology.orchestra.run.vm07.stdout: Installing : liboath-2.6.12-1.el9.x86_64 3/150 2026-03-31T17:40:40.985 INFO:teuthology.orchestra.run.vm07.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 4/150 2026-03-31T17:40:40.987 INFO:teuthology.orchestra.run.vm07.stdout: Upgrading : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 5/150 2026-03-31T17:40:41.041 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 5/150 2026-03-31T17:40:41.043 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:41.058 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:41.061 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_ 7/150 2026-03-31T17:40:41.062 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 8/150 2026-03-31T17:40:41.094 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 8/150 2026-03-31T17:40:41.102 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 9/150 2026-03-31T17:40:41.114 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 10/150 2026-03-31T17:40:41.117 INFO:teuthology.orchestra.run.vm07.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 11/150 2026-03-31T17:40:41.122 INFO:teuthology.orchestra.run.vm07.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 12/150 2026-03-31T17:40:41.125 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 13/150 2026-03-31T17:40:41.130 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 14/150 2026-03-31T17:40:41.279 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 15/150 2026-03-31T17:40:41.281 INFO:teuthology.orchestra.run.vm07.stdout: Upgrading : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:41.334 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:41.342 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 17/150 2026-03-31T17:40:41.353 INFO:teuthology.orchestra.run.vm07.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 18/150 2026-03-31T17:40:41.354 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 19/150 2026-03-31T17:40:41.381 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 19/150 2026-03-31T17:40:41.382 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 20/150 2026-03-31T17:40:41.397 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 20/150 2026-03-31T17:40:41.430 INFO:teuthology.orchestra.run.vm07.stdout: Installing : re2-1:20211101-20.el9.x86_64 21/150 2026-03-31T17:40:41.454 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 22/150 2026-03-31T17:40:41.468 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-pyasn1-0.4.8-7.el9.noarch 23/150 2026-03-31T17:40:41.478 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-packaging-20.9-5.el9.noarch 24/150 2026-03-31T17:40:41.485 INFO:teuthology.orchestra.run.vm07.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 25/150 2026-03-31T17:40:41.490 INFO:teuthology.orchestra.run.vm07.stdout: Installing : lua-5.4.4-4.el9.x86_64 26/150 2026-03-31T17:40:41.495 INFO:teuthology.orchestra.run.vm07.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 27/150 2026-03-31T17:40:41.527 INFO:teuthology.orchestra.run.vm07.stdout: Installing : unzip-6.0-59.el9.x86_64 28/150 2026-03-31T17:40:41.544 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 29/150 2026-03-31T17:40:41.549 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 30/150 2026-03-31T17:40:41.556 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 31/150 2026-03-31T17:40:41.558 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 32/150 2026-03-31T17:40:41.596 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 33/150 2026-03-31T17:40:41.603 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 34/150 2026-03-31T17:40:41.613 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9 35/150 2026-03-31T17:40:41.627 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 36/150 2026-03-31T17:40:41.636 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 37/150 2026-03-31T17:40:41.665 INFO:teuthology.orchestra.run.vm07.stdout: Installing : zip-3.0-35.el9.x86_64 38/150 2026-03-31T17:40:41.670 INFO:teuthology.orchestra.run.vm07.stdout: Installing : luarocks-3.9.2-5.el9.noarch 39/150 2026-03-31T17:40:41.679 INFO:teuthology.orchestra.run.vm07.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 40/150 2026-03-31T17:40:41.737 INFO:teuthology.orchestra.run.vm07.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 41/150 2026-03-31T17:40:41.757 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-pyasn1-modules-0.4.8-7.el9.noarch 42/150 2026-03-31T17:40:41.762 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-rsa-4.9-2.el9.noarch 43/150 2026-03-31T17:40:41.767 INFO:teuthology.orchestra.run.vm07.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 44/150 2026-03-31T17:40:41.787 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 45/150 2026-03-31T17:40:41.794 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 46/150 2026-03-31T17:40:41.800 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 47/150 2026-03-31T17:40:41.810 INFO:teuthology.orchestra.run.vm07.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 48/150 2026-03-31T17:40:41.818 INFO:teuthology.orchestra.run.vm07.stdout: Installing : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 49/150 2026-03-31T17:40:41.822 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 50/150 2026-03-31T17:40:41.840 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 51/150 2026-03-31T17:40:41.847 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 52/150 2026-03-31T17:40:41.854 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 53/150 2026-03-31T17:40:41.868 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 54/150 2026-03-31T17:40:41.880 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 55/150 2026-03-31T17:40:41.889 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 56/150 2026-03-31T17:40:41.914 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 57/150 2026-03-31T17:40:41.932 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 58/150 2026-03-31T17:40:41.954 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 59/150 2026-03-31T17:40:41.961 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 60/150 2026-03-31T17:40:41.976 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 61/150 2026-03-31T17:40:42.028 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 62/150 2026-03-31T17:40:42.431 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 63/150 2026-03-31T17:40:42.511 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 64/150 2026-03-31T17:40:42.559 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 65/150 2026-03-31T17:40:42.587 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 66/150 2026-03-31T17:40:42.651 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 67/150 2026-03-31T17:40:42.769 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 68/150 2026-03-31T17:40:42.815 INFO:teuthology.orchestra.run.vm07.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 69/150 2026-03-31T17:40:42.817 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 70/150 2026-03-31T17:40:42.849 INFO:teuthology.orchestra.run.vm07.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 71/150 2026-03-31T17:40:42.901 INFO:teuthology.orchestra.run.vm07.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 72/150 2026-03-31T17:40:42.915 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 73/150 2026-03-31T17:40:42.923 INFO:teuthology.orchestra.run.vm07.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 74/150 2026-03-31T17:40:42.929 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 75/150 2026-03-31T17:40:42.936 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 76/150 2026-03-31T17:40:42.942 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 77/150 2026-03-31T17:40:42.951 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 78/150 2026-03-31T17:40:42.956 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 79/150 2026-03-31T17:40:42.991 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 80/150 2026-03-31T17:40:43.004 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 81/150 2026-03-31T17:40:43.014 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 82/150 2026-03-31T17:40:43.023 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 83/150 2026-03-31T17:40:43.072 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 84/150 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 116/150 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /sys 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /proc 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /mnt 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /var/tmp 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /home 2026-03-31T17:40:43.278 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /root 2026-03-31T17:40:43.279 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /tmp 2026-03-31T17:40:43.279 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:43.357 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 85/150 2026-03-31T17:40:43.397 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 117/150 2026-03-31T17:40:43.397 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 86/150 2026-03-31T17:40:43.401 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 87/150 2026-03-31T17:40:43.406 INFO:teuthology.orchestra.run.vm07.stdout: Installing : perl-Benchmark-1.23-483.el9.noarch 88/150 2026-03-31T17:40:43.424 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 117/150 2026-03-31T17:40:43.424 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:43.424 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-31T17:40:43.424 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-31T17:40:43.424 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-31T17:40:43.424 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:43.469 INFO:teuthology.orchestra.run.vm07.stdout: Installing : openblas-0.3.29-1.el9.x86_64 89/150 2026-03-31T17:40:43.472 INFO:teuthology.orchestra.run.vm07.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 90/150 2026-03-31T17:40:43.495 INFO:teuthology.orchestra.run.vm07.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 91/150 2026-03-31T17:40:43.666 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 118/150 2026-03-31T17:40:43.690 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 118/150 2026-03-31T17:40:43.690 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:43.690 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-31T17:40:43.690 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-31T17:40:43.690 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-31T17:40:43.690 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:43.700 INFO:teuthology.orchestra.run.vm06.stdout: Installing : mailcap-2.1.49-5.el9.noarch 119/150 2026-03-31T17:40:43.703 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 120/150 2026-03-31T17:40:43.726 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:43.726 INFO:teuthology.orchestra.run.vm06.stdout:Creating group 'qat' with GID 994. 2026-03-31T17:40:43.726 INFO:teuthology.orchestra.run.vm06.stdout:Creating group 'libstoragemgmt' with GID 993. 2026-03-31T17:40:43.726 INFO:teuthology.orchestra.run.vm06.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 993 and GID 993. 2026-03-31T17:40:43.726 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:43.736 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:43.771 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:43.771 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-03-31T17:40:43.771 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:43.793 INFO:teuthology.orchestra.run.vm06.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 122/150 2026-03-31T17:40:43.822 INFO:teuthology.orchestra.run.vm06.stdout: Installing : fuse-2.9.9-17.el9.x86_64 123/150 2026-03-31T17:40:43.879 INFO:teuthology.orchestra.run.vm07.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 92/150 2026-03-31T17:40:43.908 INFO:teuthology.orchestra.run.vm06.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 124/150 2026-03-31T17:40:43.913 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 125/150 2026-03-31T17:40:43.928 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 125/150 2026-03-31T17:40:43.928 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:43.928 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-31T17:40:43.928 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:43.974 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 93/150 2026-03-31T17:40:44.720 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 126/150 2026-03-31T17:40:44.750 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 126/150 2026-03-31T17:40:44.750 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:44.750 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-31T17:40:44.750 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-31T17:40:44.750 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-31T17:40:44.750 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:44.820 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 127/150 2026-03-31T17:40:44.823 INFO:teuthology.orchestra.run.vm06.stdout: Installing : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 127/150 2026-03-31T17:40:44.832 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 128/150 2026-03-31T17:40:44.840 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 94/150 2026-03-31T17:40:44.859 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 129/150 2026-03-31T17:40:44.863 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 130/150 2026-03-31T17:40:44.867 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 95/150 2026-03-31T17:40:44.877 INFO:teuthology.orchestra.run.vm07.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 96/150 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 116/150 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /sys 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /proc 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /mnt 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /var/tmp 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /home 2026-03-31T17:40:45.106 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /root 2026-03-31T17:40:45.107 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /tmp 2026-03-31T17:40:45.107 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:45.208 INFO:teuthology.orchestra.run.vm07.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 97/150 2026-03-31T17:40:45.211 INFO:teuthology.orchestra.run.vm07.stdout: Installing : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 98/150 2026-03-31T17:40:45.229 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 117/150 2026-03-31T17:40:45.234 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 98/150 2026-03-31T17:40:45.236 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 99/150 2026-03-31T17:40:45.256 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 117/150 2026-03-31T17:40:45.256 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:45.256 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-31T17:40:45.256 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-31T17:40:45.256 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-31T17:40:45.257 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:45.498 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 118/150 2026-03-31T17:40:45.519 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 118/150 2026-03-31T17:40:45.520 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:45.520 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-31T17:40:45.520 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-31T17:40:45.520 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-31T17:40:45.520 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:45.528 INFO:teuthology.orchestra.run.vm02.stdout: Installing : mailcap-2.1.49-5.el9.noarch 119/150 2026-03-31T17:40:45.531 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 120/150 2026-03-31T17:40:45.550 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:45.551 INFO:teuthology.orchestra.run.vm02.stdout:Creating group 'qat' with GID 994. 2026-03-31T17:40:45.551 INFO:teuthology.orchestra.run.vm02.stdout:Creating group 'libstoragemgmt' with GID 993. 2026-03-31T17:40:45.551 INFO:teuthology.orchestra.run.vm02.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 993 and GID 993. 2026-03-31T17:40:45.551 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:45.561 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:45.589 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:45.589 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-31T17:40:45.589 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:45.611 INFO:teuthology.orchestra.run.vm02.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 122/150 2026-03-31T17:40:45.638 INFO:teuthology.orchestra.run.vm02.stdout: Installing : fuse-2.9.9-17.el9.x86_64 123/150 2026-03-31T17:40:45.712 INFO:teuthology.orchestra.run.vm02.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 124/150 2026-03-31T17:40:45.717 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 125/150 2026-03-31T17:40:45.731 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 125/150 2026-03-31T17:40:45.731 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:45.731 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-31T17:40:45.731 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:46.159 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 130/150 2026-03-31T17:40:46.169 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 131/150 2026-03-31T17:40:46.487 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:46.517 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 126/150 2026-03-31T17:40:46.518 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:46.544 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 126/150 2026-03-31T17:40:46.544 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:46.544 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-31T17:40:46.544 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-31T17:40:46.544 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-31T17:40:46.544 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:46.549 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 100/150 2026-03-31T17:40:46.552 INFO:teuthology.orchestra.run.vm07.stdout: Installing : smartmontools-1:7.2-10.el9.x86_64 101/150 2026-03-31T17:40:46.568 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 101/150 2026-03-31T17:40:46.568 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/smartd.service → /usr/lib/systemd/system/smartd.service. 2026-03-31T17:40:46.568 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:46.597 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-ply-3.11-14.el9.noarch 102/150 2026-03-31T17:40:46.617 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 103/150 2026-03-31T17:40:46.618 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 127/150 2026-03-31T17:40:46.622 INFO:teuthology.orchestra.run.vm02.stdout: Installing : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 127/150 2026-03-31T17:40:46.631 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 128/150 2026-03-31T17:40:46.660 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 129/150 2026-03-31T17:40:46.664 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 130/150 2026-03-31T17:40:46.696 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 131/150 2026-03-31T17:40:46.698 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 132/150 2026-03-31T17:40:46.712 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 104/150 2026-03-31T17:40:46.716 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 132/150 2026-03-31T17:40:46.718 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 133/150 2026-03-31T17:40:46.726 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 105/150 2026-03-31T17:40:46.756 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 106/150 2026-03-31T17:40:46.788 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 133/150 2026-03-31T17:40:46.795 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-cheroot-10.0.1-5.el9.noarch 107/150 2026-03-31T17:40:46.838 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 134/150 2026-03-31T17:40:46.840 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 135/150 2026-03-31T17:40:46.857 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-cherrypy-18.10.0-5.el9.noarch 108/150 2026-03-31T17:40:46.862 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 135/150 2026-03-31T17:40:46.862 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:46.862 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-31T17:40:46.862 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-31T17:40:46.862 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-31T17:40:46.862 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:46.868 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 109/150 2026-03-31T17:40:46.876 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 110/150 2026-03-31T17:40:46.877 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 136/150 2026-03-31T17:40:46.884 INFO:teuthology.orchestra.run.vm07.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 111/150 2026-03-31T17:40:46.890 INFO:teuthology.orchestra.run.vm07.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 112/150 2026-03-31T17:40:46.891 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 136/150 2026-03-31T17:40:46.892 INFO:teuthology.orchestra.run.vm07.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 113/150 2026-03-31T17:40:46.912 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 113/150 2026-03-31T17:40:46.941 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 137/150 2026-03-31T17:40:47.259 INFO:teuthology.orchestra.run.vm07.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 114/150 2026-03-31T17:40:47.266 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 115/150 2026-03-31T17:40:47.326 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 115/150 2026-03-31T17:40:47.326 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-03-31T17:40:47.326 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-03-31T17:40:47.326 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:47.328 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 116/150 2026-03-31T17:40:47.922 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 130/150 2026-03-31T17:40:47.932 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 131/150 2026-03-31T17:40:48.116 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 138/150 2026-03-31T17:40:48.119 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 139/150 2026-03-31T17:40:48.143 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 139/150 2026-03-31T17:40:48.143 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:48.143 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-31T17:40:48.143 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-31T17:40:48.143 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-31T17:40:48.143 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:48.155 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 140/150 2026-03-31T17:40:48.178 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 140/150 2026-03-31T17:40:48.178 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:48.178 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-31T17:40:48.178 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:48.330 INFO:teuthology.orchestra.run.vm06.stdout: Installing : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 141/150 2026-03-31T17:40:48.352 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 141/150 2026-03-31T17:40:48.352 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:48.352 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-31T17:40:48.352 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-31T17:40:48.352 INFO:teuthology.orchestra.run.vm06.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-31T17:40:48.353 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:48.455 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 131/150 2026-03-31T17:40:48.458 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 132/150 2026-03-31T17:40:48.474 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 132/150 2026-03-31T17:40:48.476 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 133/150 2026-03-31T17:40:48.545 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 133/150 2026-03-31T17:40:48.608 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 134/150 2026-03-31T17:40:48.611 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 135/150 2026-03-31T17:40:48.635 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 135/150 2026-03-31T17:40:48.636 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:48.636 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-31T17:40:48.636 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-31T17:40:48.636 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-31T17:40:48.636 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:48.651 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 136/150 2026-03-31T17:40:48.665 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 136/150 2026-03-31T17:40:48.711 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 137/150 2026-03-31T17:40:49.888 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 138/150 2026-03-31T17:40:49.891 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 139/150 2026-03-31T17:40:49.914 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 139/150 2026-03-31T17:40:49.914 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:49.914 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-31T17:40:49.914 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-31T17:40:49.914 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-31T17:40:49.914 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:49.926 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 140/150 2026-03-31T17:40:49.946 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 140/150 2026-03-31T17:40:49.947 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:49.947 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-31T17:40:49.947 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:50.086 INFO:teuthology.orchestra.run.vm02.stdout: Installing : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 141/150 2026-03-31T17:40:50.109 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 141/150 2026-03-31T17:40:50.109 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:50.109 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-31T17:40:50.109 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-31T17:40:50.109 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-31T17:40:50.109 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:52.663 INFO:teuthology.orchestra.run.vm06.stdout: Installing : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 142/150 2026-03-31T17:40:52.701 INFO:teuthology.orchestra.run.vm06.stdout: Installing : perl-Test-Harness-1:3.42-461.el9.noarch 143/150 2026-03-31T17:40:52.730 INFO:teuthology.orchestra.run.vm06.stdout: Installing : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_6 144/150 2026-03-31T17:40:52.759 INFO:teuthology.orchestra.run.vm06.stdout: Installing : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 145/150 2026-03-31T17:40:52.808 INFO:teuthology.orchestra.run.vm06.stdout: Installing : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 146/150 2026-03-31T17:40:52.899 INFO:teuthology.orchestra.run.vm06.stdout: Installing : s3cmd-2.4.0-1.el9.noarch 147/150 2026-03-31T17:40:52.926 INFO:teuthology.orchestra.run.vm06.stdout: Installing : bzip2-1.0.8-11.el9.x86_64 148/150 2026-03-31T17:40:52.926 INFO:teuthology.orchestra.run.vm06.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 149/150 2026-03-31T17:40:52.941 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 149/150 2026-03-31T17:40:52.942 INFO:teuthology.orchestra.run.vm06.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:40:53.362 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 116/150 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /sys 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /proc 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /mnt 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /var/tmp 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /home 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /root 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /tmp 2026-03-31T17:40:53.363 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:53.489 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 117/150 2026-03-31T17:40:53.525 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 117/150 2026-03-31T17:40:53.525 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:53.525 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-31T17:40:53.525 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-31T17:40:53.525 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-03-31T17:40:53.525 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:53.832 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 118/150 2026-03-31T17:40:53.853 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 118/150 2026-03-31T17:40:53.853 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:53.853 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-31T17:40:53.853 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-31T17:40:53.853 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-03-31T17:40:53.853 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:53.921 INFO:teuthology.orchestra.run.vm07.stdout: Installing : mailcap-2.1.49-5.el9.noarch 119/150 2026-03-31T17:40:54.081 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 120/150 2026-03-31T17:40:54.172 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:54.172 INFO:teuthology.orchestra.run.vm07.stdout:Creating group 'qat' with GID 994. 2026-03-31T17:40:54.172 INFO:teuthology.orchestra.run.vm07.stdout:Creating group 'libstoragemgmt' with GID 993. 2026-03-31T17:40:54.172 INFO:teuthology.orchestra.run.vm07.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 993 and GID 993. 2026-03-31T17:40:54.172 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:54.275 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:54.307 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 121/150 2026-03-31T17:40:54.307 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-03-31T17:40:54.307 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 3/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 4/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 5/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 7/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/150 2026-03-31T17:40:54.328 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 9/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 10/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 11/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 12/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_ 13/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_6 14/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 15/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 17/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 18/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 19/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 20/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9 21/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 22/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 23/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 24/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 25/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 26/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 27/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 28/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 29/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 30/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 31/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 32/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 33/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 34/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 35/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 36/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 37/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 38/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 39/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : bzip2-1.0.8-11.el9.x86_64 40/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 41/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : fuse-2.9.9-17.el9.x86_64 42/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 43/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 44/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 45/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 46/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 47/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 48/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 49/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 50/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-ply-3.11-14.el9.noarch 51/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 52/150 2026-03-31T17:40:54.329 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 53/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 54/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : smartmontools-1:7.2-10.el9.x86_64 55/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : unzip-6.0-59.el9.x86_64 56/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : zip-3.0-35.el9.x86_64 57/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 58/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 59/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 60/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 61/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 62/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 63/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 64/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 65/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 66/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 67/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 68/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : lua-5.4.4-4.el9.x86_64 69/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 70/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 71/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : perl-Benchmark-1.23-483.el9.noarch 72/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : perl-Test-Harness-1:3.42-461.el9.noarch 73/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 74/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 75/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 76/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 77/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 78/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 79/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 80/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 81/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 82/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 83/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 84/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 85/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 86/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 87/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 88/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 89/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 90/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 91/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 92/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 93/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 94/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 95/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 96/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 97/150 2026-03-31T17:40:54.330 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 98/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 99/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 100/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 101/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 102/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 103/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 104/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 105/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 106/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 107/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 108/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 109/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 110/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 111/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 112/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 113/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 114/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cheroot-10.0.1-5.el9.noarch 115/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cherrypy-18.10.0-5.el9.noarch 116/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 117/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 118/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 119/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 120/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 121/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 122/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 123/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 124/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 125/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 126/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 127/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 128/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 129/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 130/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 131/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 132/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 133/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 134/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 135/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 136/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 137/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 138/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 139/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 140/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 141/150 2026-03-31T17:40:54.331 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 142/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 143/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : re2-1:20211101-20.el9.x86_64 144/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : s3cmd-2.4.0-1.el9.noarch 145/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 146/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 147/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 148/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 149/150 2026-03-31T17:40:54.332 INFO:teuthology.orchestra.run.vm07.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 122/150 2026-03-31T17:40:54.360 INFO:teuthology.orchestra.run.vm07.stdout: Installing : fuse-2.9.9-17.el9.x86_64 123/150 2026-03-31T17:40:54.430 INFO:teuthology.orchestra.run.vm02.stdout: Installing : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 142/150 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout:Upgraded: 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout:Installed: 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: bzip2-1.0.8-11.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: ceph-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.431 INFO:teuthology.orchestra.run.vm06.stdout: ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-immutable-object-cache-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: fuse-2.9.9-17.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: lua-5.4.4-4.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: mailcap-2.1.49-5.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: perl-Benchmark-1.23-483.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: perl-Test-Harness-1:3.42-461.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-31T17:40:54.432 INFO:teuthology.orchestra.run.vm06.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-cheroot-10.0.1-5.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-cherrypy-18.10.0-5.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-ply-3.11-14.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-saml-1.16.0-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.433 INFO:teuthology.orchestra.run.vm06.stdout: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: re2-1:20211101-20.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: s3cmd-2.4.0-1.el9.noarch 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: smartmontools-1:7.2-10.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: socat-1.7.4.1-8.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: unzip-6.0-59.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: zip-3.0-35.el9.x86_64 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:40:54.434 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:40:54.437 INFO:teuthology.orchestra.run.vm07.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 124/150 2026-03-31T17:40:54.440 INFO:teuthology.orchestra.run.vm02.stdout: Installing : perl-Test-Harness-1:3.42-461.el9.noarch 143/150 2026-03-31T17:40:54.442 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 125/150 2026-03-31T17:40:54.447 INFO:teuthology.orchestra.run.vm02.stdout: Installing : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_6 144/150 2026-03-31T17:40:54.457 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 125/150 2026-03-31T17:40:54.457 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:54.457 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-31T17:40:54.457 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:54.459 INFO:teuthology.orchestra.run.vm02.stdout: Installing : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 145/150 2026-03-31T17:40:54.478 INFO:teuthology.orchestra.run.vm02.stdout: Installing : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 146/150 2026-03-31T17:40:54.486 INFO:teuthology.orchestra.run.vm02.stdout: Installing : s3cmd-2.4.0-1.el9.noarch 147/150 2026-03-31T17:40:54.490 INFO:teuthology.orchestra.run.vm02.stdout: Installing : bzip2-1.0.8-11.el9.x86_64 148/150 2026-03-31T17:40:54.490 INFO:teuthology.orchestra.run.vm02.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 149/150 2026-03-31T17:40:54.507 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 149/150 2026-03-31T17:40:54.507 INFO:teuthology.orchestra.run.vm02.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:40:54.527 DEBUG:teuthology.parallel:result is None 2026-03-31T17:40:55.318 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 126/150 2026-03-31T17:40:55.341 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 126/150 2026-03-31T17:40:55.341 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:55.341 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-31T17:40:55.341 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-31T17:40:55.341 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-03-31T17:40:55.342 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:55.633 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 127/150 2026-03-31T17:40:55.666 INFO:teuthology.orchestra.run.vm07.stdout: Installing : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 127/150 2026-03-31T17:40:55.737 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 128/150 2026-03-31T17:40:55.817 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 129/150 2026-03-31T17:40:55.820 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 130/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 3/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 4/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 5/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:40:55.839 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 7/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 9/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 10/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 11/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 12/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_ 13/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_6 14/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 15/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 17/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 18/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 19/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 20/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9 21/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 22/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 23/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 24/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 25/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 26/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 27/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 28/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 29/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 30/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 31/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 32/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 33/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 34/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 35/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 36/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 37/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 38/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 39/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : bzip2-1.0.8-11.el9.x86_64 40/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 41/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : fuse-2.9.9-17.el9.x86_64 42/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 43/150 2026-03-31T17:40:55.840 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 44/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 45/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 46/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 47/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 48/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 49/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 50/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ply-3.11-14.el9.noarch 51/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 52/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 53/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 54/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : smartmontools-1:7.2-10.el9.x86_64 55/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : unzip-6.0-59.el9.x86_64 56/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : zip-3.0-35.el9.x86_64 57/150 2026-03-31T17:40:55.842 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 58/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 59/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 60/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 61/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 62/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 63/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 64/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 65/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 66/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 67/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 68/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-5.4.4-4.el9.x86_64 69/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 70/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 71/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : perl-Benchmark-1.23-483.el9.noarch 72/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : perl-Test-Harness-1:3.42-461.el9.noarch 73/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 74/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 75/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 76/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 77/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 78/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 79/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 80/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 81/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 82/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 83/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 84/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 85/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 86/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 87/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 88/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 89/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 90/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 91/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 92/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 93/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 94/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 95/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 96/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 97/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 98/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 99/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 100/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 101/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 102/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 103/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 104/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 105/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 106/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 107/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 108/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 109/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 110/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 111/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 112/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 113/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 114/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cheroot-10.0.1-5.el9.noarch 115/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cherrypy-18.10.0-5.el9.noarch 116/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 117/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 118/150 2026-03-31T17:40:55.843 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 119/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 120/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 121/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 122/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 123/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 124/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 125/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 126/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 127/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 128/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 129/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 130/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 131/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 132/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 133/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 134/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 135/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 136/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 137/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 138/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 139/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 140/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 141/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 142/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 143/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : re2-1:20211101-20.el9.x86_64 144/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : s3cmd-2.4.0-1.el9.noarch 145/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 146/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 147/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 148/150 2026-03-31T17:40:55.844 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 149/150 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout:Upgraded: 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout:Installed: 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: bzip2-1.0.8-11.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-31T17:40:55.943 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: fuse-2.9.9-17.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: lua-5.4.4-4.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: mailcap-2.1.49-5.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: perl-Benchmark-1.23-483.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: perl-Test-Harness-1:3.42-461.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot-10.0.1-5.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy-18.10.0-5.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-31T17:40:55.944 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply-3.11-14.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-saml-1.16.0-1.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: re2-1:20211101-20.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: s3cmd-2.4.0-1.el9.noarch 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: smartmontools-1:7.2-10.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: socat-1.7.4.1-8.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: unzip-6.0-59.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-31T17:40:55.945 INFO:teuthology.orchestra.run.vm02.stdout: zip-3.0-35.el9.x86_64 2026-03-31T17:40:55.946 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:40:55.946 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:40:56.036 DEBUG:teuthology.parallel:result is None 2026-03-31T17:40:57.094 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 130/150 2026-03-31T17:40:57.103 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 131/150 2026-03-31T17:40:57.622 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 131/150 2026-03-31T17:40:57.624 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 132/150 2026-03-31T17:40:57.638 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 132/150 2026-03-31T17:40:57.639 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 133/150 2026-03-31T17:40:57.706 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 133/150 2026-03-31T17:40:57.755 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 134/150 2026-03-31T17:40:57.757 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 135/150 2026-03-31T17:40:57.778 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 135/150 2026-03-31T17:40:57.778 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:57.778 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-31T17:40:57.778 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-31T17:40:57.778 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-03-31T17:40:57.778 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:57.792 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 136/150 2026-03-31T17:40:57.803 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 136/150 2026-03-31T17:40:57.847 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 137/150 2026-03-31T17:40:58.980 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 138/150 2026-03-31T17:40:58.983 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 139/150 2026-03-31T17:40:59.004 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 139/150 2026-03-31T17:40:59.004 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:59.004 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-31T17:40:59.004 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-31T17:40:59.004 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-03-31T17:40:59.004 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:59.016 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 140/150 2026-03-31T17:40:59.035 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 140/150 2026-03-31T17:40:59.035 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:59.035 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-31T17:40:59.036 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:40:59.175 INFO:teuthology.orchestra.run.vm07.stdout: Installing : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 141/150 2026-03-31T17:40:59.194 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 141/150 2026-03-31T17:40:59.194 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:40:59.194 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-31T17:40:59.194 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-31T17:40:59.194 INFO:teuthology.orchestra.run.vm07.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-03-31T17:40:59.194 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:41:03.217 INFO:teuthology.orchestra.run.vm07.stdout: Installing : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 142/150 2026-03-31T17:41:03.223 INFO:teuthology.orchestra.run.vm07.stdout: Installing : perl-Test-Harness-1:3.42-461.el9.noarch 143/150 2026-03-31T17:41:03.229 INFO:teuthology.orchestra.run.vm07.stdout: Installing : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_6 144/150 2026-03-31T17:41:03.239 INFO:teuthology.orchestra.run.vm07.stdout: Installing : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 145/150 2026-03-31T17:41:03.256 INFO:teuthology.orchestra.run.vm07.stdout: Installing : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 146/150 2026-03-31T17:41:03.263 INFO:teuthology.orchestra.run.vm07.stdout: Installing : s3cmd-2.4.0-1.el9.noarch 147/150 2026-03-31T17:41:03.266 INFO:teuthology.orchestra.run.vm07.stdout: Installing : bzip2-1.0.8-11.el9.x86_64 148/150 2026-03-31T17:41:03.266 INFO:teuthology.orchestra.run.vm07.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 149/150 2026-03-31T17:41:03.281 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 149/150 2026-03-31T17:41:03.281 INFO:teuthology.orchestra.run.vm07.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 3/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 4/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 5/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 6/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 7/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 9/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 10/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 11/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 12/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_ 13/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_6 14/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_ 15/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 16/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 17/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 18/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 19/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 20/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9 21/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 22/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 23/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 24/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 25/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 26/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 27/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 28/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 29/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 30/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 31/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 32/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 33/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 34/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 35/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 36/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 37/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 38/150 2026-03-31T17:41:04.522 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 39/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : bzip2-1.0.8-11.el9.x86_64 40/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 41/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : fuse-2.9.9-17.el9.x86_64 42/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 43/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 44/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 45/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 46/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 47/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 48/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 49/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 50/150 2026-03-31T17:41:04.524 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-ply-3.11-14.el9.noarch 51/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 52/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 53/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 54/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : smartmontools-1:7.2-10.el9.x86_64 55/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : unzip-6.0-59.el9.x86_64 56/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : zip-3.0-35.el9.x86_64 57/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 58/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 59/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 60/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 61/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 62/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 63/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 64/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 65/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 66/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 67/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 68/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : lua-5.4.4-4.el9.x86_64 69/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 70/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 71/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : perl-Benchmark-1.23-483.el9.noarch 72/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : perl-Test-Harness-1:3.42-461.el9.noarch 73/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 74/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 75/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 76/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 77/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 78/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 79/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 80/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 81/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 82/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 83/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 84/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 85/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 86/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 87/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 88/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 89/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 90/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 91/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 92/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 93/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 94/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 95/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 96/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 97/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 98/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 99/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 100/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 101/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 102/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 103/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 104/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 105/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 106/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 107/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 108/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 109/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 110/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 111/150 2026-03-31T17:41:04.525 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 112/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 113/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 114/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cheroot-10.0.1-5.el9.noarch 115/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cherrypy-18.10.0-5.el9.noarch 116/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 117/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 118/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 119/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 120/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 121/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 122/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 123/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 124/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 125/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 126/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 127/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 128/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 129/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 130/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 131/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 132/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 133/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 134/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 135/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 136/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 137/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 138/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 139/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 140/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 141/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 142/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 143/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : re2-1:20211101-20.el9.x86_64 144/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : s3cmd-2.4.0-1.el9.noarch 145/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 146/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 147/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 148/150 2026-03-31T17:41:04.526 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 149/150 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 150/150 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout:Upgraded: 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout:Installed: 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-31T17:41:04.618 INFO:teuthology.orchestra.run.vm07.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: bzip2-1.0.8-11.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-immutable-object-cache-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: fuse-2.9.9-17.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: lua-5.4.4-4.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: mailcap-2.1.49-5.el9.noarch 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-31T17:41:04.619 INFO:teuthology.orchestra.run.vm07.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: perl-Benchmark-1.23-483.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: perl-Test-Harness-1:3.42-461.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-cheroot-10.0.1-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-cherrypy-18.10.0-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-ply-3.11-14.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-saml-1.16.0-1.el9.noarch 2026-03-31T17:41:04.620 INFO:teuthology.orchestra.run.vm07.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: re2-1:20211101-20.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: s3cmd-2.4.0-1.el9.noarch 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: smartmontools-1:7.2-10.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: socat-1.7.4.1-8.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: unzip-6.0-59.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: zip-3.0-35.el9.x86_64 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:41:04.621 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:41:04.702 DEBUG:teuthology.parallel:result is None 2026-03-31T17:41:04.702 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:41:05.363 DEBUG:teuthology.orchestra.run.vm02:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-03-31T17:41:05.382 INFO:teuthology.orchestra.run.vm02.stdout:20.2.0-721.g5bb32787.el9 2026-03-31T17:41:05.382 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-721.g5bb32787.el9 2026-03-31T17:41:05.382 INFO:teuthology.task.install:The correct ceph version 20.2.0-721.g5bb32787 is installed. 2026-03-31T17:41:05.383 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:41:06.016 DEBUG:teuthology.orchestra.run.vm06:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-03-31T17:41:06.033 INFO:teuthology.orchestra.run.vm06.stdout:20.2.0-721.g5bb32787.el9 2026-03-31T17:41:06.033 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-721.g5bb32787.el9 2026-03-31T17:41:06.033 INFO:teuthology.task.install:The correct ceph version 20.2.0-721.g5bb32787 is installed. 2026-03-31T17:41:06.034 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:41:06.631 DEBUG:teuthology.orchestra.run.vm07:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-03-31T17:41:06.650 INFO:teuthology.orchestra.run.vm07.stdout:20.2.0-721.g5bb32787.el9 2026-03-31T17:41:06.650 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-721.g5bb32787.el9 2026-03-31T17:41:06.650 INFO:teuthology.task.install:The correct ceph version 20.2.0-721.g5bb32787 is installed. 2026-03-31T17:41:06.651 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-03-31T17:41:06.651 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:41:06.651 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-03-31T17:41:06.676 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:41:06.676 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-03-31T17:41:06.700 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:41:06.700 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-03-31T17:41:06.726 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-03-31T17:41:06.726 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:41:06.726 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/usr/bin/daemon-helper 2026-03-31T17:41:06.747 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-03-31T17:41:06.808 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:41:06.808 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/usr/bin/daemon-helper 2026-03-31T17:41:06.829 DEBUG:teuthology.orchestra.run.vm06:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-03-31T17:41:06.889 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:41:06.889 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/usr/bin/daemon-helper 2026-03-31T17:41:06.914 DEBUG:teuthology.orchestra.run.vm07:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-03-31T17:41:06.976 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-03-31T17:41:06.976 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:41:06.977 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/usr/bin/adjust-ulimits 2026-03-31T17:41:06.998 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-03-31T17:41:07.058 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:41:07.058 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/usr/bin/adjust-ulimits 2026-03-31T17:41:07.079 DEBUG:teuthology.orchestra.run.vm06:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-03-31T17:41:07.139 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:41:07.139 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/usr/bin/adjust-ulimits 2026-03-31T17:41:07.163 DEBUG:teuthology.orchestra.run.vm07:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-03-31T17:41:07.224 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-03-31T17:41:07.224 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:41:07.224 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/usr/bin/stdin-killer 2026-03-31T17:41:07.246 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-03-31T17:41:07.305 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:41:07.305 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/usr/bin/stdin-killer 2026-03-31T17:41:07.327 DEBUG:teuthology.orchestra.run.vm06:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-03-31T17:41:07.387 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:41:07.387 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/usr/bin/stdin-killer 2026-03-31T17:41:07.410 DEBUG:teuthology.orchestra.run.vm07:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-03-31T17:41:07.471 INFO:teuthology.run_tasks:Running task cephadm... 2026-03-31T17:41:07.516 INFO:tasks.cephadm:Config: {'conf': {'global': {'mon election default strategy': 1}, 'mgr': {'debug mgr': 20, 'debug ms': 1, 'mgr/cephadm/use_agent': False}, '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': '5bb3278730741031382ca9c3dc9d221a942e06a2', 'cephadm_binary_url': 'https://download.ceph.com/rpm-20.2.0/el9/noarch/cephadm'} 2026-03-31T17:41:07.517 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 2026-03-31T17:41:07.517 INFO:tasks.cephadm:Cluster fsid is cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:41:07.517 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-03-31T17:41:07.517 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '192.168.123.102', 'mon.b': '192.168.123.106', 'mon.c': '192.168.123.107'} 2026-03-31T17:41:07.517 INFO:tasks.cephadm:First mon is mon.a on vm02 2026-03-31T17:41:07.517 INFO:tasks.cephadm:First mgr is a 2026-03-31T17:41:07.517 INFO:tasks.cephadm:Normalizing hostnames... 2026-03-31T17:41:07.517 DEBUG:teuthology.orchestra.run.vm02:> sudo hostname $(hostname -s) 2026-03-31T17:41:07.538 DEBUG:teuthology.orchestra.run.vm06:> sudo hostname $(hostname -s) 2026-03-31T17:41:07.559 DEBUG:teuthology.orchestra.run.vm07:> sudo hostname $(hostname -s) 2026-03-31T17:41:07.581 INFO:tasks.cephadm:Downloading cephadm from url: https://download.ceph.com/rpm-20.2.0/el9/noarch/cephadm 2026-03-31T17:41:07.581 DEBUG:teuthology.orchestra.run.vm02:> curl --silent -L https://download.ceph.com/rpm-20.2.0/el9/noarch/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:08.787 INFO:teuthology.orchestra.run.vm02.stdout:-rw-r--r--. 1 ubuntu ubuntu 1036391 Mar 31 17:41 /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:08.787 DEBUG:teuthology.orchestra.run.vm06:> curl --silent -L https://download.ceph.com/rpm-20.2.0/el9/noarch/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:10.295 INFO:teuthology.orchestra.run.vm06.stdout:-rw-r--r--. 1 ubuntu ubuntu 1036391 Mar 31 17:41 /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:10.295 DEBUG:teuthology.orchestra.run.vm07:> curl --silent -L https://download.ceph.com/rpm-20.2.0/el9/noarch/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:12.865 INFO:teuthology.orchestra.run.vm07.stdout:-rw-r--r--. 1 ubuntu ubuntu 1036391 Mar 31 17:41 /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:12.865 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-31T17:41:12.881 DEBUG:teuthology.orchestra.run.vm06:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:12.896 DEBUG:teuthology.orchestra.run.vm07:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-03-31T17:41:12.914 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 on all hosts... 2026-03-31T17:41:12.914 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 pull 2026-03-31T17:41:12.923 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 pull 2026-03-31T17:41:12.938 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 pull 2026-03-31T17:41:13.087 INFO:teuthology.orchestra.run.vm02.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2... 2026-03-31T17:41:13.089 INFO:teuthology.orchestra.run.vm06.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2... 2026-03-31T17:41:13.115 INFO:teuthology.orchestra.run.vm07.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2... 2026-03-31T17:41:46.614 INFO:teuthology.orchestra.run.vm02.stdout:{ 2026-03-31T17:41:46.615 INFO:teuthology.orchestra.run.vm02.stdout: "ceph_version": "ceph version 20.2.0-721-g5bb32787 (5bb3278730741031382ca9c3dc9d221a942e06a2) tentacle (stable)", 2026-03-31T17:41:46.615 INFO:teuthology.orchestra.run.vm02.stdout: "image_id": "1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0", 2026-03-31T17:41:46.615 INFO:teuthology.orchestra.run.vm02.stdout: "repo_digests": [ 2026-03-31T17:41:46.615 INFO:teuthology.orchestra.run.vm02.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072" 2026-03-31T17:41:46.615 INFO:teuthology.orchestra.run.vm02.stdout: ] 2026-03-31T17:41:46.615 INFO:teuthology.orchestra.run.vm02.stdout:} 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout:{ 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout: "ceph_version": "ceph version 20.2.0-721-g5bb32787 (5bb3278730741031382ca9c3dc9d221a942e06a2) tentacle (stable)", 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout: "image_id": "1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0", 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout: "repo_digests": [ 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072" 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout: ] 2026-03-31T17:41:56.116 INFO:teuthology.orchestra.run.vm06.stdout:} 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout:{ 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout: "ceph_version": "ceph version 20.2.0-721-g5bb32787 (5bb3278730741031382ca9c3dc9d221a942e06a2) tentacle (stable)", 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout: "image_id": "1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0", 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout: "repo_digests": [ 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072" 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout: ] 2026-03-31T17:41:56.166 INFO:teuthology.orchestra.run.vm07.stdout:} 2026-03-31T17:41:56.182 DEBUG:teuthology.orchestra.run.vm02:> sudo mkdir -p /etc/ceph 2026-03-31T17:41:56.209 DEBUG:teuthology.orchestra.run.vm06:> sudo mkdir -p /etc/ceph 2026-03-31T17:41:56.237 DEBUG:teuthology.orchestra.run.vm07:> sudo mkdir -p /etc/ceph 2026-03-31T17:41:56.263 DEBUG:teuthology.orchestra.run.vm02:> sudo chmod 777 /etc/ceph 2026-03-31T17:41:56.286 DEBUG:teuthology.orchestra.run.vm06:> sudo chmod 777 /etc/ceph 2026-03-31T17:41:56.310 DEBUG:teuthology.orchestra.run.vm07:> sudo chmod 777 /etc/ceph 2026-03-31T17:41:56.336 INFO:tasks.cephadm:Writing seed config... 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-03-31T17:41:56.337 INFO:tasks.cephadm: override: [osd] osd mclock iops capacity threshold hdd = 49000 2026-03-31T17:41:56.337 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:41:56.337 DEBUG:teuthology.orchestra.run.vm02:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-03-31T17:41:56.351 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=isa technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = cc53a1fa-2d28-11f1-b83b-53da7b16591a mon election default strategy = 1 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd mclock skip benchmark = true osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = true bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 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 = False [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-31T17:41:56.352 DEBUG:teuthology.orchestra.run.vm02:mon.a> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a.service 2026-03-31T17:41:56.393 DEBUG:teuthology.orchestra.run.vm02:mgr.a> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a.service 2026-03-31T17:41:56.435 INFO:tasks.cephadm:Bootstrapping... 2026-03-31T17:41:56.435 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 -v bootstrap --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --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-31T17:41:56.574 INFO:teuthology.orchestra.run.vm02.stdout:-------------------------------------------------------------------------------- 2026-03-31T17:41:56.574 INFO:teuthology.orchestra.run.vm02.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2', '-v', 'bootstrap', '--fsid', 'cc53a1fa-2d28-11f1-b83b-53da7b16591a', '--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-31T17:41:56.574 INFO:teuthology.orchestra.run.vm02.stdout:Verifying podman|docker is present... 2026-03-31T17:41:56.574 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-31T17:41:56.593 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stdout 5.8.0 2026-03-31T17:41:56.593 INFO:teuthology.orchestra.run.vm02.stdout:Verifying lvm2 is present... 2026-03-31T17:41:56.593 INFO:teuthology.orchestra.run.vm02.stdout:Verifying time synchronization is in place... 2026-03-31T17:41:56.599 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-03-31T17:41:56.599 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-03-31T17:41:56.604 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-03-31T17:41:56.604 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout inactive 2026-03-31T17:41:56.608 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout enabled 2026-03-31T17:41:56.612 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout active 2026-03-31T17:41:56.612 INFO:teuthology.orchestra.run.vm02.stdout:Unit chronyd.service is enabled and running 2026-03-31T17:41:56.612 INFO:teuthology.orchestra.run.vm02.stdout:Repeating the final host check... 2026-03-31T17:41:56.629 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stdout 5.8.0 2026-03-31T17:41:56.629 INFO:teuthology.orchestra.run.vm02.stdout:podman (/bin/podman) version 5.8.0 is present 2026-03-31T17:41:56.629 INFO:teuthology.orchestra.run.vm02.stdout:systemctl is present 2026-03-31T17:41:56.629 INFO:teuthology.orchestra.run.vm02.stdout:lvcreate is present 2026-03-31T17:41:56.635 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-03-31T17:41:56.635 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-03-31T17:41:56.639 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-03-31T17:41:56.639 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout inactive 2026-03-31T17:41:56.644 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout enabled 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout active 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Unit chronyd.service is enabled and running 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Host looks OK 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Cluster fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Acquiring lock 139736239854352 on /run/cephadm/cc53a1fa-2d28-11f1-b83b-53da7b16591a.lock 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Lock 139736239854352 acquired on /run/cephadm/cc53a1fa-2d28-11f1-b83b-53da7b16591a.lock 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Verifying IP 192.168.123.102 port 3300 ... 2026-03-31T17:41:56.648 INFO:teuthology.orchestra.run.vm02.stdout:Verifying IP 192.168.123.102 port 6789 ... 2026-03-31T17:41:56.648 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-31T17:41:56.651 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-31T17:41:56.651 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-31T17:41:56.653 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-03-31T17:41:56.653 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout fe80::/64 dev eth0 proto kernel metric 1024 pref medium 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout 2: eth0: mtu 1500 state UP qlen 1000 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout inet6 fe80::5055:ff:fe00:2/64 scope link noprefixroute 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:Mon IP `192.168.123.102` is in CIDR network `192.168.123.0/24` 2026-03-31T17:41:56.655 INFO:teuthology.orchestra.run.vm02.stdout:Mon IP `192.168.123.102` is in CIDR network `192.168.123.0/24` 2026-03-31T17:41:56.655 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-31T17:41:56.656 INFO:teuthology.orchestra.run.vm02.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-03-31T17:41:56.656 INFO:teuthology.orchestra.run.vm02.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2... 2026-03-31T17:41:57.877 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stdout 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 2026-03-31T17:41:57.877 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2... 2026-03-31T17:41:57.877 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Getting image source signatures 2026-03-31T17:41:57.877 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Copying blob sha256:c5e2fec2b14297976ed6be660ee65b05385cd8280d29bf3bfae1c02e4f087d96 2026-03-31T17:41:57.877 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Copying blob sha256:25df8c9a4e544adeec432a985d98aea47c269790b5bbd65f1ad4abb5621c4c30 2026-03-31T17:41:57.877 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Copying config sha256:1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 2026-03-31T17:41:57.878 INFO:teuthology.orchestra.run.vm02.stdout:/bin/podman: stderr Writing manifest to image destination 2026-03-31T17:41:58.030 INFO:teuthology.orchestra.run.vm02.stdout:ceph: stdout ceph version 20.2.0-721-g5bb32787 (5bb3278730741031382ca9c3dc9d221a942e06a2) tentacle (stable) 2026-03-31T17:41:58.031 INFO:teuthology.orchestra.run.vm02.stdout:Ceph version: ceph version 20.2.0-721-g5bb32787 (5bb3278730741031382ca9c3dc9d221a942e06a2) tentacle (stable) 2026-03-31T17:41:58.031 INFO:teuthology.orchestra.run.vm02.stdout:Extracting ceph user uid/gid from container image... 2026-03-31T17:41:58.152 INFO:teuthology.orchestra.run.vm02.stdout:stat: stdout 167 167 2026-03-31T17:41:58.152 INFO:teuthology.orchestra.run.vm02.stdout:Creating initial keys... 2026-03-31T17:41:58.266 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph-authtool: stdout AQBmB8xpNOOLDhAArcM/WersbzujS/CzhHiKrA== 2026-03-31T17:41:58.368 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph-authtool: stdout AQBmB8xpVXzvFBAAINz9P0W2tTMcY1oDBApl0w== 2026-03-31T17:41:58.486 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph-authtool: stdout AQBmB8xp8MIGHBAADu6lVlfCRy16SwnrEKp2Wg== 2026-03-31T17:41:58.487 INFO:teuthology.orchestra.run.vm02.stdout:Creating initial monmap... 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-03-31T17:41:58.608 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-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:setting min_mon_release = tentacle 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: set fsid to cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:41:58.608 INFO:teuthology.orchestra.run.vm02.stdout:Creating mon... 2026-03-31T17:41:58.739 INFO:teuthology.orchestra.run.vm02.stdout:create mon.a on 2026-03-31T17:41:58.903 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2026-03-31T17:41:59.007 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-31T17:41:59.117 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a.target → /etc/systemd/system/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a.target. 2026-03-31T17:41:59.117 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a.target → /etc/systemd/system/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a.target. 2026-03-31T17:41:59.235 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a 2026-03-31T17:41:59.235 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to reset failed state of unit ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a.service: Unit ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a.service not loaded. 2026-03-31T17:41:59.349 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a.target.wants/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a.service → /etc/systemd/system/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@.service. 2026-03-31T17:41:59.498 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-31T17:41:59.498 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to enable service . firewalld.service is not available 2026-03-31T17:41:59.498 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mon to start... 2026-03-31T17:41:59.498 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mon... 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout cluster: 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout id: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout services: 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.119981s) [leader: a] 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout data: 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout pgs: 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:mon is available 2026-03-31T17:41:59.664 INFO:teuthology.orchestra.run.vm02.stdout:Assimilating anything we can from ceph.conf... 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [global] 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout fsid = cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-03-31T17:41:59.824 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-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [mgr] 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [osd] 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-03-31T17:41:59.824 INFO:teuthology.orchestra.run.vm02.stdout:Generating new minimal ceph.conf... 2026-03-31T17:41:59.983 INFO:teuthology.orchestra.run.vm02.stdout:Restarting the monitor... 2026-03-31T17:42:00.258 INFO:teuthology.orchestra.run.vm02.stdout:Setting public_network to 192.168.123.0/24 in global config section 2026-03-31T17:42:00.421 INFO:teuthology.orchestra.run.vm02.stdout:Wrote config to /etc/ceph/ceph.conf 2026-03-31T17:42:00.422 INFO:teuthology.orchestra.run.vm02.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:00.422 INFO:teuthology.orchestra.run.vm02.stdout:Creating mgr... 2026-03-31T17:42:00.422 INFO:teuthology.orchestra.run.vm02.stdout:Verifying port 0.0.0.0:9283 ... 2026-03-31T17:42:00.422 INFO:teuthology.orchestra.run.vm02.stdout:Verifying port 0.0.0.0:8765 ... 2026-03-31T17:42:00.547 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a 2026-03-31T17:42:00.547 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Failed to reset failed state of unit ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a.service: Unit ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a.service not loaded. 2026-03-31T17:42:00.651 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a.target.wants/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a.service → /etc/systemd/system/ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@.service. 2026-03-31T17:42:00.786 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-31T17:42:00.786 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to enable service . firewalld.service is not available 2026-03-31T17:42:00.786 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-31T17:42:00.786 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-03-31T17:42:00.786 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr to start... 2026-03-31T17:42:00.786 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr... 2026-03-31T17:42:00.952 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:42:00.952 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:00.952 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsid": "cc53a1fa-2d28-11f1-b83b-53da7b16591a", 2026-03-31T17:42:00.952 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "health": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 0 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "a" 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "monmap": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "btime": "2026-03-31T17:41:59:520857+0000", 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": false, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modules": [ 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "iostat", 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "nfs" 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modified": "2026-03-31T17:41:59.521821+0000", 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:00.953 INFO:teuthology.orchestra.run.vm02.stdout:mgr not available, waiting (1/15)... 2026-03-31T17:42:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:01 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2150988129' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-03-31T17:42:02.226 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:01 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: from numpy import show_config as show_numpy_config 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsid": "cc53a1fa-2d28-11f1-b83b-53da7b16591a", 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "health": { 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-03-31T17:42:03.126 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 0 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "a" 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "monmap": { 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-03-31T17:42:03.127 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "btime": "2026-03-31T17:41:59:520857+0000", 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": false, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modules": [ 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "iostat", 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "nfs" 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modified": "2026-03-31T17:41:59.521821+0000", 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-31T17:42:03.128 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:03.129 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-03-31T17:42:03.129 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:03.129 INFO:teuthology.orchestra.run.vm02.stdout:mgr not available, waiting (2/15)... 2026-03-31T17:42:03.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:03 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/901161677' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: Activating manager daemon a 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: mgrmap e2: a(active, starting, since 0.00395221s) 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: Manager daemon a is now available 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' 2026-03-31T17:42:04.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:04 vm02 ceph-mon[51704]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsid": "cc53a1fa-2d28-11f1-b83b-53da7b16591a", 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "health": { 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 0 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "a" 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "monmap": { 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-03-31T17:42:05.417 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "btime": "2026-03-31T17:41:59:520857+0000", 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": true, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modules": [ 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "iostat", 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "nfs" 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ], 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "modified": "2026-03-31T17:41:59.521821+0000", 2026-03-31T17:42:05.418 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "services": {} 2026-03-31T17:42:05.419 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout }, 2026-03-31T17:42:05.419 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-03-31T17:42:05.419 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:05.419 INFO:teuthology.orchestra.run.vm02.stdout:mgr is available 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [global] 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout fsid = cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-03-31T17:42:05.664 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-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [mgr] 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout [osd] 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-03-31T17:42:05.664 INFO:teuthology.orchestra.run.vm02.stdout:Enabling cephadm module... 2026-03-31T17:42:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:05 vm02 ceph-mon[51704]: mgrmap e3: a(active, since 1.00829s) 2026-03-31T17:42:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:05 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3690061804' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-03-31T17:42:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:05 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3230025452' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-03-31T17:42:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:05 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3230025452' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-03-31T17:42:06.932 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:06 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2777991242' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-03-31T17:42:06.933 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:06 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2777991242' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-03-31T17:42:06.933 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:06 vm02 ceph-mon[51704]: mgrmap e4: a(active, since 2s) 2026-03-31T17:42:06.933 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:06 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: ignoring --setuser ceph since I am not root 2026-03-31T17:42:06.933 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:06 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: ignoring --setgroup ceph since I am not root 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 4, 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": true, 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for the mgr to restart... 2026-03-31T17:42:06.958 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr epoch 4... 2026-03-31T17:42:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:07 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1849186305' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-03-31T17:42:07.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:07 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: /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-31T17:42:07.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:07 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 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-31T17:42:07.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:07 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: from numpy import show_config as show_numpy_config 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: Active manager daemon a restarted 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: Activating manager daemon a 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: osdmap e2: 0 total, 0 up, 0 in 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: mgrmap e5: a(active, starting, since 0.00516836s) 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-03-31T17:42:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:09 vm02 ceph-mon[51704]: Manager daemon a is now available 2026-03-31T17:42:10.618 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:10.618 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 6, 2026-03-31T17:42:10.618 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "initialized": true 2026-03-31T17:42:10.618 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:10.618 INFO:teuthology.orchestra.run.vm02.stdout:mgr epoch 4 is available 2026-03-31T17:42:10.618 INFO:teuthology.orchestra.run.vm02.stdout:Verifying orchestrator module is enabled... 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: Found migration_current of "None". Setting to last migration. 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:10] ENGINE Bus STARTING 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: mgrmap e6: a(active, since 1.00829s) 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:10] ENGINE Serving on http://192.168.123.102:8765 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:11.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:10 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/182173894' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-03-31T17:42:11.609 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-03-31T17:42:11.609 INFO:teuthology.orchestra.run.vm02.stdout:Setting orchestrator backend to cephadm... 2026-03-31T17:42:12.294 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout value unchanged 2026-03-31T17:42:12.294 INFO:teuthology.orchestra.run.vm02.stdout:Generating ssh key... 2026-03-31T17:42:12.548 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: Generating public/private ed25519 key pair. 2026-03-31T17:42:12.548 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: Your identification has been saved in /tmp/tmpdisaeu8g/key 2026-03-31T17:42:12.548 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: Your public key has been saved in /tmp/tmpdisaeu8g/key.pub 2026-03-31T17:42:12.548 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: The key fingerprint is: 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: SHA256:xGszB4jUHPQMhy5foPJgqsMVniF1GF70YnQ5xuuvea8 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: The key's randomart image is: 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: +--[ED25519 256]--+ 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: | .=B=+o | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: | .+ooB% | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: | ..o=ooO | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: | .+o+ oo.o | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: | oo++o..S . | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: |. +. .o + | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: |o . . | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: |o. .o | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: | . ooEo. | 2026-03-31T17:42:12.549 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: +----[SHA256]-----+ 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:10] ENGINE Serving on https://192.168.123.102:7150 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:10] ENGINE Bus STARTED 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:10] ENGINE Client ('192.168.123.102', 40440) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/182173894' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: mgrmap e7: a(active, since 2s) 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:12.805 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:12 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:12.812 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-03-31T17:42:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Adding key to root@localhost authorized_keys... 2026-03-31T17:42:12.812 INFO:teuthology.orchestra.run.vm02.stdout:Adding host vm02... 2026-03-31T17:42:13.633 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:13 vm02 ceph-mon[51704]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:13.633 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:13 vm02 ceph-mon[51704]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:13.633 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:13 vm02 ceph-mon[51704]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:13.633 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:13 vm02 ceph-mon[51704]: Generating ssh key... 2026-03-31T17:42:14.596 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Added host 'vm02' with addr '192.168.123.102' 2026-03-31T17:42:14.596 INFO:teuthology.orchestra.run.vm02.stdout:Deploying unmanaged mon service... 2026-03-31T17:42:14.836 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:14 vm02 ceph-mon[51704]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:14.836 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:14 vm02 ceph-mon[51704]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm02", "addr": "192.168.123.102", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:14.836 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:14 vm02 ceph-mon[51704]: Deploying cephadm binary to vm02 2026-03-31T17:42:14.836 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:14 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:14.836 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:14 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:14.863 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-03-31T17:42:14.863 INFO:teuthology.orchestra.run.vm02.stdout:Deploying unmanaged mgr service... 2026-03-31T17:42:15.116 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-03-31T17:42:15.611 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:15 vm02 ceph-mon[51704]: Added host vm02 2026-03-31T17:42:15.611 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:15 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:15.611 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:15 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:15.611 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:15 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1406100195' entity='client.admin' 2026-03-31T17:42:15.618 INFO:teuthology.orchestra.run.vm02.stdout:Enabling the dashboard module... 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: Saving service mon spec with placement count:5 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: Saving service mgr spec with placement count:2 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/518185903' entity='client.admin' 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1616282520' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-mon[51704]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: ignoring --setuser ceph since I am not root 2026-03-31T17:42:16.771 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:16 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: ignoring --setgroup ceph since I am not root 2026-03-31T17:42:16.956 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "epoch": 8, 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "available": true, 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for the mgr to restart... 2026-03-31T17:42:16.957 INFO:teuthology.orchestra.run.vm02.stdout:Waiting for mgr epoch 8... 2026-03-31T17:42:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:17 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1616282520' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-03-31T17:42:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:17 vm02 ceph-mon[51704]: mgrmap e8: a(active, since 7s) 2026-03-31T17:42:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:17 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1950147639' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-03-31T17:42:17.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:17 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: /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-31T17:42:17.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:17 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 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-31T17:42:17.976 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:17 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: from numpy import show_config as show_numpy_config 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: Active manager daemon a restarted 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: Activating manager daemon a 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: osdmap e3: 0 total, 0 up, 0 in 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: mgrmap e9: a(active, starting, since 0.00447815s) 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-03-31T17:42:19.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:19 vm02 ceph-mon[51704]: Manager daemon a is now available 2026-03-31T17:42:20.637 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout { 2026-03-31T17:42:20.637 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 10, 2026-03-31T17:42:20.637 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout "initialized": true 2026-03-31T17:42:20.637 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout } 2026-03-31T17:42:20.637 INFO:teuthology.orchestra.run.vm02.stdout:mgr epoch 8 is available 2026-03-31T17:42:20.637 INFO:teuthology.orchestra.run.vm02.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-03-31T17:42:20.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:20.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-03-31T17:42:20.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-03-31T17:42:20.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:20.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:20.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:20 vm02 ceph-mon[51704]: mgrmap e10: a(active, since 1.00698s) 2026-03-31T17:42:21.862 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE/zCCAuegAwIBAgIUON4X0ItaXXSokqOfty6X057slFIwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI2MDMzMTE3NDIyMVoXDTI5\nMDMzMDE3NDIyMVowGjEYMBYGA1UEAwwPMTkyLjE2OC4xMjMuMTAyMIICIjANBgkq\nhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAuPJiMjsD2oQGIM6z8nKo9wELNVTUbBoZ\nfGLFMY4Lu2MEDaxO4nqMG7E9XMEYh2IzKKYhVy2kDn79CMs2aWWW0yAzE2pV+y/W\n0XrnqNHxcqgpn/z5CmLAneaCUts6Q3b+sKkM960NacA33G/2vqHMsA8mjDiqyZA4\nDhuAAmoFMYG+k5jdjotU1KWCOT5wYOEDmU3XFNR+kCuFjYV2/axZKPEdRPBsuHql\npCqaZcn1WsYKsQ0MPihdXBaMRdIqO8X30Ei5Vn79d50qJzWQKfgsi/7S1PZ0x7f6\nd5IPon3F5TOFdzd56TI5rIaZlTCFcN5AgXOuOSf4ubaOxOQ+l8MMaQssjduMmwBm\nIgK5z5XvJOLXee7evA8tJ889ouDRwf+OWmLQIStO8zhUJKvJiainhRZHMNGEfTNR\niSSV6dKp9UzbufBon+UecA9WUPoLSfzxXie5wOsIL4CB0hOzaOL3LZN2p9JqAVWT\n1YHSrlyscu5AzcGnWr1yRwDbb2P6kSG+eJpJ2KQgCLHeSlsPb4KsW/5Hyw1E/fPR\ntue3ciTFTudSDm8jwQjO05p01dmRDa6Saqo6emJMvWQlvW/RbQWPmfAxXepxJT9M\nK8vOLKa0WMC3229nRAezqBkFOkuzkdJrAqe9eqePKDaHBm/8aYoTRdvOQkIvd8hj\nGN7dFEsHRDUCAwEAAaNAMD4wLgYDVR0RBCcwJYIKdm0wMi5sb2NhbIIRZGFzaGJv\nYXJkX3NlcnZlcnOHBMCoe2YwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOC\nAgEAtSv2bGF7IjddBe5dfMAbrJQjwtNpIdfj4Ty4+/8BNuANCi74vxlAA4DwUhCL\niT0bidq5H6+W7Y9iFyUc+dzjQjpuJWnbdmKE5/GdH5zeUWzNs0McJ73wy6uN2HLL\n1xLlHcTLwb1qDJ5YJi+pRyxFZn4/a2/zvva0EoWafoNqWpj8Xfrid8bpRjXHksi7\ncoIqpJefjbxETFCjY1Rxo9S+S3WKXpFeNDVrXuMfJEZgWFoq/7P/OCbZ8AbHMxN0\nGc19oBwrTIrlRrIFu69fdsCmL/847FGwvi8OrKJDugg5q002GHeHexUYh1fHuF8s\ngjHoRYqANM8lfivZHvuR7pdFee8+kbN+wzmSaobXuiK6yRXsHejDh/eP1RJq6ml4\nsDesi1Z1xO+DPCqPN2Upx5e4Ubji3vutscp4zIDwxRQpXZGchPtW2ic3dwiknYN1\nhwh/+GNHV4+hW2enge9z2N3QUltr4y2DYygD4XzXzYfxUBtnoKSKt3Wx/f+7Auik\nerRulsqTgzKeNELmY4Vu4nCIIF4PP+r6twPh1wTKrTfTiyks/OpBG4/bDjBXpfi+\n1M65exFg+q8rQnPVEh8EORbM/ioxMD8uAvxeYjsRBy/nWKhJiz3BKzTl8VOZjiVf\nA4JdnPPt/FaJ2tXwQ7Pb32l3Tlo+wyhp0lZcsKW1UTz7tZo=\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKAIBAAKCAgEAuPJiMjsD2oQGIM6z8nKo9wELNVTUbBoZfGLFMY4Lu2MEDaxO\n4nqMG7E9XMEYh2IzKKYhVy2kDn79CMs2aWWW0yAzE2pV+y/W0XrnqNHxcqgpn/z5\nCmLAneaCUts6Q3b+sKkM960NacA33G/2vqHMsA8mjDiqyZA4DhuAAmoFMYG+k5jd\njotU1KWCOT5wYOEDmU3XFNR+kCuFjYV2/axZKPEdRPBsuHqlpCqaZcn1WsYKsQ0M\nPihdXBaMRdIqO8X30Ei5Vn79d50qJzWQKfgsi/7S1PZ0x7f6d5IPon3F5TOFdzd5\n6TI5rIaZlTCFcN5AgXOuOSf4ubaOxOQ+l8MMaQssjduMmwBmIgK5z5XvJOLXee7e\nvA8tJ889ouDRwf+OWmLQIStO8zhUJKvJiainhRZHMNGEfTNRiSSV6dKp9UzbufBo\nn+UecA9WUPoLSfzxXie5wOsIL4CB0hOzaOL3LZN2p9JqAVWT1YHSrlyscu5AzcGn\nWr1yRwDbb2P6kSG+eJpJ2KQgCLHeSlsPb4KsW/5Hyw1E/fPRtue3ciTFTudSDm8j\nwQjO05p01dmRDa6Saqo6emJMvWQlvW/RbQWPmfAxXepxJT9MK8vOLKa0WMC3229n\nRAezqBkFOkuzkdJrAqe9eqePKDaHBm/8aYoTRdvOQkIvd8hjGN7dFEsHRDUCAwEA\nAQKCAgAi2B2qh4ZaFrod17u835/YS4TMUzNjO4aWMfijdbbdotHKbq59CmgXtoyQ\nS1v+88AeNjB9X36zcXbkP378m/Ruyff9fjD9Tl3LYTvAiW9TMf4Ho65a59CQ3zMp\n/54qRELHT04/YoXuqNWNbTXAZDTvbadOT0XUDF0XQVScf9ODKIXagngpiTQeDSGr\n/cjH49Tc/vaY+NDwghabG2xX7i7tIQIp8R8WoZrQA2vL5iEY7Utp4IKwOkQem6vp\nYqds1Ac0oWLzuiCwdraQpQ2Ibrab2JJpp5ZIY2/ns6fI7ifI3yxT0eqgxgLqL4DD\nhBz77w+ZpA0MvSxl9tBOpY7qYkfVtyRG4sVlEtx71Lh91xvbwu2xTAE3Sicjl4f7\nuHeg1wBU0XxWQPz2eJSuDp1zg87Q1aScQVTvmO+KyPtGQDGHKA14cqMkrgKriT+H\nzxF8S+qozxvKHcykydXF/hpBC7XsxTx+4rHc82zkE+A4G4m57JxbX4BidOg6lE/y\nG+xlVSHqnwTmwQUVC9ByaegYZbDVfTibq5kOEbc1+h/LYooRU94be+Z3Aa9qfcTw\nvvBFy9df6X95pAPSPtlsRFWCaS7+E+vPKm/4cW9vfXB/q4SIwi1OgC23Oq3mmRRO\nqmFV2V3SIdFDlVr99OsFGW14NuOdbulc3YrDSXSIw5AofOHo4QKCAQEA8VSjzVk1\noLECQ6Mpx4jnueKK4uL1sFjrki2NHcNUCPd4rJ7jvntLn41+cnb9CvLPXQT9KApV\nsSVcU8Ot/Drmvkqwo3zTrKKSkXDYcEBLF1zHydB0v9LzRSgROKUpfktK7ycn4cxS\nQfBEOoYaxNfBB6j+IuO2ynAF77XtQY60S+ou7jInQFZzG0oCzq65hwMKncJCV8g2\nScElMrxOA6lX2LYJZ8oAKrRuCfz6fvkXuwpkBY+MOZNVr6HgcJMPcG1riWCY4I+h\nY2jYKUc/4u948cn0sqM/kRhizNxrA90ltkjq/vLrzTxiybp7DuKl0ieczlXGu5pA\ni7aGX2weVL5P1QKCAQEAxDBaE6smYW6wVNwNztH+LSv55t2GJCUN1sNLNVjTKPvD\neyaf6tmbIpe6Ez7W60XdyVv0aoWDMwJ7Grlb+EZ2zCGyuzSDcCvtQDaWxUf+p7vU\nuNiGVu3hLTGQtyPugLVu9OqVMV3D3cWR9QneBpTfjHLqlOfE6MSSnEWkOQqU4n3+\n1iT/gnHyvs6o75zWJRpDqnxh6vBEODTzxNDQVBqax4bGtZGkYHiNuztvMMDXkcJ3\n0aVYUGifXZD1i5JXSTW/hXowx5KjMbYJRab1+FGV+kVjIfXzUamDkhBcJ5zcmtzB\nQWAZdUMdwEBTCZgUX8gIpKrvxO+Qn9ceJTYWXL2y4QKCAQEAnFWfU0yiL/nbJKPT\nUd5/duyp2jb6wAWqfWSi0RATJUfjVbgMgv3uTGrl6hLo86m96V1s/f5L6tjwCZdu\n40Ho7ocGDLK1kVUzq6I1o+oSewzwo+01ZHqsezVsiox758OwxGJSNLUe6HZUTLFJ\nMBEwi9zO3R008clGHzZ0fw6J/8+yHT5CLSyTnq8ASJHpv+uZef846RLbEEZd6ZMQ\n2tBeBxZN232BRCjkS/Yk9BI7bEBb8To/taCbVo6ADY1G6CcKDdGU14xUGUj3Fy5/\n1Wwapk+VBBA7AqyQfHOho7wkTQTJruUBGlAvEs2KIGd00kI1E3l/p1JS0+8m9zPc\nJjuvDQKCAQAQH5EnkKdE1p3zO2p/Fs7202hkSsxdaBYtEju6FKS194rnMhNub5fK\nTgHi1wU+rK0/gSkjH/naVVfcqGMgklntCM/xhq1OqK2E23ekmvgYvN0Mm+7ecgpR\ndoNYKcHOHhsSUb0VI4mXTkdihf8TN2Tv2/nfZvTN1GngIfEPJwl5W7V3z+6Xv9md\nSMqldpQ61F+/QR2i+0AABooKIMceQll6EF+ASInjy8SKIKZQsWiF+B90wUvyv8Zp\nICKt58b4o0wsIhCkNi7nRPiaGtCYKcxTlyRAhEAM9At2E5YfQ0r2BzJytv0gn/Vv\n+VlZrn/uJzheoBW4b5/JIxq9ICbSVFzBAoIBABmROXIalmiJyY68tCD/qDexytLp\nSkWKESY5bd/kPzOQVhHRk1vy7nSv6RTkHKZJbHTsOUsRpVGJAEMd4EK+oDwjOg6A\nwKSBOBgvz4r6AWpJVleLmhiULwOxLowlcV8uknj2ozVQQvutqBejVAds2/Mzn97E\nMEN3bPBoSJjpL9Uta4F5A4W2os74KxmSEB5xYLIX4NXcyBE/DVroZiTcu0+wGl5h\nLdYRXWacAkmvzOe81Bts2/7siiKwEqEOI25a72pZFcN9Wj6HjjDp96Ivq8SDXEcz\nWa++4pj1ClRLn9XEOz74PJXGHrKbknk2qwdVmryDtP6qSGP8Zd6Iw3E6A9M=\n-----END RSA PRIVATE KEY-----\n"} 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:20] ENGINE Bus STARTING 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:20] ENGINE Serving on http://192.168.123.102:8765 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:20] ENGINE Serving on https://192.168.123.102:7150 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:20] ENGINE Bus STARTED 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: [31/Mar/2026:17:42:20] ENGINE Client ('192.168.123.102', 52376) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-03-31T17:42:21.883 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:21 vm02 ceph-mon[51704]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-03-31T17:42:22.115 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-03-31T17:42:22.363 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-03-31T17:42:22.363 INFO:teuthology.orchestra.run.vm02.stdout:Creating initial admin user... 2026-03-31T17:42:22.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:22 vm02 ceph-mon[51704]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:22.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:22 vm02 ceph-mon[51704]: mgrmap e11: a(active, since 2s) 2026-03-31T17:42:22.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:22.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:22.840 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$UkMI5wq/SmutXtRf7L.m7.BszBjb/ppvjWqcwRNmthbi8v8995Jze", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1774978942, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-03-31T17:42:22.840 INFO:teuthology.orchestra.run.vm02.stdout:Fetching dashboard port number... 2026-03-31T17:42:23.087 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stdout 8443 2026-03-31T17:42:23.087 INFO:teuthology.orchestra.run.vm02.stdout:firewalld does not appear to be present 2026-03-31T17:42:23.087 INFO:teuthology.orchestra.run.vm02.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout:Ceph Dashboard is now available at: 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout: URL: https://vm02.local:8443/ 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout: User: admin 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout: Password: vdfdjiz9cf 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.088 INFO:teuthology.orchestra.run.vm02.stdout:Saving cluster configuration to /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config directory 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-03-31T17:42:23.391 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-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout:Or, if you are only running a single cluster on this host: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout:Please consider enabling telemetry to help improve Ceph: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: ceph telemetry on 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout:For more information see: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:23.391 INFO:teuthology.orchestra.run.vm02.stdout:Bootstrap complete. 2026-03-31T17:42:23.398 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout static 2026-03-31T17:42:23.403 INFO:teuthology.orchestra.run.vm02.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-03-31T17:42:23.403 INFO:teuthology.orchestra.run.vm02.stdout:systemctl: stdout inactive 2026-03-31T17:42:23.404 INFO:teuthology.orchestra.run.vm02.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-03-31T17:42:23.539 INFO:tasks.cephadm:Fetching config... 2026-03-31T17:42:23.539 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:23.539 DEBUG:teuthology.orchestra.run.vm02:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-03-31T17:42:23.553 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-03-31T17:42:23.553 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:23.553 DEBUG:teuthology.orchestra.run.vm02:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-03-31T17:42:23.613 INFO:tasks.cephadm:Fetching mon keyring... 2026-03-31T17:42:23.614 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:23.614 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/keyring of=/dev/stdout 2026-03-31T17:42:23.676 INFO:tasks.cephadm:Fetching pub ssh key... 2026-03-31T17:42:23.676 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:23.676 DEBUG:teuthology.orchestra.run.vm02:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-03-31T17:42:23.731 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-03-31T17:42:23.731 DEBUG:teuthology.orchestra.run.vm02:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-03-31T17:42:23.801 INFO:teuthology.orchestra.run.vm02.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:23.810 DEBUG:teuthology.orchestra.run.vm06:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-03-31T17:42:23.838 INFO:teuthology.orchestra.run.vm06.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:23.846 DEBUG:teuthology.orchestra.run.vm07:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-03-31T17:42:23.880 INFO:teuthology.orchestra.run.vm07.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJU1cdLcJ9uDrMIPluFQ9brugbUHvqvx9ltyrJhaMjYa ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:23.891 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-03-31T17:42:23.913 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:23 vm02 ceph-mon[51704]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:23.913 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:23 vm02 ceph-mon[51704]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:23.913 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:23 vm02 ceph-mon[51704]: from='client.14170 -' 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-31T17:42:23.913 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:23.913 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:23 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1147619632' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-03-31T17:42:23.913 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:23 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/350645886' entity='client.admin' 2026-03-31T17:42:24.010 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:24.305 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-03-31T17:42:24.305 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-03-31T17:42:24.460 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:24.739 INFO:tasks.cephadm:Writing (initial) conf and keyring to vm06 2026-03-31T17:42:24.739 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:42:24.739 DEBUG:teuthology.orchestra.run.vm06:> dd of=/etc/ceph/ceph.conf 2026-03-31T17:42:24.753 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:42:24.753 DEBUG:teuthology.orchestra.run.vm06:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:24.808 INFO:tasks.cephadm:Adding host vm06 to orchestrator... 2026-03-31T17:42:24.808 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch host add vm06 2026-03-31T17:42:24.932 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2336072975' entity='client.admin' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:25.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:25 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: Updating vm02:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm06", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:26.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:26 vm02 ceph-mon[51704]: Deploying cephadm binary to vm06 2026-03-31T17:42:26.730 INFO:teuthology.orchestra.run.vm02.stdout:Added host 'vm06' with addr '192.168.123.106' 2026-03-31T17:42:26.771 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch host ls --format=json 2026-03-31T17:42:26.889 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:27.129 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:27.129 INFO:teuthology.orchestra.run.vm02.stdout:[{"addr": "192.168.123.102", "hostname": "vm02", "labels": [], "status": ""}, {"addr": "192.168.123.106", "hostname": "vm06", "labels": [], "status": ""}] 2026-03-31T17:42:27.173 INFO:tasks.cephadm:Writing (initial) conf and keyring to vm07 2026-03-31T17:42:27.173 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:42:27.173 DEBUG:teuthology.orchestra.run.vm07:> dd of=/etc/ceph/ceph.conf 2026-03-31T17:42:27.187 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:42:27.187 DEBUG:teuthology.orchestra.run.vm07:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:27.241 INFO:tasks.cephadm:Adding host vm07 to orchestrator... 2026-03-31T17:42:27.241 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch host add vm07 2026-03-31T17:42:27.366 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:27.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:27 vm02 ceph-mon[51704]: mgrmap e12: a(active, since 6s) 2026-03-31T17:42:27.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:27 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:27.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:27 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:27.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:27 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:27.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:27 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:28.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:28 vm02 ceph-mon[51704]: Added host vm06 2026-03-31T17:42:28.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:28 vm02 ceph-mon[51704]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:42:28.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:28 vm02 ceph-mon[51704]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:28.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:28 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:29.369 INFO:teuthology.orchestra.run.vm02.stdout:Added host 'vm07' with addr '192.168.123.107' 2026-03-31T17:42:29.417 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch host ls --format=json 2026-03-31T17:42:29.541 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: Deploying cephadm binary to vm07 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:vm06", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:29.596 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:29.788 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:29.788 INFO:teuthology.orchestra.run.vm02.stdout:[{"addr": "192.168.123.102", "hostname": "vm02", "labels": [], "status": ""}, {"addr": "192.168.123.106", "hostname": "vm06", "labels": [], "status": ""}, {"addr": "192.168.123.107", "hostname": "vm07", "labels": [], "status": ""}] 2026-03-31T17:42:29.835 INFO:tasks.cephadm:Setting crush tunables to default 2026-03-31T17:42:29.835 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd crush tunables default 2026-03-31T17:42:29.959 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: Updating vm06:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: Added host vm07 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:30.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:30 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/217727581' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-03-31T17:42:30.841 INFO:teuthology.orchestra.run.vm02.stderr:adjusted tunables profile to default 2026-03-31T17:42:30.886 INFO:tasks.cephadm:Adding mon.a on vm02 2026-03-31T17:42:30.886 INFO:tasks.cephadm:Adding mon.b on vm06 2026-03-31T17:42:30.886 INFO:tasks.cephadm:Adding mon.c on vm07 2026-03-31T17:42:30.886 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch apply mon '3;vm02:192.168.123.102=a;vm06:192.168.123.106=b;vm07:192.168.123.107=c' 2026-03-31T17:42:31.006 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /etc/ceph/ceph.conf 2026-03-31T17:42:31.006 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /etc/ceph/ceph.conf 2026-03-31T17:42:31.264 INFO:teuthology.orchestra.run.vm07.stdout:Scheduled mon update... 2026-03-31T17:42:31.321 DEBUG:teuthology.orchestra.run.vm06:mon.b> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.b.service 2026-03-31T17:42:31.323 DEBUG:teuthology.orchestra.run.vm07:mon.c> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.c.service 2026-03-31T17:42:31.324 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-03-31T17:42:31.325 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph mon dump -f json 2026-03-31T17:42:31.489 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /etc/ceph/ceph.conf 2026-03-31T17:42:31.489 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /etc/ceph/ceph.conf 2026-03-31T17:42:31.786 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:42:31.786 INFO:teuthology.orchestra.run.vm07.stdout:{"epoch":1,"fsid":"cc53a1fa-2d28-11f1-b83b-53da7b16591a","modified":"2026-03-31T17:41:58.588946Z","created":"2026-03-31T17:41:58.588946Z","min_mon_release":20,"min_mon_release_name":"tentacle","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","tentacle"],"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-31T17:42:31.786 INFO:teuthology.orchestra.run.vm07.stderr:dumped monmap epoch 1 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/217727581' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:vm07", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:31.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:32.857 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-03-31T17:42:32.857 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph mon dump -f json 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;vm02:192.168.123.102=a;vm06:192.168.123.106=b;vm07:192.168.123.107=c", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: Saving service mon spec with placement vm02:192.168.123.102=a;vm06:192.168.123.106=b;vm07:192.168.123.107=c;count:3 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: Updating vm07:/etc/ceph/ceph.conf 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: Updating vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='client.? 192.168.123.107:0/450424781' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:32 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:33.032 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.c/config 2026-03-31T17:42:33.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 podman[55238]: 2026-03-31 17:42:33.044595359 +0000 UTC m=+0.019544464 container create 16306fef75314d52a1df6065ac9b6e9522ab30a54c8483a4701143f6ce60ae51 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-c, org.label-schema.license=GPLv2, io.buildah.version=1.43.0, org.label-schema.build-date=20260316, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.schema-version=1.0, CEPH_REF=tentacle-release, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-31T17:42:33.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 podman[55238]: 2026-03-31 17:42:33.080621813 +0000 UTC m=+0.055570918 container init 16306fef75314d52a1df6065ac9b6e9522ab30a54c8483a4701143f6ce60ae51 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-c, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.build-date=20260316, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.43.0, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, ceph=True, CEPH_REF=tentacle-release) 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 podman[55238]: 2026-03-31 17:42:33.08584993 +0000 UTC m=+0.060799035 container start 16306fef75314d52a1df6065ac9b6e9522ab30a54c8483a4701143f6ce60ae51 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-c, org.label-schema.build-date=20260316, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=tentacle-release, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 bash[55238]: 16306fef75314d52a1df6065ac9b6e9522ab30a54c8483a4701143f6ce60ae51 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 podman[55238]: 2026-03-31 17:42:33.037293612 +0000 UTC m=+0.012242728 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 systemd[1]: Started Ceph mon.c for cc53a1fa-2d28-11f1-b83b-53da7b16591a. 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: set uid:gid to 167:167 (ceph:ceph) 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: ceph version 20.2.0-721-g5bb32787 (5bb3278730741031382ca9c3dc9d221a942e06a2) tentacle (stable - RelWithDebInfo), process ceph-mon, pid 2 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: pidfile_write: ignore empty --pid-file 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: load: jerasure load: lrc load: isa 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: RocksDB version: 7.9.2 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Git sha 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Compile date 2026-03-19 20:43:26 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: DB SUMMARY 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: DB Session ID: 7B70I6YKJ489YKD2MZN5 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: CURRENT file: CURRENT 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: IDENTITY file: IDENTITY 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 511 ; 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.error_if_exists: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.create_if_missing: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.paranoid_checks: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.flush_verify_memtable_count: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.env: 0x564a4babf4c0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.fs: PosixFileSystem 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.info_log: 0x564a4d7f8000 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_file_opening_threads: 16 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.statistics: (nil) 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.use_fsync: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_log_file_size: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.log_file_time_to_roll: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.keep_log_file_num: 1000 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.recycle_log_file_num: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.allow_fallocate: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.allow_mmap_reads: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.allow_mmap_writes: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.use_direct_reads: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.create_missing_column_families: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.db_log_dir: 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.wal_dir: 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.table_cache_numshardbits: 6 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.WAL_ttl_seconds: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.WAL_size_limit_MB: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.is_fd_close_on_exec: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.advise_random_on_open: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.db_write_buffer_size: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.write_buffer_manager: 0x564a4d7ec140 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.use_adaptive_mutex: 0 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.rate_limiter: (nil) 2026-03-31T17:42:33.530 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.wal_recovery_mode: 2 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.enable_thread_tracking: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.enable_pipelined_write: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.unordered_write: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.row_cache: None 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.wal_filter: None 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.allow_ingest_behind: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.two_write_queues: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.manual_wal_flush: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.wal_compression: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.atomic_flush: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.persist_stats_to_disk: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.write_dbid_to_manifest: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.log_readahead_size: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.best_efforts_recovery: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.allow_data_in_errors: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.db_host_id: __hostname__ 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.enforce_single_del_contracts: true 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_background_jobs: 2 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_background_compactions: -1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_subcompactions: 1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.delayed_write_rate : 16777216 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_total_wal_size: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.stats_dump_period_sec: 600 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.stats_persist_period_sec: 600 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_open_files: -1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bytes_per_sync: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.wal_bytes_per_sync: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.strict_bytes_per_sync: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_readahead_size: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_background_flushes: -1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Compression algorithms supported: 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kZSTD supported: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kXpressCompression supported: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kBZip2Compression supported: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kLZ4Compression supported: 1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kZlibCompression supported: 1 2026-03-31T17:42:33.531 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kLZ4HCCompression supported: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: kSnappyCompression supported: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Fast CRC32 supported: Supported on x86 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: DMutex implementation: pthread_mutex_t 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.merge_operator: 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_filter: None 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_filter_factory: None 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.sst_partitioner_factory: None 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.memtable_factory: SkipListFactory 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.table_factory: BlockBasedTable 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x564a4d7e8c00) 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: cache_index_and_filter_blocks: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: pin_top_level_index_and_filter: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: index_type: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: data_block_index_type: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: index_shortening: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: data_block_hash_table_util_ratio: 0.750000 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: checksum: 4 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: no_block_cache: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_cache: 0x564a4d80bb90 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_cache_name: BinnedLRUCache 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_cache_options: 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: capacity : 536870912 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: num_shard_bits : 4 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: strict_capacity_limit : 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: high_pri_pool_ratio: 0.000 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_cache_compressed: (nil) 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: persistent_cache: (nil) 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_size: 4096 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_size_deviation: 10 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_restart_interval: 16 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: index_block_restart_interval: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: metadata_block_size: 4096 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: partition_filters: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: use_delta_encoding: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: filter_policy: bloomfilter 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: whole_key_filtering: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: verify_compression: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: read_amp_bytes_per_bit: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: format_version: 5 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: enable_index_compression: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: block_align: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: max_auto_readahead_size: 262144 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: prepopulate_block_cache: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: initial_auto_readahead_size: 8192 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout: num_file_reads_for_auto_readahead: 2 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.write_buffer_size: 33554432 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_write_buffer_number: 2 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression: NoCompression 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression: Disabled 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.prefix_extractor: nullptr 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.num_levels: 7 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-03-31T17:42:33.532 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.window_bits: -14 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.level: 32767 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.strategy: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.enabled: false 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.target_file_size_base: 67108864 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.target_file_size_multiplier: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.arena_block_size: 1048576 2026-03-31T17:42:33.533 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.disable_auto_compactions: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.inplace_update_support: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.inplace_update_num_locks: 10000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.memtable_huge_page_size: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.bloom_locality: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.max_successive_merges: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.optimize_filters_for_hits: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.paranoid_file_checks: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.force_consistency_checks: 1 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.report_bg_io_stats: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.ttl: 2592000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.periodic_compaction_seconds: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.enable_blob_files: false 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.min_blob_size: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.blob_file_size: 268435456 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.blob_compression_type: NoCompression 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.enable_blob_garbage_collection: false 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.blob_file_starting_level: 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: e698145f-cb57-4057-9cc8-35cc4b59d9f2 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: EVENT_LOG_v1 {"time_micros": 1774978953111711, "job": 1, "event": "recovery_started", "wal_files": [4]} 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: EVENT_LOG_v1 {"time_micros": 1774978953112350, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1643, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "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": 1774978953, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "e698145f-cb57-4057-9cc8-35cc4b59d9f2", "db_session_id": "7B70I6YKJ489YKD2MZN5", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: EVENT_LOG_v1 {"time_micros": 1774978953112570, "job": 1, "event": "recovery_finished"} 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x564a4d80ce00 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: DB pointer 0x564a4d958000 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c does not exist in monmap, will attempt to join an existing cluster 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: ** DB Stats ** 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.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-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.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-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: 2026-03-31T17:42:33.534 INFO:journalctl@ceph.mon.c.vm07.stdout: ** Compaction Stats [default] ** 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.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-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: L0 1/0 1.60 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Sum 1/0 1.60 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 2.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.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 2.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: ** Compaction Stats [default] ** 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.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-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.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 2.6 0.00 0.00 1 0.001 0 0 0.0 0.0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: AddFile(Keys): cumulative 0, interval 0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Cumulative compaction: 0.00 GB write, 0.28 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Interval compaction: 0.00 GB write, 0.28 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.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-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Block cache BinnedLRUCache@0x564a4d80bb90#2 capacity: 512.00 MB usage: 0.86 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 2e-05 secs_since: 0 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(2,0.64 KB,0.00012219%) 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: ** File Read Latency Histogram By Level [default] ** 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: using public_addr v2:192.168.123.107:0/0 -> [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: starting mon.c rank -1 at public addrs [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] at bind addrs [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(???) e0 preinit fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).mds e1 new map 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).mds e1 print_map 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: e1 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: btime 2026-03-31T17:41:59:520857+0000 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: legacy client fscid: -1 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout: No filesystems configured 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mkfs cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.a is new leader, mons a in quorum (ranks 0) 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.a is new leader, mons a in quorum (ranks 0) 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: monmap epoch 1 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: last_changed 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: min_mon_release 20 (tentacle) 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: election_strategy: 1 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: fsmap 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: osdmap e1: 0 total, 0 up, 0 in 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e1: no daemons active 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2026457360' entity='client.admin' 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2150988129' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-03-31T17:42:33.535 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/901161677' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Activating manager daemon a 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e2: a(active, starting, since 0.00395221s) 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Manager daemon a is now available 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14100 192.168.123.102:0/802225229' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e3: a(active, since 1.00829s) 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3690061804' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3230025452' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3230025452' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2777991242' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2777991242' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e4: a(active, since 2s) 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1849186305' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Active manager daemon a restarted 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Activating manager daemon a 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: osdmap e2: 0 total, 0 up, 0 in 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e5: a(active, starting, since 0.00516836s) 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Manager daemon a is now available 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Found migration_current of "None". Setting to last migration. 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:10] ENGINE Bus STARTING 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e6: a(active, since 1.00829s) 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:10] ENGINE Serving on http://192.168.123.102:8765 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/182173894' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:10] ENGINE Serving on https://192.168.123.102:7150 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:10] ENGINE Bus STARTED 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:10] ENGINE Client ('192.168.123.102', 40440) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/182173894' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e7: a(active, since 2s) 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Generating ssh key... 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.536 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm02", "addr": "192.168.123.102", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Deploying cephadm binary to vm02 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Added host vm02 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1406100195' entity='client.admin' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Saving service mon spec with placement count:5 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Saving service mgr spec with placement count:2 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/518185903' entity='client.admin' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1616282520' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14118 192.168.123.102:0/1294511644' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1616282520' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e8: a(active, since 7s) 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1950147639' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Active manager daemon a restarted 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Activating manager daemon a 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: osdmap e3: 0 total, 0 up, 0 in 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e9: a(active, starting, since 0.00447815s) 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Manager daemon a is now available 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e10: a(active, since 1.00698s) 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:20] ENGINE Bus STARTING 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:20] ENGINE Serving on http://192.168.123.102:8765 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:20] ENGINE Serving on https://192.168.123.102:7150 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:20] ENGINE Bus STARTED 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: [31/Mar/2026:17:42:20] ENGINE Client ('192.168.123.102', 52376) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e11: a(active, since 2s) 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14170 -' 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-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1147619632' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/350645886' entity='client.admin' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:vm02", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2336072975' entity='client.admin' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:33.537 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm02:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm06", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Deploying cephadm binary to vm06 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mgrmap e12: a(active, since 6s) 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Added host vm06 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Deploying cephadm binary to vm07 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:vm06", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm06:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Added host vm07 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/217727581' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/217727581' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:vm07", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;vm02:192.168.123.102=a;vm06:192.168.123.106=b;vm07:192.168.123.107=c", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Saving service mon spec with placement vm02:192.168.123.102=a;vm06:192.168.123.106=b;vm07:192.168.123.107=c;count:3 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm07:/etc/ceph/ceph.conf 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: Updating vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='client.? 192.168.123.107:0/450424781' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:33.538 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:33 vm07 ceph-mon[55273]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-03-31T17:42:34.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:34 vm06 ceph-mon[57133]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: Deploying daemon mon.b on vm06 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: mon.a calling monitor election 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: mon.c calling monitor election 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: monmap epoch 2 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: last_changed 2026-03-31T17:42:33.135649+0000 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: min_mon_release 20 (tentacle) 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: election_strategy: 1 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:38.423 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: 1: [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon.c 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: fsmap 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: mgrmap e12: a(active, since 18s) 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: overall HEALTH_OK 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.424 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: Deploying daemon mon.b on vm06 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: mon.a calling monitor election 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: mon.c calling monitor election 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: monmap epoch 2 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: last_changed 2026-03-31T17:42:33.135649+0000 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: min_mon_release 20 (tentacle) 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: election_strategy: 1 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: 1: [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon.c 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: fsmap 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: mgrmap e12: a(active, since 18s) 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: overall HEALTH_OK 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:38.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:39.476 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:39 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 2026-03-31T17:42:39.133+0000 7f4ac10eb640 -1 mgr.server handle_report got status from non-daemon mon.c 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: Deploying daemon mon.b on vm06 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.a calling monitor election 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.c calling monitor election 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: monmap epoch 2 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: last_changed 2026-03-31T17:42:33.135649+0000 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: min_mon_release 20 (tentacle) 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: election_strategy: 1 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: 1: [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon.c 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: fsmap 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mgrmap e12: a(active, since 18s) 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: overall HEALTH_OK 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.a calling monitor election 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.c calling monitor election 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.b calling monitor election 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: monmap epoch 3 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: last_changed 2026-03-31T17:42:38.408713+0000 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: min_mon_release 20 (tentacle) 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: election_strategy: 1 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: 1: [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon.c 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: 2: [v2:192.168.123.106:3300/0,v1:192.168.123.106:6789/0] mon.b 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: fsmap 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: mgrmap e12: a(active, since 23s) 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: overall HEALTH_OK 2026-03-31T17:42:43.709 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.710 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.710 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.710 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.710 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.710 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:43.710 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:43 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: mon.a calling monitor election 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: mon.c calling monitor election 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: mon.b calling monitor election 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: monmap epoch 3 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: last_changed 2026-03-31T17:42:38.408713+0000 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: min_mon_release 20 (tentacle) 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: election_strategy: 1 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: 1: [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon.c 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: 2: [v2:192.168.123.106:3300/0,v1:192.168.123.106:6789/0] mon.b 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: fsmap 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: mgrmap e12: a(active, since 23s) 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: overall HEALTH_OK 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:43.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:43 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:43.733 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:42:43.733 INFO:teuthology.orchestra.run.vm07.stdout:{"epoch":3,"fsid":"cc53a1fa-2d28-11f1-b83b-53da7b16591a","modified":"2026-03-31T17:42:38.408713Z","created":"2026-03-31T17:41:58.588946Z","min_mon_release":20,"min_mon_release_name":"tentacle","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","tentacle"],"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.107:3300","nonce":0},{"type":"v1","addr":"192.168.123.107:6789","nonce":0}]},"addr":"192.168.123.107:6789/0","public_addr":"192.168.123.107:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:3300","nonce":0},{"type":"v1","addr":"192.168.123.106:6789","nonce":0}]},"addr":"192.168.123.106:6789/0","public_addr":"192.168.123.106:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2026-03-31T17:42:43.733 INFO:teuthology.orchestra.run.vm07.stderr:dumped monmap epoch 3 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: mon.a calling monitor election 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: mon.c calling monitor election 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: mon.b calling monitor election 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: monmap epoch 3 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: last_changed 2026-03-31T17:42:38.408713+0000 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: min_mon_release 20 (tentacle) 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: election_strategy: 1 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: 1: [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] mon.c 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: 2: [v2:192.168.123.106:3300/0,v1:192.168.123.106:6789/0] mon.b 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: fsmap 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: osdmap e4: 0 total, 0 up, 0 in 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: mgrmap e12: a(active, since 23s) 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: overall HEALTH_OK 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:43.734 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:43 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:43.781 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-03-31T17:42:43.781 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph config generate-minimal-conf 2026-03-31T17:42:43.903 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:44.145 INFO:teuthology.orchestra.run.vm02.stdout:# minimal ceph.conf for cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:44.146 INFO:teuthology.orchestra.run.vm02.stdout:[global] 2026-03-31T17:42:44.146 INFO:teuthology.orchestra.run.vm02.stdout: fsid = cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:42:44.146 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.106:3300/0,v1:192.168.123.106:6789/0] [v2:192.168.123.107:3300/0,v1:192.168.123.107:6789/0] 2026-03-31T17:42:44.189 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-03-31T17:42:44.189 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:44.189 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/ceph/ceph.conf 2026-03-31T17:42:44.216 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:44.216 DEBUG:teuthology.orchestra.run.vm02:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:44.278 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:42:44.278 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/etc/ceph/ceph.conf 2026-03-31T17:42:44.305 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:42:44.305 DEBUG:teuthology.orchestra.run.vm06:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:44.369 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:42:44.369 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/etc/ceph/ceph.conf 2026-03-31T17:42:44.397 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:42:44.397 DEBUG:teuthology.orchestra.run.vm07:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:42:44.461 INFO:tasks.cephadm:Adding mgr.a on vm02 2026-03-31T17:42:44.461 INFO:tasks.cephadm:Adding mgr.b on vm06 2026-03-31T17:42:44.462 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch apply mgr '2;vm02=a;vm06=b' 2026-03-31T17:42:44.633 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.c/config 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: Updating vm07:/etc/ceph/ceph.conf 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: Updating vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.107:0/3369204394' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2530222347' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.654 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:44 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:44.863 INFO:teuthology.orchestra.run.vm07.stdout:Scheduled mgr update... 2026-03-31T17:42:44.907 DEBUG:teuthology.orchestra.run.vm06:mgr.b> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.b.service 2026-03-31T17:42:44.908 DEBUG:tasks.cephadm:set 0 configs 2026-03-31T17:42:44.908 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph config dump 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: Updating vm07:/etc/ceph/ceph.conf 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: Updating vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.107:0/3369204394' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/2530222347' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.927 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:44 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: Updating vm07:/etc/ceph/ceph.conf 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: Updating vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.107:0/3369204394' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2530222347' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:42:44.929 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:44.930 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:44 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:42:45.027 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global dev auth_debug true 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 * 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global dev debug_asserts_on_shutdown true 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global basic log_to_file true 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global basic log_to_journald false 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global basic log_to_stderr false 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_allow_pool_delete true 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_cluster_log_to_file true 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_election_default_strategy 1 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_max_pg_per_osd 10000 2026-03-31T17:42:45.285 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced mon_warn_on_too_few_osds false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global dev ms_die_on_bug true 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global dev ms_die_on_old_message true 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced osd_pool_default_erasure_code_profile plugin=isa technique=reed_sol_van k=2 m=1 crush-failure-domain=osd 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:global advanced public_network 192.168.123.0/24 * 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced debug_mon 20/20 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced debug_ms 1/1 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced debug_paxos 20/20 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_data_avail_warn 5 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon dev mon_osd_prime_pg_temp true 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced debug_mgr 20/20 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced debug_ms 1/1 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mgr/cephadm/container_init True * 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mgr/cephadm/migration_current 7 * 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mgr/cephadm/use_agent false * 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-03-31T17:42:45.286 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev bdev_debug_aio true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced debug_ms 1/1 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced debug_osd 20/20 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_misdirected_ops true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_op_order true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_pg_log_writeout true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_shutdown true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_verify_cached_snaps true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_verify_missing_on_start true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd basic osd_mclock_iops_capacity_threshold_hdd 49000.000000 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd dev osd_mclock_skip_benchmark true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_memory_target_autotune true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_op_queue debug_random * 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_recover_clone_overlap true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:osd advanced osd_shutdown_pgref_assert true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:client.rgw advanced rgw_cache_enabled true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:client.rgw advanced rgw_enable_ops_log true 2026-03-31T17:42:45.287 INFO:teuthology.orchestra.run.vm02.stdout:client.rgw advanced rgw_enable_usage_log true 2026-03-31T17:42:45.345 INFO:tasks.cephadm:Deploying OSDs... 2026-03-31T17:42:45.345 DEBUG:teuthology.orchestra.run.vm02:> set -ex 2026-03-31T17:42:45.345 DEBUG:teuthology.orchestra.run.vm02:> dd if=/scratch_devs of=/dev/stdout 2026-03-31T17:42:45.401 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-03-31T17:42:45.401 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vg_nvme/lv_1 2026-03-31T17:42:45.458 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 981 Links: 1 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-31 17:42:24.000697265 +0000 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-31 17:39:43.778454044 +0000 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-31 17:39:43.778454044 +0000 2026-03-31T17:42:45.459 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-31 17:39:43.778454044 +0000 2026-03-31T17:42:45.459 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-03-31T17:42:45.522 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:42:45 vm06 systemd[1]: Started Ceph mgr.b for cc53a1fa-2d28-11f1-b83b-53da7b16591a. 2026-03-31T17:42:45.524 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-31T17:42:45.524 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-31T17:42:45.524 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000153888 s, 3.3 MB/s 2026-03-31T17:42:45.525 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-03-31T17:42:45.554 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 2026-03-31T17:42:45.408+0000 7f4ac10eb640 -1 mgr.server handle_report got status from non-daemon mon.b 2026-03-31T17:42:45.571 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vg_nvme/lv_2 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 969 Links: 1 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-31 17:42:24.000697265 +0000 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-31 17:39:43.775454040 +0000 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-31 17:39:43.775454040 +0000 2026-03-31T17:42:45.626 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-31 17:39:43.775454040 +0000 2026-03-31T17:42:45.626 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-03-31T17:42:45.688 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-31T17:42:45.688 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-31T17:42:45.688 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000136176 s, 3.8 MB/s 2026-03-31T17:42:45.689 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-03-31T17:42:45.744 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vg_nvme/lv_3 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 959 Links: 1 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-31 17:42:24.000697265 +0000 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-31 17:39:43.771454036 +0000 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-31 17:39:43.771454036 +0000 2026-03-31T17:42:45.800 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-31 17:39:43.771454036 +0000 2026-03-31T17:42:45.800 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: Reconfiguring mon.a (unknown last config time)... 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: Reconfiguring daemon mon.a on vm02 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: Reconfiguring mon.b (monmap changed)... 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: Reconfiguring daemon mon.b on vm06 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: Reconfiguring mon.c (monmap changed)... 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: Reconfiguring daemon mon.c on vm07 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:45.808 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/1432099375' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.809 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:42:45 vm06 ceph-mgr[58107]: -- 192.168.123.106:0/2270028584 <== mon.2 v2:192.168.123.106:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x55c9ad7a0000 con 0x55c9ad77f000 2026-03-31T17:42:45.859 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: Reconfiguring mon.a (unknown last config time)... 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: Reconfiguring daemon mon.a on vm02 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: Reconfiguring mon.b (monmap changed)... 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: Reconfiguring daemon mon.b on vm06 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: Reconfiguring mon.c (monmap changed)... 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: Reconfiguring daemon mon.c on vm07 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1432099375' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.860 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:45 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:45.861 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-31T17:42:45.861 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-31T17:42:45.861 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000148389 s, 3.5 MB/s 2026-03-31T17:42:45.862 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-03-31T17:42:45.917 DEBUG:teuthology.orchestra.run.vm02:> stat /dev/vg_nvme/lv_4 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout:Device: 6h/6d Inode: 972 Links: 1 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout:Access: 2026-03-31 17:42:24.000697265 +0000 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout:Modify: 2026-03-31 17:39:43.775454040 +0000 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout:Change: 2026-03-31 17:39:43.775454040 +0000 2026-03-31T17:42:45.975 INFO:teuthology.orchestra.run.vm02.stdout: Birth: 2026-03-31 17:39:43.775454040 +0000 2026-03-31T17:42:45.975 DEBUG:teuthology.orchestra.run.vm02:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: Reconfiguring mon.a (unknown last config time)... 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: Reconfiguring daemon mon.a on vm02 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: Reconfiguring mon.b (monmap changed)... 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: Reconfiguring daemon mon.b on vm06 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: Reconfiguring mon.c (monmap changed)... 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: Reconfiguring daemon mon.c on vm07 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1432099375' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:45 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.038 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records in 2026-03-31T17:42:46.038 INFO:teuthology.orchestra.run.vm02.stderr:1+0 records out 2026-03-31T17:42:46.038 INFO:teuthology.orchestra.run.vm02.stderr:512 bytes copied, 0.000182533 s, 2.8 MB/s 2026-03-31T17:42:46.039 DEBUG:teuthology.orchestra.run.vm02:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-03-31T17:42:46.094 DEBUG:teuthology.orchestra.run.vm06:> set -ex 2026-03-31T17:42:46.094 DEBUG:teuthology.orchestra.run.vm06:> dd if=/scratch_devs of=/dev/stdout 2026-03-31T17:42:46.109 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-03-31T17:42:46.109 DEBUG:teuthology.orchestra.run.vm06:> stat /dev/vg_nvme/lv_1 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout:Device: 6h/6d Inode: 938 Links: 1 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout:Access: 2026-03-31 17:42:45.337653613 +0000 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout:Modify: 2026-03-31 17:39:44.514578824 +0000 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout:Change: 2026-03-31 17:39:44.514578824 +0000 2026-03-31T17:42:46.165 INFO:teuthology.orchestra.run.vm06.stdout: Birth: 2026-03-31 17:39:44.514578824 +0000 2026-03-31T17:42:46.165 DEBUG:teuthology.orchestra.run.vm06:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-03-31T17:42:46.230 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records in 2026-03-31T17:42:46.231 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records out 2026-03-31T17:42:46.231 INFO:teuthology.orchestra.run.vm06.stderr:512 bytes copied, 0.00019237 s, 2.7 MB/s 2026-03-31T17:42:46.232 DEBUG:teuthology.orchestra.run.vm06:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-03-31T17:42:46.291 DEBUG:teuthology.orchestra.run.vm06:> stat /dev/vg_nvme/lv_2 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout:Device: 6h/6d Inode: 954 Links: 1 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout:Access: 2026-03-31 17:42:45.337653613 +0000 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout:Modify: 2026-03-31 17:39:44.525578838 +0000 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout:Change: 2026-03-31 17:39:44.525578838 +0000 2026-03-31T17:42:46.347 INFO:teuthology.orchestra.run.vm06.stdout: Birth: 2026-03-31 17:39:44.525578838 +0000 2026-03-31T17:42:46.347 DEBUG:teuthology.orchestra.run.vm06:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-03-31T17:42:46.409 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records in 2026-03-31T17:42:46.409 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records out 2026-03-31T17:42:46.409 INFO:teuthology.orchestra.run.vm06.stderr:512 bytes copied, 0.000185096 s, 2.8 MB/s 2026-03-31T17:42:46.410 DEBUG:teuthology.orchestra.run.vm06:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-03-31T17:42:46.466 DEBUG:teuthology.orchestra.run.vm06:> stat /dev/vg_nvme/lv_3 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout:Device: 6h/6d Inode: 948 Links: 1 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout:Access: 2026-03-31 17:42:45.337653613 +0000 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout:Modify: 2026-03-31 17:39:44.516578827 +0000 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout:Change: 2026-03-31 17:39:44.516578827 +0000 2026-03-31T17:42:46.521 INFO:teuthology.orchestra.run.vm06.stdout: Birth: 2026-03-31 17:39:44.516578827 +0000 2026-03-31T17:42:46.522 DEBUG:teuthology.orchestra.run.vm06:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-03-31T17:42:46.582 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records in 2026-03-31T17:42:46.582 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records out 2026-03-31T17:42:46.582 INFO:teuthology.orchestra.run.vm06.stderr:512 bytes copied, 0.000211145 s, 2.4 MB/s 2026-03-31T17:42:46.583 DEBUG:teuthology.orchestra.run.vm06:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-03-31T17:42:46.638 DEBUG:teuthology.orchestra.run.vm06:> stat /dev/vg_nvme/lv_4 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout:Device: 6h/6d Inode: 945 Links: 1 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout:Access: 2026-03-31 17:42:45.338653615 +0000 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout:Modify: 2026-03-31 17:39:44.515578826 +0000 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout:Change: 2026-03-31 17:39:44.515578826 +0000 2026-03-31T17:42:46.693 INFO:teuthology.orchestra.run.vm06.stdout: Birth: 2026-03-31 17:39:44.515578826 +0000 2026-03-31T17:42:46.693 DEBUG:teuthology.orchestra.run.vm06:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;vm02=a;vm06=b", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: Saving service mgr spec with placement vm02=a;vm06=b;count:2 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: Deploying daemon mgr.b on vm06 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.753 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.754 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-b[58103]: /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-31T17:42:46.754 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-b[58103]: 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-31T17:42:46.754 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:42:46 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-b[58103]: from numpy import show_config as show_numpy_config 2026-03-31T17:42:46.755 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records in 2026-03-31T17:42:46.755 INFO:teuthology.orchestra.run.vm06.stderr:1+0 records out 2026-03-31T17:42:46.755 INFO:teuthology.orchestra.run.vm06.stderr:512 bytes copied, 0.000158196 s, 3.2 MB/s 2026-03-31T17:42:46.756 DEBUG:teuthology.orchestra.run.vm06:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-03-31T17:42:46.810 DEBUG:teuthology.orchestra.run.vm07:> set -ex 2026-03-31T17:42:46.810 DEBUG:teuthology.orchestra.run.vm07:> dd if=/scratch_devs of=/dev/stdout 2026-03-31T17:42:46.826 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2026-03-31T17:42:46.826 DEBUG:teuthology.orchestra.run.vm07:> stat /dev/vg_nvme/lv_1 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout:Device: 6h/6d Inode: 954 Links: 1 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout:Access: 2026-03-31 17:42:32.881264829 +0000 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout:Modify: 2026-03-31 17:39:44.093009494 +0000 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout:Change: 2026-03-31 17:39:44.093009494 +0000 2026-03-31T17:42:46.882 INFO:teuthology.orchestra.run.vm07.stdout: Birth: 2026-03-31 17:39:44.093009494 +0000 2026-03-31T17:42:46.883 DEBUG:teuthology.orchestra.run.vm07:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;vm02=a;vm06=b", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: Saving service mgr spec with placement vm02=a;vm06=b;count:2 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: Deploying daemon mgr.b on vm06 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.945 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:46 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.947 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records in 2026-03-31T17:42:46.947 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records out 2026-03-31T17:42:46.947 INFO:teuthology.orchestra.run.vm07.stderr:512 bytes copied, 0.000132757 s, 3.9 MB/s 2026-03-31T17:42:46.948 DEBUG:teuthology.orchestra.run.vm07:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='client.24103 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;vm02=a;vm06=b", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: Saving service mgr spec with placement vm02=a;vm06=b;count:2 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: Deploying daemon mgr.b on vm06 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:46 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:47.003 DEBUG:teuthology.orchestra.run.vm07:> stat /dev/vg_nvme/lv_2 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout:Device: 6h/6d Inode: 948 Links: 1 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout:Access: 2026-03-31 17:42:32.881264829 +0000 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout:Modify: 2026-03-31 17:39:44.090009491 +0000 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout:Change: 2026-03-31 17:39:44.090009491 +0000 2026-03-31T17:42:47.060 INFO:teuthology.orchestra.run.vm07.stdout: Birth: 2026-03-31 17:39:44.090009491 +0000 2026-03-31T17:42:47.060 DEBUG:teuthology.orchestra.run.vm07:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-03-31T17:42:47.122 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records in 2026-03-31T17:42:47.122 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records out 2026-03-31T17:42:47.122 INFO:teuthology.orchestra.run.vm07.stderr:512 bytes copied, 0.000139241 s, 3.7 MB/s 2026-03-31T17:42:47.123 DEBUG:teuthology.orchestra.run.vm07:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-03-31T17:42:47.179 DEBUG:teuthology.orchestra.run.vm07:> stat /dev/vg_nvme/lv_3 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout:Device: 6h/6d Inode: 960 Links: 1 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout:Access: 2026-03-31 17:42:32.882264830 +0000 2026-03-31T17:42:47.235 INFO:teuthology.orchestra.run.vm07.stdout:Modify: 2026-03-31 17:39:44.094009495 +0000 2026-03-31T17:42:47.236 INFO:teuthology.orchestra.run.vm07.stdout:Change: 2026-03-31 17:39:44.094009495 +0000 2026-03-31T17:42:47.236 INFO:teuthology.orchestra.run.vm07.stdout: Birth: 2026-03-31 17:39:44.094009495 +0000 2026-03-31T17:42:47.236 DEBUG:teuthology.orchestra.run.vm07:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-03-31T17:42:47.298 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records in 2026-03-31T17:42:47.298 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records out 2026-03-31T17:42:47.298 INFO:teuthology.orchestra.run.vm07.stderr:512 bytes copied, 9.9457e-05 s, 5.1 MB/s 2026-03-31T17:42:47.299 DEBUG:teuthology.orchestra.run.vm07:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-03-31T17:42:47.354 DEBUG:teuthology.orchestra.run.vm07:> stat /dev/vg_nvme/lv_4 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout:Device: 6h/6d Inode: 968 Links: 1 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout:Context: system_u:object_r:device_t:s0 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout:Access: 2026-03-31 17:42:32.882264830 +0000 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout:Modify: 2026-03-31 17:39:44.097009497 +0000 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout:Change: 2026-03-31 17:39:44.097009497 +0000 2026-03-31T17:42:47.409 INFO:teuthology.orchestra.run.vm07.stdout: Birth: 2026-03-31 17:39:44.097009497 +0000 2026-03-31T17:42:47.410 DEBUG:teuthology.orchestra.run.vm07:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-03-31T17:42:47.470 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records in 2026-03-31T17:42:47.470 INFO:teuthology.orchestra.run.vm07.stderr:1+0 records out 2026-03-31T17:42:47.470 INFO:teuthology.orchestra.run.vm07.stderr:512 bytes copied, 0.000126156 s, 4.1 MB/s 2026-03-31T17:42:47.471 DEBUG:teuthology.orchestra.run.vm07:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-03-31T17:42:47.525 INFO:tasks.cephadm:Deploying osd.0 on vm02 with /dev/vg_nvme/lv_4... 2026-03-31T17:42:47.525 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- lvm zap /dev/vg_nvme/lv_4 2026-03-31T17:42:47.650 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:47.853 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:47 vm02 ceph-mon[51704]: Reconfiguring mgr.a (unknown last config time)... 2026-03-31T17:42:47.853 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:47 vm02 ceph-mon[51704]: Reconfiguring daemon mgr.a on vm02 2026-03-31T17:42:47.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:47 vm06 ceph-mon[57133]: Reconfiguring mgr.a (unknown last config time)... 2026-03-31T17:42:47.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:47 vm06 ceph-mon[57133]: Reconfiguring daemon mgr.a on vm02 2026-03-31T17:42:48.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:47 vm07 ceph-mon[55273]: Reconfiguring mgr.a (unknown last config time)... 2026-03-31T17:42:48.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:47 vm07 ceph-mon[55273]: Reconfiguring daemon mgr.a on vm02 2026-03-31T17:42:48.075 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:48.091 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch daemon add osd vm02:vg_nvme/lv_4 --skip-validation 2026-03-31T17:42:48.211 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:48.825 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:48.825 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: Standby manager daemon b started 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-03-31T17:42:48.826 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:48 vm02 ceph-mon[51704]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: Standby manager daemon b started 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-03-31T17:42:48.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:48 vm06 ceph-mon[57133]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: Standby manager daemon b started 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-03-31T17:42:49.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:48 vm07 ceph-mon[55273]: from='mgr.? 192.168.123.106:0/630493694' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: osd.default does not exist. Creating it now. 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: Creating OSDs with service ID: default on vm02:['vg_nvme/lv_4'] 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: Marking host: vm02 for OSDSpec preview refresh. 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: Saving service osd.default spec with placement vm02 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/753946953' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb"} : dispatch 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/753946953' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb"}]': finished 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: osdmap e5: 1 total, 0 up, 1 in 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2077664592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: mgrmap e13: a(active, since 29s), standbys: b 2026-03-31T17:42:49.915 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:49 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: osd.default does not exist. Creating it now. 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: Creating OSDs with service ID: default on vm02:['vg_nvme/lv_4'] 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: Marking host: vm02 for OSDSpec preview refresh. 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: Saving service osd.default spec with placement vm02 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/753946953' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb"} : dispatch 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/753946953' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb"}]': finished 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: osdmap e5: 1 total, 0 up, 1 in 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/2077664592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: mgrmap e13: a(active, since 29s), standbys: b 2026-03-31T17:42:49.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:49 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: from='client.14223 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: osd.default does not exist. Creating it now. 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: Creating OSDs with service ID: default on vm02:['vg_nvme/lv_4'] 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: Marking host: vm02 for OSDSpec preview refresh. 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: Saving service osd.default spec with placement vm02 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/753946953' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb"} : dispatch 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/753946953' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb"}]': finished 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: osdmap e5: 1 total, 0 up, 1 in 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2077664592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: mgrmap e13: a(active, since 29s), standbys: b 2026-03-31T17:42:50.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:49 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-03-31T17:42:50.701 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:50 vm02 ceph-mon[51704]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:50.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:50 vm06 ceph-mon[57133]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:51.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:50 vm07 ceph-mon[55273]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:51.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:42:51.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:51.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:51 vm06 ceph-mon[57133]: Deploying daemon osd.0 on vm02 2026-03-31T17:42:51.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:42:51.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:51.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:42:51.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:51.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:51 vm02 ceph-mon[51704]: Deploying daemon osd.0 on vm02 2026-03-31T17:42:51.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:42:51.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:52.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:42:52.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:52.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:51 vm07 ceph-mon[55273]: Deploying daemon osd.0 on vm02 2026-03-31T17:42:52.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:42:52.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:52.772 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:52 vm02 ceph-mon[51704]: Deploying daemon osd.0 on vm02 2026-03-31T17:42:52.772 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:52 vm02 ceph-mon[51704]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:52.772 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:52.772 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:52.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:52 vm06 ceph-mon[57133]: Deploying daemon osd.0 on vm02 2026-03-31T17:42:52.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:52 vm06 ceph-mon[57133]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:52.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:52.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:52 vm07 ceph-mon[55273]: Deploying daemon osd.0 on vm02 2026-03-31T17:42:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:52 vm07 ceph-mon[55273]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:53.865 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:53 vm02 ceph-mon[51704]: from='osd.0 [v2:192.168.123.102:6802/946269777,v1:192.168.123.102:6803/946269777]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:53.865 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:53 vm02 ceph-mon[51704]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:53.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:53 vm06 ceph-mon[57133]: from='osd.0 [v2:192.168.123.102:6802/946269777,v1:192.168.123.102:6803/946269777]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:53.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:53 vm06 ceph-mon[57133]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:54.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:53 vm07 ceph-mon[55273]: from='osd.0 [v2:192.168.123.102:6802/946269777,v1:192.168.123.102:6803/946269777]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:54.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:53 vm07 ceph-mon[55273]: from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:54.693 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:54 vm02 ceph-mon[51704]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:54.693 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:54 vm02 ceph-mon[51704]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-31T17:42:54.693 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:54 vm02 ceph-mon[51704]: osdmap e6: 1 total, 0 up, 1 in 2026-03-31T17:42:54.694 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:54 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:54 vm06 ceph-mon[57133]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:54 vm06 ceph-mon[57133]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-31T17:42:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:54 vm06 ceph-mon[57133]: osdmap e6: 1 total, 0 up, 1 in 2026-03-31T17:42:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:54 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:55.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:54 vm07 ceph-mon[55273]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:55.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:54 vm07 ceph-mon[55273]: from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-31T17:42:55.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:54 vm07 ceph-mon[55273]: osdmap e6: 1 total, 0 up, 1 in 2026-03-31T17:42:55.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:54 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:55.439 INFO:teuthology.orchestra.run.vm02.stdout:Created osd(s) 0 on host 'vm02' 2026-03-31T17:42:55.485 DEBUG:teuthology.orchestra.run.vm02:osd.0> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.0.service 2026-03-31T17:42:55.486 INFO:tasks.cephadm:Deploying osd.1 on vm02 with /dev/vg_nvme/lv_3... 2026-03-31T17:42:55.486 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- lvm zap /dev/vg_nvme/lv_3 2026-03-31T17:42:55.660 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:55 vm02 ceph-mon[51704]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:55 vm02 ceph-mon[51704]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:56.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:55 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:55 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:55 vm07 ceph-mon[55273]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:56.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:55 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:55 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:55 vm07 ceph-mon[55273]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:56.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:55 vm06 ceph-mon[57133]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]} : dispatch 2026-03-31T17:42:56.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:56.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:55 vm06 ceph-mon[57133]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:56.558 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:42:56.577 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch daemon add osd vm02:vg_nvme/lv_3 --skip-validation 2026-03-31T17:42:56.706 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: osdmap e7: 1 total, 0 up, 1 in 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]} : dispatch 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:56 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: osdmap e7: 1 total, 0 up, 1 in 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]} : dispatch 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.132 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:56 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.132 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:42:56 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0[62679]: 2026-03-31T17:42:56.742+0000 7fa0df9fe640 -1 osd.0 0 waiting for initial osdmap 2026-03-31T17:42:57.132 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:42:56 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0[62679]: 2026-03-31T17:42:56.748+0000 7fa0dafce640 -1 osd.0 8 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["0"]}]': finished 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: osdmap e7: 1 total, 0 up, 1 in 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]} : dispatch 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:56 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: osdmap e8: 1 total, 0 up, 1 in 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: osd.default does not exist. Creating it now. 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: Creating OSDs with service ID: default on vm02:['vg_nvme/lv_3'] 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: Marking host: vm02 for OSDSpec preview refresh. 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: Saving service osd.default spec with placement vm02 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: Detected new or changed devices on vm02 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.963 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: Adjusting osd_memory_target on vm02 to 1659M 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:57.964 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:57 vm02 ceph-mon[51704]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: osdmap e8: 1 total, 0 up, 1 in 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: osd.default does not exist. Creating it now. 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: Creating OSDs with service ID: default on vm02:['vg_nvme/lv_3'] 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: Marking host: vm02 for OSDSpec preview refresh. 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: Saving service osd.default spec with placement vm02 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: Detected new or changed devices on vm02 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: Adjusting osd_memory_target on vm02 to 1659M 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:58.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:57 vm07 ceph-mon[55273]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: osdmap e8: 1 total, 0 up, 1 in 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='client.14253 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm02:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: osd.default does not exist. Creating it now. 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: Creating OSDs with service ID: default on vm02:['vg_nvme/lv_3'] 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: Marking host: vm02 for OSDSpec preview refresh. 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: Saving service osd.default spec with placement vm02 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: Detected new or changed devices on vm02 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: Adjusting osd_memory_target on vm02 to 1659M 2026-03-31T17:42:58.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:42:58.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:57 vm06 ceph-mon[57133]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: purged_snaps scrub starts 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076] boot 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: osdmap e9: 1 total, 1 up, 1 in 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/98274802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7afd2493-7878-4998-a407-b3b2e2c15659"} : dispatch 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/98274802' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7afd2493-7878-4998-a407-b3b2e2c15659"}]': finished 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: osdmap e10: 2 total, 1 up, 2 in 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:42:58.928 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:58 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/4017674622' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: purged_snaps scrub starts 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: purged_snaps scrub ok 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076] boot 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: osdmap e9: 1 total, 1 up, 1 in 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/98274802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7afd2493-7878-4998-a407-b3b2e2c15659"} : dispatch 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/98274802' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7afd2493-7878-4998-a407-b3b2e2c15659"}]': finished 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: osdmap e10: 2 total, 1 up, 2 in 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:42:59.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:58 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/4017674622' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: purged_snaps scrub starts 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: osd.0 [v2:192.168.123.102:6802/501137076,v1:192.168.123.102:6803/501137076] boot 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: osdmap e9: 1 total, 1 up, 1 in 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/98274802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7afd2493-7878-4998-a407-b3b2e2c15659"} : dispatch 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/98274802' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7afd2493-7878-4998-a407-b3b2e2c15659"}]': finished 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: osdmap e10: 2 total, 1 up, 2 in 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:42:59.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:58 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/4017674622' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: osdmap e11: 2 total, 1 up, 2 in 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: Deploying daemon osd.1 on vm02 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: pgmap v21: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:00.003 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:42:59 vm02 ceph-mon[51704]: Deploying daemon osd.1 on vm02 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: osdmap e11: 2 total, 1 up, 2 in 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: Deploying daemon osd.1 on vm02 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: pgmap v21: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:00.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:42:59 vm06 ceph-mon[57133]: Deploying daemon osd.1 on vm02 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: osdmap e11: 2 total, 1 up, 2 in 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: Deploying daemon osd.1 on vm02 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: pgmap v21: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:00.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:42:59 vm07 ceph-mon[55273]: Deploying daemon osd.1 on vm02 2026-03-31T17:43:02.402 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:02.402 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:02.402 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:02 vm02 ceph-mon[51704]: from='osd.1 [v2:192.168.123.102:6810/3883580839,v1:192.168.123.102:6811/3883580839]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:02.402 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:02 vm02 ceph-mon[51704]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:02.402 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:02 vm02 ceph-mon[51704]: pgmap v22: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:02 vm06 ceph-mon[57133]: from='osd.1 [v2:192.168.123.102:6810/3883580839,v1:192.168.123.102:6811/3883580839]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:02 vm06 ceph-mon[57133]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:02 vm06 ceph-mon[57133]: pgmap v22: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:02.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:02 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:02.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:02 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:02.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:02 vm07 ceph-mon[55273]: from='osd.1 [v2:192.168.123.102:6810/3883580839,v1:192.168.123.102:6811/3883580839]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:02.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:02 vm07 ceph-mon[55273]: from='osd.1 ' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:02.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:02 vm07 ceph-mon[55273]: pgmap v22: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:03.470 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:03 vm02 ceph-mon[51704]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-31T17:43:03.470 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:03 vm02 ceph-mon[51704]: osdmap e12: 2 total, 1 up, 2 in 2026-03-31T17:43:03.470 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:03 vm06 ceph-mon[57133]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-31T17:43:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:03 vm06 ceph-mon[57133]: osdmap e12: 2 total, 1 up, 2 in 2026-03-31T17:43:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:03.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:03 vm07 ceph-mon[55273]: from='osd.1 ' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-31T17:43:03.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:03 vm07 ceph-mon[55273]: osdmap e12: 2 total, 1 up, 2 in 2026-03-31T17:43:03.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:03 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:04.224 INFO:teuthology.orchestra.run.vm02.stdout:Created osd(s) 1 on host 'vm02' 2026-03-31T17:43:04.271 DEBUG:teuthology.orchestra.run.vm02:osd.1> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.1.service 2026-03-31T17:43:04.273 INFO:tasks.cephadm:Deploying osd.2 on vm06 with /dev/vg_nvme/lv_4... 2026-03-31T17:43:04.273 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- lvm zap /dev/vg_nvme/lv_4 2026-03-31T17:43:04.398 INFO:teuthology.orchestra.run.vm06.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.b/config 2026-03-31T17:43:04.559 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.559 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.559 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:04 vm06 ceph-mon[57133]: pgmap v24: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:04.559 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:04 vm06 ceph-mon[57133]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:04.559 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.559 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.778 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:04 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.778 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:04 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:04 vm07 ceph-mon[55273]: pgmap v24: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:04.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:04 vm07 ceph-mon[55273]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:04.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:04 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:04 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.896 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.896 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.896 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:04 vm02 ceph-mon[51704]: pgmap v24: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:04.896 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:04 vm02 ceph-mon[51704]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]} : dispatch 2026-03-31T17:43:04.896 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.896 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:04.902 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:43:04.915 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch daemon add osd vm06:vg_nvme/lv_4 --skip-validation 2026-03-31T17:43:05.047 INFO:teuthology.orchestra.run.vm06.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.b/config 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: osdmap e13: 2 total, 1 up, 2 in 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]} : dispatch 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:05 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.778 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-31T17:43:05.778 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: osdmap e13: 2 total, 1 up, 2 in 2026-03-31T17:43:05.778 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]} : dispatch 2026-03-31T17:43:05.778 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.779 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:05 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["1"]}]': finished 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: osdmap e13: 2 total, 1 up, 2 in 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]} : dispatch 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:05 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:05.976 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:43:05 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1[69580]: 2026-03-31T17:43:05.522+0000 7f98db880640 -1 osd.1 0 waiting for initial osdmap 2026-03-31T17:43:05.976 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:43:05 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1[69580]: 2026-03-31T17:43:05.527+0000 7f98d664f640 -1 osd.1 14 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm06:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: osd.default does not exist. Creating it now. 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: Creating OSDs with service ID: default on vm06:['vg_nvme/lv_4'] 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: Marking host: vm06 for OSDSpec preview refresh. 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: Saving service osd.default spec with placement vm06 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: osdmap e14: 2 total, 1 up, 2 in 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: pgmap v27: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='client.? 192.168.123.106:0/614012684' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"}]': finished 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045] boot 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: osdmap e15: 3 total, 2 up, 3 in 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:06.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:06 vm06 ceph-mon[57133]: from='client.? 192.168.123.106:0/2652920279' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm06:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: osd.default does not exist. Creating it now. 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: Creating OSDs with service ID: default on vm06:['vg_nvme/lv_4'] 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: Marking host: vm06 for OSDSpec preview refresh. 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: Saving service osd.default spec with placement vm06 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: osdmap e14: 2 total, 1 up, 2 in 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: pgmap v27: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='client.? 192.168.123.106:0/614012684' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"}]': finished 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045] boot 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: osdmap e15: 3 total, 2 up, 3 in 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:06.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:06 vm02 ceph-mon[51704]: from='client.? 192.168.123.106:0/2652920279' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='client.24155 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm06:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: osd.default does not exist. Creating it now. 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: Creating OSDs with service ID: default on vm06:['vg_nvme/lv_4'] 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: Marking host: vm06 for OSDSpec preview refresh. 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: Saving service osd.default spec with placement vm06 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0195, "args": ["host=vm02", "root=default"]}]': finished 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: osdmap e14: 2 total, 1 up, 2 in 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: pgmap v27: 0 pgs: ; 0 B data, 27 MiB used, 20 GiB / 20 GiB avail 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='client.? 192.168.123.106:0/614012684' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "405038be-4a22-4cdb-80bd-6cf74243e1ab"}]': finished 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: osd.1 [v2:192.168.123.102:6810/3448303045,v1:192.168.123.102:6811/3448303045] boot 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: osdmap e15: 3 total, 2 up, 3 in 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:07.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:06 vm07 ceph-mon[55273]: from='client.? 192.168.123.106:0/2652920279' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: purged_snaps scrub starts 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: Detected new or changed devices on vm02 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: Adjusting osd_memory_target on vm02 to 829.7M 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: Unable to set osd_memory_target on vm02 to 870050201: error parsing value: Value '870050201' is below minimum 939524096 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:07.807 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:07 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: purged_snaps scrub starts 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: Detected new or changed devices on vm02 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: Adjusting osd_memory_target on vm02 to 829.7M 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: Unable to set osd_memory_target on vm02 to 870050201: error parsing value: Value '870050201' is below minimum 939524096 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:07.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:07 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:08.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: purged_snaps scrub starts 2026-03-31T17:43:08.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: purged_snaps scrub ok 2026-03-31T17:43:08.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: Detected new or changed devices on vm02 2026-03-31T17:43:08.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: Adjusting osd_memory_target on vm02 to 829.7M 2026-03-31T17:43:08.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: Unable to set osd_memory_target on vm02 to 870050201: error parsing value: Value '870050201' is below minimum 939524096 2026-03-31T17:43:08.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:08.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:07 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:08.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:08 vm06 ceph-mon[57133]: Deploying daemon osd.2 on vm06 2026-03-31T17:43:08.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:08 vm06 ceph-mon[57133]: osdmap e16: 3 total, 2 up, 3 in 2026-03-31T17:43:08.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:08 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:08.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:08 vm06 ceph-mon[57133]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:08.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:08 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:08.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:08 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:08 vm02 ceph-mon[51704]: Deploying daemon osd.2 on vm06 2026-03-31T17:43:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:08 vm02 ceph-mon[51704]: osdmap e16: 3 total, 2 up, 3 in 2026-03-31T17:43:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:08 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:08 vm02 ceph-mon[51704]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:08 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:08.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:08 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:09.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:08 vm07 ceph-mon[55273]: Deploying daemon osd.2 on vm06 2026-03-31T17:43:09.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:08 vm07 ceph-mon[55273]: osdmap e16: 3 total, 2 up, 3 in 2026-03-31T17:43:09.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:08 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:09.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:08 vm07 ceph-mon[55273]: pgmap v30: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:09.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:08 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:09.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:08 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:09.591 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:09 vm06 ceph-mon[57133]: Deploying daemon osd.2 on vm06 2026-03-31T17:43:09.591 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:09 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:09.591 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:09 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:09 vm02 ceph-mon[51704]: Deploying daemon osd.2 on vm06 2026-03-31T17:43:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:09 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:09.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:09 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:10.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:09 vm07 ceph-mon[55273]: Deploying daemon osd.2 on vm06 2026-03-31T17:43:10.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:09 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:10.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:09 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:10.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:10 vm06 ceph-mon[57133]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:10.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:10 vm06 ceph-mon[57133]: from='osd.2 [v2:192.168.123.106:6800/1656338966,v1:192.168.123.106:6801/1656338966]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:10.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:10 vm06 ceph-mon[57133]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:10 vm02 ceph-mon[51704]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:10 vm02 ceph-mon[51704]: from='osd.2 [v2:192.168.123.106:6800/1656338966,v1:192.168.123.106:6801/1656338966]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:10 vm02 ceph-mon[51704]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:11.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:10 vm07 ceph-mon[55273]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:11.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:10 vm07 ceph-mon[55273]: from='osd.2 [v2:192.168.123.106:6800/1656338966,v1:192.168.123.106:6801/1656338966]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:11.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:10 vm07 ceph-mon[55273]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:11.734 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:11 vm06 ceph-mon[57133]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-31T17:43:11.734 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:11 vm06 ceph-mon[57133]: osdmap e17: 3 total, 2 up, 3 in 2026-03-31T17:43:11.734 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:11 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:11.734 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:11 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:11.734 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:11 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:11 vm02 ceph-mon[51704]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-31T17:43:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:11 vm02 ceph-mon[51704]: osdmap e17: 3 total, 2 up, 3 in 2026-03-31T17:43:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:11 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:11 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:11.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:11 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:12.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:11 vm07 ceph-mon[55273]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-31T17:43:12.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:11 vm07 ceph-mon[55273]: osdmap e17: 3 total, 2 up, 3 in 2026-03-31T17:43:12.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:11 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:12.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:11 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:12.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:11 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:12.276 INFO:teuthology.orchestra.run.vm06.stdout:Created osd(s) 2 on host 'vm06' 2026-03-31T17:43:12.339 DEBUG:teuthology.orchestra.run.vm06:osd.2> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.2.service 2026-03-31T17:43:12.340 INFO:tasks.cephadm:Deploying osd.3 on vm06 with /dev/vg_nvme/lv_3... 2026-03-31T17:43:12.340 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- lvm zap /dev/vg_nvme/lv_3 2026-03-31T17:43:12.508 INFO:teuthology.orchestra.run.vm06.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.b/config 2026-03-31T17:43:12.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:12 vm06 ceph-mon[57133]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:12.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:12 vm06 ceph-mon[57133]: from='osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:12.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:12 vm06 ceph-mon[57133]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:12.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:12 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:12.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:12 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:12 vm02 ceph-mon[51704]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:12 vm02 ceph-mon[51704]: from='osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:12 vm02 ceph-mon[51704]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:12 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:12 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:12 vm07 ceph-mon[55273]: pgmap v33: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:13.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:12 vm07 ceph-mon[55273]: from='osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:13.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:12 vm07 ceph-mon[55273]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]} : dispatch 2026-03-31T17:43:13.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:12 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:12 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.397 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:43:13.416 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch daemon add osd vm06:vg_nvme/lv_3 --skip-validation 2026-03-31T17:43:13.546 INFO:teuthology.orchestra.run.vm06.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.b/config 2026-03-31T17:43:13.570 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:43:13 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2[62318]: 2026-03-31T17:43:13.566+0000 7fb4b2960640 -1 osd.2 0 waiting for initial osdmap 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: osdmap e18: 3 total, 2 up, 3 in 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.829 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:13 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.831 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:43:13 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2[62318]: 2026-03-31T17:43:13.571+0000 7fb4ad72f640 -1 osd.2 19 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-31T17:43:13.834 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-31T17:43:13.834 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: osdmap e18: 3 total, 2 up, 3 in 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:13.835 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:13 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["2"]}]': finished 2026-03-31T17:43:14.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: osdmap e18: 3 total, 2 up, 3 in 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:13 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.843 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]}]': finished 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: osdmap e19: 3 total, 2 up, 3 in 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: pgmap v36: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:14.844 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:14 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]}]': finished 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: osdmap e19: 3 total, 2 up, 3 in 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: pgmap v36: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:14.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:14 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0195, "args": ["host=vm06", "root=default"]}]': finished 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: osdmap e19: 3 total, 2 up, 3 in 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: pgmap v36: 0 pgs: ; 0 B data, 53 MiB used, 40 GiB / 40 GiB avail 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:15.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:14 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: purged_snaps scrub starts 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='client.14310 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm06:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: osd.default does not exist. Creating it now. 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: Creating OSDs with service ID: default on vm06:['vg_nvme/lv_3'] 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: Marking host: vm06 for OSDSpec preview refresh. 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: Saving service osd.default spec with placement vm06 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: Detected new or changed devices on vm06 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: Adjusting osd_memory_target on vm06 to 1659M 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886] boot 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: osdmap e20: 3 total, 3 up, 3 in 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='client.? 192.168.123.106:0/750496885' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"} : dispatch 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"} : dispatch 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"}]': finished 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: osdmap e21: 4 total, 3 up, 4 in 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:15.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:15 vm06 ceph-mon[57133]: from='client.? 192.168.123.106:0/1213749663' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: purged_snaps scrub starts 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='client.14310 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm06:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: osd.default does not exist. Creating it now. 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: Creating OSDs with service ID: default on vm06:['vg_nvme/lv_3'] 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: Marking host: vm06 for OSDSpec preview refresh. 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: Saving service osd.default spec with placement vm06 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: Detected new or changed devices on vm06 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: Adjusting osd_memory_target on vm06 to 1659M 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886] boot 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: osdmap e20: 3 total, 3 up, 3 in 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='client.? 192.168.123.106:0/750496885' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"} : dispatch 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"} : dispatch 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"}]': finished 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: osdmap e21: 4 total, 3 up, 4 in 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:15.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:15 vm02 ceph-mon[51704]: from='client.? 192.168.123.106:0/1213749663' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:16.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: purged_snaps scrub starts 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: purged_snaps scrub ok 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='client.14310 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm06:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: osd.default does not exist. Creating it now. 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: Creating OSDs with service ID: default on vm06:['vg_nvme/lv_3'] 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: Marking host: vm06 for OSDSpec preview refresh. 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: Saving service osd.default spec with placement vm06 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: Detected new or changed devices on vm06 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: Adjusting osd_memory_target on vm06 to 1659M 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: osd.2 [v2:192.168.123.106:6800/2933324886,v1:192.168.123.106:6801/2933324886] boot 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: osdmap e20: 3 total, 3 up, 3 in 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='client.? 192.168.123.106:0/750496885' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"} : dispatch 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"} : dispatch 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "43c6fb77-3855-435f-8358-67db00e5bf7a"}]': finished 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: osdmap e21: 4 total, 3 up, 4 in 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:16.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:15 vm07 ceph-mon[55273]: from='client.? 192.168.123.106:0/1213749663' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:16.799 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:16 vm06 ceph-mon[57133]: pgmap v39: 0 pgs: ; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:16.799 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:16 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' 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-31T17:43:16.799 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:16 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:16.799 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:16 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:16.799 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:16 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:16.799 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:16 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:16 vm02 ceph-mon[51704]: pgmap v39: 0 pgs: ; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:16 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' 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-31T17:43:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:16 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:16 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:16 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:16.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:16 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:17.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:16 vm07 ceph-mon[55273]: pgmap v39: 0 pgs: ; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:17.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:16 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' 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-31T17:43:17.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:16 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:17.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:16 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:17.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:16 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:17.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:16 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:17.835 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:17 vm06 ceph-mon[57133]: Deploying daemon osd.3 on vm06 2026-03-31T17:43:17.835 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:17 vm06 ceph-mon[57133]: Deploying daemon osd.3 on vm06 2026-03-31T17:43:17.835 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:17 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' 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-31T17:43:17.835 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:17 vm06 ceph-mon[57133]: osdmap e22: 4 total, 3 up, 4 in 2026-03-31T17:43:17.835 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:17 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:17.835 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:17 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:43:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:17 vm02 ceph-mon[51704]: Deploying daemon osd.3 on vm06 2026-03-31T17:43:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:17 vm02 ceph-mon[51704]: Deploying daemon osd.3 on vm06 2026-03-31T17:43:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:17 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' 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-31T17:43:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:17 vm02 ceph-mon[51704]: osdmap e22: 4 total, 3 up, 4 in 2026-03-31T17:43:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:17 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:17.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:17 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:43:18.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:17 vm07 ceph-mon[55273]: Deploying daemon osd.3 on vm06 2026-03-31T17:43:18.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:17 vm07 ceph-mon[55273]: Deploying daemon osd.3 on vm06 2026-03-31T17:43:18.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:17 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' 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-31T17:43:18.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:17 vm07 ceph-mon[55273]: osdmap e22: 4 total, 3 up, 4 in 2026-03-31T17:43:18.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:17 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:18.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:17 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:43:18.386 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:43:18 vm06 sudo[67812]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vde 2026-03-31T17:43:18.386 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:43:18 vm06 sudo[67812]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-31T17:43:18.386 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:43:18 vm06 sudo[67812]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-31T17:43:18.386 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:43:18 vm06 sudo[67812]: pam_unix(sudo:session): session closed for user root 2026-03-31T17:43:18.387 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 sudo[68203]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vda 2026-03-31T17:43:18.387 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 sudo[68203]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-31T17:43:18.387 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 sudo[68203]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-31T17:43:18.387 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 sudo[68203]: pam_unix(sudo:session): session closed for user root 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74669]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vde 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74669]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74669]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74669]: pam_unix(sudo:session): session closed for user root 2026-03-31T17:43:18.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74677]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vda 2026-03-31T17:43:18.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74677]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-31T17:43:18.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74677]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-31T17:43:18.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74677]: pam_unix(sudo:session): session closed for user root 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74673]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vdd 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74673]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74673]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-31T17:43:18.476 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:43:18 vm02 sudo[74673]: pam_unix(sudo:session): session closed for user root 2026-03-31T17:43:18.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 sudo[56549]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/vda 2026-03-31T17:43:18.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 sudo[56549]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-03-31T17:43:18.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 sudo[56549]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-03-31T17:43:18.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 sudo[56549]: pam_unix(sudo:session): session closed for user root 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: pgmap v41: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: osdmap e23: 4 total, 3 up, 4 in 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:18.679 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:18 vm06 ceph-mon[57133]: from='osd.3 [v2:192.168.123.106:6808/3529851512,v1:192.168.123.106:6809/3529851512]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: pgmap v41: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: osdmap e23: 4 total, 3 up, 4 in 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:18 vm02 ceph-mon[51704]: from='osd.3 [v2:192.168.123.106:6808/3529851512,v1:192.168.123.106:6809/3529851512]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: pgmap v41: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: osdmap e23: 4 total, 3 up, 4 in 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-03-31T17:43:19.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:18 vm07 ceph-mon[55273]: from='osd.3 [v2:192.168.123.106:6808/3529851512,v1:192.168.123.106:6809/3529851512]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]} : dispatch 2026-03-31T17:43:20.054 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:19 vm06 ceph-mon[57133]: from='osd.3 [v2:192.168.123.106:6808/3529851512,v1:192.168.123.106:6809/3529851512]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-31T17:43:20.054 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:19 vm06 ceph-mon[57133]: osdmap e24: 4 total, 3 up, 4 in 2026-03-31T17:43:20.054 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:19 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:20.054 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:19 vm06 ceph-mon[57133]: pgmap v44: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:20.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:19 vm02 ceph-mon[51704]: from='osd.3 [v2:192.168.123.106:6808/3529851512,v1:192.168.123.106:6809/3529851512]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-31T17:43:20.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:19 vm02 ceph-mon[51704]: osdmap e24: 4 total, 3 up, 4 in 2026-03-31T17:43:20.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:19 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:20.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:19 vm02 ceph-mon[51704]: pgmap v44: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:20.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:19 vm07 ceph-mon[55273]: from='osd.3 [v2:192.168.123.106:6808/3529851512,v1:192.168.123.106:6809/3529851512]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-31T17:43:20.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:19 vm07 ceph-mon[55273]: osdmap e24: 4 total, 3 up, 4 in 2026-03-31T17:43:20.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:19 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:20.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:19 vm07 ceph-mon[55273]: pgmap v44: 1 pgs: 1 unknown; 0 B data, 80 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:20.826 INFO:teuthology.orchestra.run.vm06.stdout:Created osd(s) 3 on host 'vm06' 2026-03-31T17:43:20.869 DEBUG:teuthology.orchestra.run.vm06:osd.3> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.3.service 2026-03-31T17:43:20.870 INFO:tasks.cephadm:Deploying osd.4 on vm07 with /dev/vg_nvme/lv_4... 2026-03-31T17:43:20.870 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- lvm zap /dev/vg_nvme/lv_4 2026-03-31T17:43:20.997 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.c/config 2026-03-31T17:43:21.041 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:20 vm07 ceph-mon[55273]: mgrmap e14: a(active, since 60s), standbys: b 2026-03-31T17:43:21.041 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:20 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:21.041 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:20 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:21.041 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:20 vm07 ceph-mon[55273]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]} : dispatch 2026-03-31T17:43:21.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:20 vm06 ceph-mon[57133]: mgrmap e14: a(active, since 60s), standbys: b 2026-03-31T17:43:21.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:20 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:21.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:20 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:21.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:20 vm06 ceph-mon[57133]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]} : dispatch 2026-03-31T17:43:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:20 vm02 ceph-mon[51704]: mgrmap e14: a(active, since 60s), standbys: b 2026-03-31T17:43:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:20 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:21.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:20 vm02 ceph-mon[51704]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]} : dispatch 2026-03-31T17:43:21.455 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:43:21.473 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch daemon add osd vm07:vg_nvme/lv_4 --skip-validation 2026-03-31T17:43:21.597 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.c/config 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: osdmap e25: 4 total, 3 up, 4 in 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: pgmap v46: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:22.023 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:21 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: osdmap e25: 4 total, 3 up, 4 in 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: pgmap v46: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:22.113 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:21 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["3"]}]': finished 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: osdmap e25: 4 total, 3 up, 4 in 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm06", "root=default"]} : dispatch 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: pgmap v46: 1 pgs: 1 active+clean; 449 KiB data, 81 MiB used, 60 GiB / 60 GiB avail 2026-03-31T17:43:22.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:21 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:22.372 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:43:22 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3[68897]: 2026-03-31T17:43:22.109+0000 7fe2252dd640 -1 osd.3 0 waiting for initial osdmap 2026-03-31T17:43:22.373 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:43:22 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3[68897]: 2026-03-31T17:43:22.114+0000 7fe2208ad640 -1 osd.3 26 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm07:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: osd.default does not exist. Creating it now. 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: Creating OSDs with service ID: default on vm07:['vg_nvme/lv_4'] 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: Marking host: vm07 for OSDSpec preview refresh. 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: Saving service osd.default spec with placement vm07 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.884 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm06", "root=default"]}]': finished 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: osdmap e26: 4 total, 3 up, 4 in 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='client.? 192.168.123.107:0/3163456585' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"} : dispatch 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"} : dispatch 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"}]': finished 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714] boot 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: osdmap e27: 5 total, 4 up, 5 in 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:22.885 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:22 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm07:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: osd.default does not exist. Creating it now. 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: Creating OSDs with service ID: default on vm07:['vg_nvme/lv_4'] 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: Marking host: vm07 for OSDSpec preview refresh. 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: Saving service osd.default spec with placement vm07 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm06", "root=default"]}]': finished 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: osdmap e26: 4 total, 3 up, 4 in 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='client.? 192.168.123.107:0/3163456585' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"}]': finished 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714] boot 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: osdmap e27: 5 total, 4 up, 5 in 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:23.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:22 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm07:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: osd.default does not exist. Creating it now. 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: Creating OSDs with service ID: default on vm07:['vg_nvme/lv_4'] 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: Marking host: vm07 for OSDSpec preview refresh. 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: Saving service osd.default spec with placement vm07 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0195, "args": ["host=vm06", "root=default"]}]': finished 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: osdmap e26: 4 total, 3 up, 4 in 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='client.? 192.168.123.107:0/3163456585' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"} : dispatch 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "de9d3443-3cb4-4ad0-9ff5-a58dc8897afe"}]': finished 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: osd.3 [v2:192.168.123.106:6808/4283195714,v1:192.168.123.106:6809/4283195714] boot 2026-03-31T17:43:23.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: osdmap e27: 5 total, 4 up, 5 in 2026-03-31T17:43:23.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-03-31T17:43:23.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:22 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: purged_snaps scrub starts 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: purged_snaps scrub ok 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='client.? 192.168.123.107:0/3311800668' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: Detected new or changed devices on vm06 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: Adjusting osd_memory_target on vm06 to 829.7M 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: Unable to set osd_memory_target on vm06 to 870047334: error parsing value: Value '870047334' is below minimum 939524096 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: osdmap e28: 5 total, 4 up, 5 in 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:24.054 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:23 vm07 ceph-mon[55273]: pgmap v50: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: purged_snaps scrub starts 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='client.? 192.168.123.107:0/3311800668' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: Detected new or changed devices on vm06 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: Adjusting osd_memory_target on vm06 to 829.7M 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: Unable to set osd_memory_target on vm06 to 870047334: error parsing value: Value '870047334' is below minimum 939524096 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: osdmap e28: 5 total, 4 up, 5 in 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:24.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:23 vm06 ceph-mon[57133]: pgmap v50: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: purged_snaps scrub starts 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='client.? 192.168.123.107:0/3311800668' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: Detected new or changed devices on vm06 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: Adjusting osd_memory_target on vm06 to 829.7M 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: Unable to set osd_memory_target on vm06 to 870047334: error parsing value: Value '870047334' is below minimum 939524096 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: osdmap e28: 5 total, 4 up, 5 in 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:24.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:23 vm02 ceph-mon[51704]: pgmap v50: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: Deploying daemon osd.4 on vm07 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: Deploying daemon osd.4 on vm07 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: osdmap e29: 5 total, 4 up, 5 in 2026-03-31T17:43:24.862 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:24 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: Deploying daemon osd.4 on vm07 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: Deploying daemon osd.4 on vm07 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: osdmap e29: 5 total, 4 up, 5 in 2026-03-31T17:43:25.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:24 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: Deploying daemon osd.4 on vm07 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: Deploying daemon osd.4 on vm07 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: osdmap e29: 5 total, 4 up, 5 in 2026-03-31T17:43:25.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:24 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:25.953 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:25 vm07 ceph-mon[55273]: pgmap v52: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:26.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:25 vm06 ceph-mon[57133]: pgmap v52: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:26.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:25 vm02 ceph-mon[51704]: pgmap v52: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:27.099 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:26 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:27.099 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:26 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:27.099 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:26 vm07 ceph-mon[55273]: from='osd.4 [v2:192.168.123.107:6800/1278785814,v1:192.168.123.107:6801/1278785814]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:27.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:26 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:27.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:26 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:27.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:26 vm02 ceph-mon[51704]: from='osd.4 [v2:192.168.123.107:6800/1278785814,v1:192.168.123.107:6801/1278785814]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:27.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:26 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:27.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:26 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:27.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:26 vm06 ceph-mon[57133]: from='osd.4 [v2:192.168.123.107:6800/1278785814,v1:192.168.123.107:6801/1278785814]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:28.041 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:27 vm07 ceph-mon[55273]: from='osd.4 [v2:192.168.123.107:6800/1278785814,v1:192.168.123.107:6801/1278785814]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-31T17:43:28.041 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:27 vm07 ceph-mon[55273]: osdmap e30: 5 total, 4 up, 5 in 2026-03-31T17:43:28.042 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:27 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:28.042 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:27 vm07 ceph-mon[55273]: pgmap v54: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:28.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:27 vm02 ceph-mon[51704]: from='osd.4 [v2:192.168.123.107:6800/1278785814,v1:192.168.123.107:6801/1278785814]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-31T17:43:28.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:27 vm02 ceph-mon[51704]: osdmap e30: 5 total, 4 up, 5 in 2026-03-31T17:43:28.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:27 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:28.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:27 vm02 ceph-mon[51704]: pgmap v54: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:28.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:27 vm06 ceph-mon[57133]: from='osd.4 [v2:192.168.123.107:6800/1278785814,v1:192.168.123.107:6801/1278785814]' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-31T17:43:28.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:27 vm06 ceph-mon[57133]: osdmap e30: 5 total, 4 up, 5 in 2026-03-31T17:43:28.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:27 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:28.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:27 vm06 ceph-mon[57133]: pgmap v54: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:43:28.805 INFO:teuthology.orchestra.run.vm07.stdout:Created osd(s) 4 on host 'vm07' 2026-03-31T17:43:28.852 DEBUG:teuthology.orchestra.run.vm07:osd.4> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.4.service 2026-03-31T17:43:28.853 INFO:tasks.cephadm:Deploying osd.5 on vm07 with /dev/vg_nvme/lv_3... 2026-03-31T17:43:28.853 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- lvm zap /dev/vg_nvme/lv_3 2026-03-31T17:43:29.012 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.c/config 2026-03-31T17:43:29.336 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:29 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.336 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:29 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.336 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:29 vm07 ceph-mon[55273]: from='osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:29.336 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:29 vm07 ceph-mon[55273]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:29.336 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:29 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.337 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:29 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:29 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:29 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:29 vm06 ceph-mon[57133]: from='osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:29.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:29 vm06 ceph-mon[57133]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:29.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:29 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:29 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:29 vm02 ceph-mon[51704]: from='osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:29.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:29 vm02 ceph-mon[51704]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]} : dispatch 2026-03-31T17:43:29.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:29 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:29.924 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:43:29.942 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph orch daemon add osd vm07:vg_nvme/lv_3 --skip-validation 2026-03-31T17:43:30.075 INFO:teuthology.orchestra.run.vm07.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.c/config 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: osdmap e31: 5 total, 4 up, 5 in 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: pgmap v56: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.087 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:30 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: osdmap e31: 5 total, 4 up, 5 in 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: pgmap v56: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:30 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.120 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:30 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4[60169]: 2026-03-31T17:43:30.089+0000 7f1539701640 -1 osd.4 0 waiting for initial osdmap 2026-03-31T17:43:30.120 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:30 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4[60169]: 2026-03-31T17:43:30.093+0000 7f15344bf640 -1 osd.4 32 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["4"]}]': finished 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: osdmap e31: 5 total, 4 up, 5 in 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: pgmap v56: 1 pgs: 1 active+clean; 449 KiB data, 108 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:30.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:30 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]}]': finished 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: osdmap e32: 5 total, 4 up, 5 in 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409] boot 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: osdmap e33: 5 total, 5 up, 5 in 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='client.24248 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm07:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: osd.default does not exist. Creating it now. 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: Creating OSDs with service ID: default on vm07:['vg_nvme/lv_3'] 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: Marking host: vm07 for OSDSpec preview refresh. 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: Saving service osd.default spec with placement vm07 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:31.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:31.209 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:31 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.371 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]}]': finished 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: osdmap e32: 5 total, 4 up, 5 in 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409] boot 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: osdmap e33: 5 total, 5 up, 5 in 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='client.24248 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm07:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: osd.default does not exist. Creating it now. 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: Creating OSDs with service ID: default on vm07:['vg_nvme/lv_3'] 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: Marking host: vm07 for OSDSpec preview refresh. 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: Saving service osd.default spec with placement vm07 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:31.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:31 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0195, "args": ["host=vm07", "root=default"]}]': finished 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: osdmap e32: 5 total, 4 up, 5 in 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: osd.4 [v2:192.168.123.107:6800/2303300409,v1:192.168.123.107:6801/2303300409] boot 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: osdmap e33: 5 total, 5 up, 5 in 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='client.24248 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "vm07:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: osd.default does not exist. Creating it now. 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: Creating OSDs with service ID: default on vm07:['vg_nvme/lv_3'] 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: Marking host: vm07 for OSDSpec preview refresh. 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: Saving service osd.default spec with placement vm07 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:31.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:31 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: purged_snaps scrub starts 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: purged_snaps scrub ok 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: Detected new or changed devices on vm07 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: Adjusting osd_memory_target on vm07 to 5755M 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: from='client.? 192.168.123.107:0/622270640' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"} : dispatch 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"} : dispatch 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"}]': finished 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: osdmap e34: 6 total, 5 up, 6 in 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: pgmap v60: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 112 KiB/s, 0 objects/s recovering 2026-03-31T17:43:32.249 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:32 vm07 ceph-mon[55273]: from='client.? 192.168.123.107:0/61381059' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: purged_snaps scrub starts 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: Detected new or changed devices on vm07 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: Adjusting osd_memory_target on vm07 to 5755M 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: from='client.? 192.168.123.107:0/622270640' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"} : dispatch 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"} : dispatch 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"}]': finished 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: osdmap e34: 6 total, 5 up, 6 in 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: pgmap v60: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 112 KiB/s, 0 objects/s recovering 2026-03-31T17:43:32.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:32 vm06 ceph-mon[57133]: from='client.? 192.168.123.107:0/61381059' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: purged_snaps scrub starts 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: Detected new or changed devices on vm07 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: Adjusting osd_memory_target on vm07 to 5755M 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: from='client.? 192.168.123.107:0/622270640' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"} : dispatch 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"} : dispatch 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "941e6579-ae9a-4100-9910-5d944bf7af6e"}]': finished 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: osdmap e34: 6 total, 5 up, 6 in 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: pgmap v60: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 112 KiB/s, 0 objects/s recovering 2026-03-31T17:43:32.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:32 vm02 ceph-mon[51704]: from='client.? 192.168.123.107:0/61381059' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-03-31T17:43:33.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:33 vm07 ceph-mon[55273]: osdmap e35: 6 total, 5 up, 6 in 2026-03-31T17:43:33.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:33.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:33.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:33.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:33.372 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:33 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:33.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:33 vm06 ceph-mon[57133]: osdmap e35: 6 total, 5 up, 6 in 2026-03-31T17:43:33.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:33 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:33.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:33 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:33.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:33 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:33.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:33 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:33.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:33 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:33.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:33 vm02 ceph-mon[51704]: osdmap e35: 6 total, 5 up, 6 in 2026-03-31T17:43:33.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:33 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:33.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:33 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:33.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:33 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:33.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:33 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:33.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:33 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:34.572 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:34 vm07 ceph-mon[55273]: Deploying daemon osd.5 on vm07 2026-03-31T17:43:34.572 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:34 vm07 ceph-mon[55273]: Deploying daemon osd.5 on vm07 2026-03-31T17:43:34.572 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:34 vm07 ceph-mon[55273]: pgmap v62: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 112 KiB/s, 0 objects/s recovering 2026-03-31T17:43:34.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:34 vm06 ceph-mon[57133]: Deploying daemon osd.5 on vm07 2026-03-31T17:43:34.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:34 vm06 ceph-mon[57133]: Deploying daemon osd.5 on vm07 2026-03-31T17:43:34.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:34 vm06 ceph-mon[57133]: pgmap v62: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 112 KiB/s, 0 objects/s recovering 2026-03-31T17:43:34.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:34 vm02 ceph-mon[51704]: Deploying daemon osd.5 on vm07 2026-03-31T17:43:34.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:34 vm02 ceph-mon[51704]: Deploying daemon osd.5 on vm07 2026-03-31T17:43:34.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:34 vm02 ceph-mon[51704]: pgmap v62: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 112 KiB/s, 0 objects/s recovering 2026-03-31T17:43:35.894 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:35 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:35.894 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:35 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:35.894 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:35 vm07 ceph-mon[55273]: from='osd.5 [v2:192.168.123.107:6808/1986249139,v1:192.168.123.107:6809/1986249139]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:35.894 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:35 vm07 ceph-mon[55273]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:35.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:35 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:35.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:35 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:35.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:35 vm06 ceph-mon[57133]: from='osd.5 [v2:192.168.123.107:6808/1986249139,v1:192.168.123.107:6809/1986249139]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:35.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:35 vm06 ceph-mon[57133]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:35.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:35 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:35.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:35 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:35.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:35 vm02 ceph-mon[51704]: from='osd.5 [v2:192.168.123.107:6808/1986249139,v1:192.168.123.107:6809/1986249139]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:35.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:35 vm02 ceph-mon[51704]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:36.882 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:36 vm07 ceph-mon[55273]: pgmap v63: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 82 KiB/s, 0 objects/s recovering 2026-03-31T17:43:36.882 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:36 vm07 ceph-mon[55273]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-31T17:43:36.882 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:36 vm07 ceph-mon[55273]: osdmap e36: 6 total, 5 up, 6 in 2026-03-31T17:43:36.882 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:36 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:36.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:36 vm06 ceph-mon[57133]: pgmap v63: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 82 KiB/s, 0 objects/s recovering 2026-03-31T17:43:36.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:36 vm06 ceph-mon[57133]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-31T17:43:36.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:36 vm06 ceph-mon[57133]: osdmap e36: 6 total, 5 up, 6 in 2026-03-31T17:43:36.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:36 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:36.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:36 vm02 ceph-mon[51704]: pgmap v63: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 82 KiB/s, 0 objects/s recovering 2026-03-31T17:43:36.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:36 vm02 ceph-mon[51704]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-31T17:43:36.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:36 vm02 ceph-mon[51704]: osdmap e36: 6 total, 5 up, 6 in 2026-03-31T17:43:36.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:36 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:37.339 INFO:teuthology.orchestra.run.vm07.stdout:Created osd(s) 5 on host 'vm07' 2026-03-31T17:43:37.392 DEBUG:teuthology.orchestra.run.vm07:osd.5> sudo journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.5.service 2026-03-31T17:43:37.394 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2026-03-31T17:43:37.394 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd stat -f json 2026-03-31T17:43:37.524 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:37.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:37 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:37 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:37 vm02 ceph-mon[51704]: from='osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:37.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:37 vm02 ceph-mon[51704]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:37.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:37 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:37 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.763 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:37.810 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":37,"num_osds":6,"num_up_osds":5,"osd_up_since":1774979010,"num_in_osds":6,"osd_in_since":1774979011,"num_remapped_pgs":0} 2026-03-31T17:43:37.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:37 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:37 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:37 vm06 ceph-mon[57133]: from='osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:37.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:37 vm06 ceph-mon[57133]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:37.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:37 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:37 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.974 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:37 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.974 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:37 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.974 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:37 vm07 ceph-mon[55273]: from='osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:37.974 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:37 vm07 ceph-mon[55273]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]} : dispatch 2026-03-31T17:43:37.974 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:37 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:37.974 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:37 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: pgmap v65: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: osdmap e37: 6 total, 5 up, 6 in 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2738654617' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.668 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:38 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.811 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd stat -f json 2026-03-31T17:43:38.922 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:43:38 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5[67041]: 2026-03-31T17:43:38.676+0000 7f62be449640 -1 osd.5 0 waiting for initial osdmap 2026-03-31T17:43:38.922 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:43:38 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5[67041]: 2026-03-31T17:43:38.681+0000 7f62b9207640 -1 osd.5 38 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-03-31T17:43:38.940 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: pgmap v65: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: osdmap e37: 6 total, 5 up, 6 in 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/2738654617' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:38 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: pgmap v65: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail; 71 KiB/s, 0 objects/s recovering 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "hdd", "ids": ["5"]}]': finished 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: osdmap e37: 6 total, 5 up, 6 in 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]} : dispatch 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2738654617' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:38.961 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:38 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.195 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:39.241 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":38,"num_osds":6,"num_up_osds":5,"osd_up_since":1774979010,"num_in_osds":6,"osd_in_since":1774979011,"num_remapped_pgs":0} 2026-03-31T17:43:39.696 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]}]': finished 2026-03-31T17:43:39.696 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: osdmap e38: 6 total, 5 up, 6 in 2026-03-31T17:43:39.696 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:39.696 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:39.696 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3715551740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:39.696 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: Detected new or changed devices on vm07 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: Adjusting osd_memory_target on vm07 to 2877M 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:39.697 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:39 vm07 ceph-mon[55273]: pgmap v68: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]}]': finished 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: osdmap e38: 6 total, 5 up, 6 in 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/3715551740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: Detected new or changed devices on vm07 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: Adjusting osd_memory_target on vm07 to 2877M 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:39.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:39 vm06 ceph-mon[57133]: pgmap v68: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0195, "args": ["host=vm07", "root=default"]}]': finished 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: osdmap e38: 6 total, 5 up, 6 in 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3715551740' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: Detected new or changed devices on vm07 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: Adjusting osd_memory_target on vm07 to 2877M 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-03-31T17:43:39.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:39.977 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:39 vm02 ceph-mon[51704]: pgmap v68: 1 pgs: 1 active+clean; 449 KiB data, 135 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:40.242 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd stat -f json 2026-03-31T17:43:40.366 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:40.596 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:40.638 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":40,"num_osds":6,"num_up_osds":6,"osd_up_since":1774979019,"num_in_osds":6,"osd_in_since":1774979011,"num_remapped_pgs":0} 2026-03-31T17:43:40.638 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd dump --format=json 2026-03-31T17:43:40.760 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:40.866 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: purged_snaps scrub starts 2026-03-31T17:43:40.867 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: purged_snaps scrub ok 2026-03-31T17:43:40.867 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775] boot 2026-03-31T17:43:40.867 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: osdmap e39: 6 total, 6 up, 6 in 2026-03-31T17:43:40.867 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:40.867 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: osdmap e40: 6 total, 6 up, 6 in 2026-03-31T17:43:40.867 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:40 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3203627024' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: purged_snaps scrub starts 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775] boot 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: osdmap e39: 6 total, 6 up, 6 in 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: osdmap e40: 6 total, 6 up, 6 in 2026-03-31T17:43:40.876 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:40 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3203627024' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: purged_snaps scrub starts 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: osd.5 [v2:192.168.123.107:6808/4113931775,v1:192.168.123.107:6809/4113931775] boot 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: osdmap e39: 6 total, 6 up, 6 in 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: osdmap e40: 6 total, 6 up, 6 in 2026-03-31T17:43:40.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:40 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/3203627024' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-03-31T17:43:40.999 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:41.000 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":40,"fsid":"cc53a1fa-2d28-11f1-b83b-53da7b16591a","created":"2026-03-31T17:41:59.521140+0000","modified":"2026-03-31T17:43:40.289771+0000","last_up_change":"2026-03-31T17:43:39.671741+0000","last_in_change":"2026-03-31T17:43:31.283143+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":20,"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":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-03-31T17:43:15.781670+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":"24","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,"nonprimary_shards":"{}","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":"4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":9,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6802","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6803","nonce":501137076}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6804","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6805","nonce":501137076}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6808","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6809","nonce":501137076}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6806","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6807","nonce":501137076}]},"public_addr":"192.168.123.102:6803/501137076","cluster_addr":"192.168.123.102:6805/501137076","heartbeat_back_addr":"192.168.123.102:6809/501137076","heartbeat_front_addr":"192.168.123.102:6807/501137076","state":["exists","up"]},{"osd":1,"uuid":"7afd2493-7878-4998-a407-b3b2e2c15659","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6810","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6811","nonce":3448303045}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6812","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6813","nonce":3448303045}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6816","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6817","nonce":3448303045}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6814","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6815","nonce":3448303045}]},"public_addr":"192.168.123.102:6811/3448303045","cluster_addr":"192.168.123.102:6813/3448303045","heartbeat_back_addr":"192.168.123.102:6817/3448303045","heartbeat_front_addr":"192.168.123.102:6815/3448303045","state":["exists","up"]},{"osd":2,"uuid":"405038be-4a22-4cdb-80bd-6cf74243e1ab","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6800","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6801","nonce":2933324886}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6802","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6803","nonce":2933324886}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6806","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6807","nonce":2933324886}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6804","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6805","nonce":2933324886}]},"public_addr":"192.168.123.106:6801/2933324886","cluster_addr":"192.168.123.106:6803/2933324886","heartbeat_back_addr":"192.168.123.106:6807/2933324886","heartbeat_front_addr":"192.168.123.106:6805/2933324886","state":["exists","up"]},{"osd":3,"uuid":"43c6fb77-3855-435f-8358-67db00e5bf7a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6808","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6809","nonce":4283195714}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6810","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6811","nonce":4283195714}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6814","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6815","nonce":4283195714}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6812","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6813","nonce":4283195714}]},"public_addr":"192.168.123.106:6809/4283195714","cluster_addr":"192.168.123.106:6811/4283195714","heartbeat_back_addr":"192.168.123.106:6815/4283195714","heartbeat_front_addr":"192.168.123.106:6813/4283195714","state":["exists","up"]},{"osd":4,"uuid":"de9d3443-3cb4-4ad0-9ff5-a58dc8897afe","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.107:6800","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6801","nonce":2303300409}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6802","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6803","nonce":2303300409}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6806","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6807","nonce":2303300409}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6804","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6805","nonce":2303300409}]},"public_addr":"192.168.123.107:6801/2303300409","cluster_addr":"192.168.123.107:6803/2303300409","heartbeat_back_addr":"192.168.123.107:6807/2303300409","heartbeat_front_addr":"192.168.123.107:6805/2303300409","state":["exists","up"]},{"osd":5,"uuid":"941e6579-ae9a-4100-9910-5d944bf7af6e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6808","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6809","nonce":4113931775}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6810","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6811","nonce":4113931775}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6814","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6815","nonce":4113931775}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6812","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6813","nonce":4113931775}]},"public_addr":"192.168.123.107:6809/4113931775","cluster_addr":"192.168.123.107:6811/4113931775","heartbeat_back_addr":"192.168.123.107:6815/4113931775","heartbeat_front_addr":"192.168.123.107:6813/4113931775","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:42:55.939591+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:04.759873+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:12.699091+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:21.360138+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:29.266539+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:37.951682+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"192.168.123.102:6800/1032181122":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/4286536348":"2026-04-01T17:42:09.574999+0000","192.168.123.102:6801/1032181122":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/568543077":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/103137611":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/2869150964":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/3000842484":"2026-04-01T17:42:19.562265+0000","192.168.123.102:6801/1346728473":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/2548750496":"2026-04-01T17:42:19.562265+0000","192.168.123.102:6800/1346728473":"2026-04-01T17:42:09.574999+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","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-31T17:43:41.060 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-03-31T17:43:15.781670+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': '24', '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, 'nonprimary_shards': '{}', '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-31T17:43:41.061 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd pool get .mgr pg_num 2026-03-31T17:43:41.179 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:41.424 INFO:teuthology.orchestra.run.vm02.stdout:pg_num: 1 2026-03-31T17:43:41.466 INFO:tasks.cephadm:Setting up client nodes... 2026-03-31T17:43:41.466 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph config log 1 --format=json 2026-03-31T17:43:41.585 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:41 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/4041055558' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:41 vm02 ceph-mon[51704]: osdmap e41: 6 total, 6 up, 6 in 2026-03-31T17:43:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:41 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:41 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:41 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3486735487' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-03-31T17:43:41.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:41 vm02 ceph-mon[51704]: pgmap v72: 1 pgs: 1 active+clean; 449 KiB data, 162 MiB used, 120 GiB / 120 GiB avail 2026-03-31T17:43:41.816 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:41.858 INFO:teuthology.orchestra.run.vm02.stdout:[{"version":14,"timestamp":"2026-03-31T17:43:39.505391+0000","name":"","changes":[{"name":"osd/host:vm07/osd_memory_target","previous_value":"6035067699","new_value":"3017533849"}]}] 2026-03-31T17:43:41.858 INFO:tasks.ceph_manager:config epoch is 14 2026-03-31T17:43:41.858 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-03-31T17:43:41.858 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-03-31T17:43:41.858 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph mgr dump --format=json 2026-03-31T17:43:41.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:41 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/4041055558' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:41.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:41 vm06 ceph-mon[57133]: osdmap e41: 6 total, 6 up, 6 in 2026-03-31T17:43:41.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:41 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:41.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:41 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:41.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:41 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/3486735487' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-03-31T17:43:41.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:41 vm06 ceph-mon[57133]: pgmap v72: 1 pgs: 1 active+clean; 449 KiB data, 162 MiB used, 120 GiB / 120 GiB avail 2026-03-31T17:43:41.976 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:42.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:41 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/4041055558' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:42.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:41 vm07 ceph-mon[55273]: osdmap e41: 6 total, 6 up, 6 in 2026-03-31T17:43:42.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:41 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:42.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:41 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:42.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:41 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3486735487' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-03-31T17:43:42.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:41 vm07 ceph-mon[55273]: pgmap v72: 1 pgs: 1 active+clean; 449 KiB data, 162 MiB used, 120 GiB / 120 GiB avail 2026-03-31T17:43:42.239 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:42.287 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":14,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6800","nonce":952182591},{"type":"v1","addr":"192.168.123.102:6801","nonce":952182591}]},"active_addr":"192.168.123.102:6801/952182591","active_change":"2026-03-31T17:42:19.562350+0000","active_mgr_features":4541880224203014143,"available":true,"standbys":[{"gid":24113,"name":"b","mgr_features":4541880224203014143,"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, use commas to separate multiple","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":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","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.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager 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:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana 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":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter 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.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy 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:v3.6.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":"docker.io/grafana/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:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/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":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","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":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","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":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","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":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]},"crypto_caller":{"name":"crypto_caller","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":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":"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":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","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":[]},"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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge 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":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs"],"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, use commas to separate multiple","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":[]},"certificate_automated_rotation_enabled":{"name":"certificate_automated_rotation_enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"This flag controls whether cephadm automatically rotates certificates upon expiration.","long_desc":"","tags":[],"see_also":[]},"certificate_check_debug_mode":{"name":"certificate_check_debug_mode","type":"bool","level":"dev","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"FOR TESTING ONLY: This flag forces the certificate check instead of waiting for certificate_check_period.","long_desc":"","tags":[],"see_also":[]},"certificate_check_period":{"name":"certificate_check_period","type":"int","level":"advanced","flags":0,"default_value":"1","min":"0","max":"30","enum_allowed":[],"desc":"Specifies how often (in days) the certificate should be checked for validity.","long_desc":"","tags":[],"see_also":[]},"certificate_duration_days":{"name":"certificate_duration_days","type":"int","level":"advanced","flags":0,"default_value":"1095","min":"90","max":"3650","enum_allowed":[],"desc":"Specifies the duration of self certificates generated and signed by cephadm root CA","long_desc":"","tags":[],"see_also":[]},"certificate_renewal_threshold_days":{"name":"certificate_renewal_threshold_days","type":"int","level":"advanced","flags":0,"default_value":"30","min":"10","max":"90","enum_allowed":[],"desc":"Specifies the lead time in days to initiate certificate renewal before expiration.","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.28.1","min":"","max":"","enum_allowed":[],"desc":"Alertmanager 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:12.3.1","min":"","max":"","enum_allowed":[],"desc":"Grafana 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":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx 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.9.1","min":"","max":"","enum_allowed":[],"desc":"Node exporter 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.5","min":"","max":"","enum_allowed":[],"desc":"Nvmeof container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"Oauth2 proxy 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:v3.6.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":"docker.io/grafana/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:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:ceph20-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba metrics container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/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":[]},"stray_daemon_check_interval":{"name":"stray_daemon_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"how frequently cephadm should check for the presence of stray daemons","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":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","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":[]},"PROM_ALERT_CREDENTIAL_CACHE_TTL":{"name":"PROM_ALERT_CREDENTIAL_CACHE_TTL","type":"int","level":"advanced","flags":0,"default_value":"60","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":[]},"RGW_HOSTNAME_PER_DAEMON":{"name":"RGW_HOSTNAME_PER_DAEMON","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":[]},"crypto_caller":{"name":"crypto_caller","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":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","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":"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":[]},"prometheus_tls_secret_name":{"name":"prometheus_tls_secret_name","type":"str","level":"advanced","flags":0,"default_value":"rook-ceph-prometheus-server-tls","min":"","max":"","enum_allowed":[],"desc":"name of tls secret in k8s for prometheus","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":[]},"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":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","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":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","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":[]},"pause_cloning":{"name":"pause_cloning","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"pause_purging":{"name":"pause_purging","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Pause asynchronous subvolume purge 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":[]}}}],"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"],"tentacle":["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":279859757}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":3386248507}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":4031115565}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"192.168.123.102:0","nonce":1418637213}]}]} 2026-03-31T17:43:42.288 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-03-31T17:43:42.288 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-03-31T17:43:42.288 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd dump --format=json 2026-03-31T17:43:42.406 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:42.632 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:42.632 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":41,"fsid":"cc53a1fa-2d28-11f1-b83b-53da7b16591a","created":"2026-03-31T17:41:59.521140+0000","modified":"2026-03-31T17:43:41.293223+0000","last_up_change":"2026-03-31T17:43:39.671741+0000","last_in_change":"2026-03-31T17:43:31.283143+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":20,"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":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-03-31T17:43:15.781670+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":"24","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,"nonprimary_shards":"{}","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":"4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":9,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6802","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6803","nonce":501137076}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6804","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6805","nonce":501137076}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6808","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6809","nonce":501137076}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6806","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6807","nonce":501137076}]},"public_addr":"192.168.123.102:6803/501137076","cluster_addr":"192.168.123.102:6805/501137076","heartbeat_back_addr":"192.168.123.102:6809/501137076","heartbeat_front_addr":"192.168.123.102:6807/501137076","state":["exists","up"]},{"osd":1,"uuid":"7afd2493-7878-4998-a407-b3b2e2c15659","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6810","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6811","nonce":3448303045}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6812","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6813","nonce":3448303045}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6816","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6817","nonce":3448303045}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6814","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6815","nonce":3448303045}]},"public_addr":"192.168.123.102:6811/3448303045","cluster_addr":"192.168.123.102:6813/3448303045","heartbeat_back_addr":"192.168.123.102:6817/3448303045","heartbeat_front_addr":"192.168.123.102:6815/3448303045","state":["exists","up"]},{"osd":2,"uuid":"405038be-4a22-4cdb-80bd-6cf74243e1ab","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6800","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6801","nonce":2933324886}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6802","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6803","nonce":2933324886}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6806","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6807","nonce":2933324886}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6804","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6805","nonce":2933324886}]},"public_addr":"192.168.123.106:6801/2933324886","cluster_addr":"192.168.123.106:6803/2933324886","heartbeat_back_addr":"192.168.123.106:6807/2933324886","heartbeat_front_addr":"192.168.123.106:6805/2933324886","state":["exists","up"]},{"osd":3,"uuid":"43c6fb77-3855-435f-8358-67db00e5bf7a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6808","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6809","nonce":4283195714}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6810","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6811","nonce":4283195714}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6814","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6815","nonce":4283195714}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6812","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6813","nonce":4283195714}]},"public_addr":"192.168.123.106:6809/4283195714","cluster_addr":"192.168.123.106:6811/4283195714","heartbeat_back_addr":"192.168.123.106:6815/4283195714","heartbeat_front_addr":"192.168.123.106:6813/4283195714","state":["exists","up"]},{"osd":4,"uuid":"de9d3443-3cb4-4ad0-9ff5-a58dc8897afe","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.107:6800","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6801","nonce":2303300409}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6802","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6803","nonce":2303300409}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6806","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6807","nonce":2303300409}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6804","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6805","nonce":2303300409}]},"public_addr":"192.168.123.107:6801/2303300409","cluster_addr":"192.168.123.107:6803/2303300409","heartbeat_back_addr":"192.168.123.107:6807/2303300409","heartbeat_front_addr":"192.168.123.107:6805/2303300409","state":["exists","up"]},{"osd":5,"uuid":"941e6579-ae9a-4100-9910-5d944bf7af6e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6808","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6809","nonce":4113931775}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6810","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6811","nonce":4113931775}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6814","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6815","nonce":4113931775}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6812","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6813","nonce":4113931775}]},"public_addr":"192.168.123.107:6809/4113931775","cluster_addr":"192.168.123.107:6811/4113931775","heartbeat_back_addr":"192.168.123.107:6815/4113931775","heartbeat_front_addr":"192.168.123.107:6813/4113931775","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:42:55.939591+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:04.759873+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:12.699091+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:21.360138+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:29.266539+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:37.951682+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"192.168.123.102:6800/1032181122":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/4286536348":"2026-04-01T17:42:09.574999+0000","192.168.123.102:6801/1032181122":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/568543077":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/103137611":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/2869150964":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/3000842484":"2026-04-01T17:42:19.562265+0000","192.168.123.102:6801/1346728473":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/2548750496":"2026-04-01T17:42:19.562265+0000","192.168.123.102:6800/1346728473":"2026-04-01T17:42:09.574999+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","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-31T17:43:42.671 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-03-31T17:43:42.671 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd dump --format=json 2026-03-31T17:43:42.791 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:42.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:42 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/280816445' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-03-31T17:43:42.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:42 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/588021037' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-03-31T17:43:42.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:42 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/2897166354' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:42.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:42 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/280816445' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-03-31T17:43:42.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:42 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/588021037' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-03-31T17:43:42.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:42 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2897166354' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:43.014 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:43.015 INFO:teuthology.orchestra.run.vm02.stdout:{"epoch":41,"fsid":"cc53a1fa-2d28-11f1-b83b-53da7b16591a","created":"2026-03-31T17:41:59.521140+0000","modified":"2026-03-31T17:43:41.293223+0000","last_up_change":"2026-03-31T17:43:39.671741+0000","last_in_change":"2026-03-31T17:43:31.283143+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":20,"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":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-03-31T17:43:15.781670+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":"24","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,"nonprimary_shards":"{}","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":"4a496b1d-2d7d-4f7e-96a9-7b0b0c9b78cb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":9,"up_thru":27,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6802","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6803","nonce":501137076}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6804","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6805","nonce":501137076}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6808","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6809","nonce":501137076}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6806","nonce":501137076},{"type":"v1","addr":"192.168.123.102:6807","nonce":501137076}]},"public_addr":"192.168.123.102:6803/501137076","cluster_addr":"192.168.123.102:6805/501137076","heartbeat_back_addr":"192.168.123.102:6809/501137076","heartbeat_front_addr":"192.168.123.102:6807/501137076","state":["exists","up"]},{"osd":1,"uuid":"7afd2493-7878-4998-a407-b3b2e2c15659","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6810","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6811","nonce":3448303045}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6812","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6813","nonce":3448303045}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6816","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6817","nonce":3448303045}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.102:6814","nonce":3448303045},{"type":"v1","addr":"192.168.123.102:6815","nonce":3448303045}]},"public_addr":"192.168.123.102:6811/3448303045","cluster_addr":"192.168.123.102:6813/3448303045","heartbeat_back_addr":"192.168.123.102:6817/3448303045","heartbeat_front_addr":"192.168.123.102:6815/3448303045","state":["exists","up"]},{"osd":2,"uuid":"405038be-4a22-4cdb-80bd-6cf74243e1ab","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":22,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6800","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6801","nonce":2933324886}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6802","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6803","nonce":2933324886}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6806","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6807","nonce":2933324886}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6804","nonce":2933324886},{"type":"v1","addr":"192.168.123.106:6805","nonce":2933324886}]},"public_addr":"192.168.123.106:6801/2933324886","cluster_addr":"192.168.123.106:6803/2933324886","heartbeat_back_addr":"192.168.123.106:6807/2933324886","heartbeat_front_addr":"192.168.123.106:6805/2933324886","state":["exists","up"]},{"osd":3,"uuid":"43c6fb77-3855-435f-8358-67db00e5bf7a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":27,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6808","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6809","nonce":4283195714}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6810","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6811","nonce":4283195714}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6814","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6815","nonce":4283195714}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.106:6812","nonce":4283195714},{"type":"v1","addr":"192.168.123.106:6813","nonce":4283195714}]},"public_addr":"192.168.123.106:6809/4283195714","cluster_addr":"192.168.123.106:6811/4283195714","heartbeat_back_addr":"192.168.123.106:6815/4283195714","heartbeat_front_addr":"192.168.123.106:6813/4283195714","state":["exists","up"]},{"osd":4,"uuid":"de9d3443-3cb4-4ad0-9ff5-a58dc8897afe","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.107:6800","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6801","nonce":2303300409}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6802","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6803","nonce":2303300409}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6806","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6807","nonce":2303300409}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6804","nonce":2303300409},{"type":"v1","addr":"192.168.123.107:6805","nonce":2303300409}]},"public_addr":"192.168.123.107:6801/2303300409","cluster_addr":"192.168.123.107:6803/2303300409","heartbeat_back_addr":"192.168.123.107:6807/2303300409","heartbeat_front_addr":"192.168.123.107:6805/2303300409","state":["exists","up"]},{"osd":5,"uuid":"941e6579-ae9a-4100-9910-5d944bf7af6e","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6808","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6809","nonce":4113931775}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6810","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6811","nonce":4113931775}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6814","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6815","nonce":4113931775}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"192.168.123.107:6812","nonce":4113931775},{"type":"v1","addr":"192.168.123.107:6813","nonce":4113931775}]},"public_addr":"192.168.123.107:6809/4113931775","cluster_addr":"192.168.123.107:6811/4113931775","heartbeat_back_addr":"192.168.123.107:6815/4113931775","heartbeat_front_addr":"192.168.123.107:6813/4113931775","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:42:55.939591+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:04.759873+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:12.699091+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:21.360138+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:29.266539+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4541880224203014143,"old_weight":0,"last_purged_snaps_scrub":"2026-03-31T17:43:37.951682+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"192.168.123.102:6800/1032181122":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/4286536348":"2026-04-01T17:42:09.574999+0000","192.168.123.102:6801/1032181122":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/568543077":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/103137611":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/2869150964":"2026-04-01T17:42:19.562265+0000","192.168.123.102:0/3000842484":"2026-04-01T17:42:19.562265+0000","192.168.123.102:6801/1346728473":"2026-04-01T17:42:09.574999+0000","192.168.123.102:0/2548750496":"2026-04-01T17:42:19.562265+0000","192.168.123.102:6800/1346728473":"2026-04-01T17:42:09.574999+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"isa","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-31T17:43:43.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:42 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/280816445' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-03-31T17:43:43.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:42 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/588021037' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-03-31T17:43:43.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:42 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2897166354' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:43.055 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph tell osd.0 flush_pg_stats 2026-03-31T17:43:43.056 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph tell osd.1 flush_pg_stats 2026-03-31T17:43:43.056 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph tell osd.2 flush_pg_stats 2026-03-31T17:43:43.056 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph tell osd.3 flush_pg_stats 2026-03-31T17:43:43.056 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph tell osd.4 flush_pg_stats 2026-03-31T17:43:43.056 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph tell osd.5 flush_pg_stats 2026-03-31T17:43:43.201 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.213 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.261 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.271 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.282 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.282 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.510 INFO:teuthology.orchestra.run.vm02.stdout:141733920772 2026-03-31T17:43:43.510 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd last-stat-seq osd.4 2026-03-31T17:43:43.530 INFO:teuthology.orchestra.run.vm02.stdout:167503724546 2026-03-31T17:43:43.530 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd last-stat-seq osd.5 2026-03-31T17:43:43.582 INFO:teuthology.orchestra.run.vm02.stdout:115964116998 2026-03-31T17:43:43.582 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd last-stat-seq osd.3 2026-03-31T17:43:43.599 INFO:teuthology.orchestra.run.vm02.stdout:38654705674 2026-03-31T17:43:43.599 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd last-stat-seq osd.0 2026-03-31T17:43:43.626 INFO:teuthology.orchestra.run.vm02.stdout:85899345927 2026-03-31T17:43:43.626 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd last-stat-seq osd.2 2026-03-31T17:43:43.633 INFO:teuthology.orchestra.run.vm02.stdout:64424509449 2026-03-31T17:43:43.633 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph osd last-stat-seq osd.1 2026-03-31T17:43:43.711 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.756 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.776 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:43 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/867322476' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:43.776 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:43 vm02 ceph-mon[51704]: pgmap v73: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 91 KiB/s, 0 objects/s recovering 2026-03-31T17:43:43.786 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.806 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.809 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.954 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:43.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:43 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/867322476' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:43.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:43 vm06 ceph-mon[57133]: pgmap v73: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 91 KiB/s, 0 objects/s recovering 2026-03-31T17:43:44.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:43 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/867322476' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-03-31T17:43:44.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:43 vm07 ceph-mon[55273]: pgmap v73: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 91 KiB/s, 0 objects/s recovering 2026-03-31T17:43:44.084 INFO:teuthology.orchestra.run.vm02.stdout:141733920772 2026-03-31T17:43:44.092 INFO:teuthology.orchestra.run.vm02.stdout:38654705674 2026-03-31T17:43:44.153 INFO:tasks.cephadm.ceph_manager.ceph:need seq 141733920772 got 141733920772 for osd.4 2026-03-31T17:43:44.153 DEBUG:teuthology.parallel:result is None 2026-03-31T17:43:44.176 INFO:tasks.cephadm.ceph_manager.ceph:need seq 38654705674 got 38654705674 for osd.0 2026-03-31T17:43:44.176 INFO:teuthology.orchestra.run.vm02.stdout:167503724546 2026-03-31T17:43:44.177 DEBUG:teuthology.parallel:result is None 2026-03-31T17:43:44.222 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724546 got 167503724546 for osd.5 2026-03-31T17:43:44.222 DEBUG:teuthology.parallel:result is None 2026-03-31T17:43:44.253 INFO:teuthology.orchestra.run.vm02.stdout:115964116998 2026-03-31T17:43:44.267 INFO:teuthology.orchestra.run.vm02.stdout:85899345927 2026-03-31T17:43:44.294 INFO:tasks.cephadm.ceph_manager.ceph:need seq 115964116998 got 115964116998 for osd.3 2026-03-31T17:43:44.295 DEBUG:teuthology.parallel:result is None 2026-03-31T17:43:44.299 INFO:teuthology.orchestra.run.vm02.stdout:64424509449 2026-03-31T17:43:44.330 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345927 got 85899345927 for osd.2 2026-03-31T17:43:44.330 DEBUG:teuthology.parallel:result is None 2026-03-31T17:43:44.343 INFO:tasks.cephadm.ceph_manager.ceph:need seq 64424509449 got 64424509449 for osd.1 2026-03-31T17:43:44.343 DEBUG:teuthology.parallel:result is None 2026-03-31T17:43:44.343 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-03-31T17:43:44.343 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph pg dump --format=json 2026-03-31T17:43:44.499 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:44.721 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:44.721 INFO:teuthology.orchestra.run.vm02.stderr:dumped all 2026-03-31T17:43:44.759 INFO:teuthology.orchestra.run.vm02.stdout:{"pg_ready":true,"pg_map":{"version":73,"stamp":"2026-03-31T17:43:43.578183+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":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":125804544,"kb_used":166596,"kb_used_data":3564,"kb_used_omap":83,"kb_used_meta":162732,"kb_avail":125637948,"statfs":{"total":128823853056,"available":128653258752,"internally_reserved":0,"allocated":3649536,"data_stored":2230428,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":85182,"internal_metadata":166638402},"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":"4.905805"},"pg_stats":[{"pgid":"1.0","version":"23'32","reported_seq":64,"reported_epoch":41,"state":"active+clean","last_fresh":"2026-03-31T17:43:41.605330+0000","last_change":"2026-03-31T17:43:41.605283+0000","last_active":"2026-03-31T17:43:41.605330+0000","last_peered":"2026-03-31T17:43:41.605330+0000","last_clean":"2026-03-31T17:43:41.605330+0000","last_became_active":"2026-03-31T17:43:41.299267+0000","last_became_peered":"2026-03-31T17:43:41.299267+0000","last_unstale":"2026-03-31T17:43:41.605330+0000","last_undegraded":"2026-03-31T17:43:41.605330+0000","last_fullsized":"2026-03-31T17:43:41.605330+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-03-31T17:43:16.769690+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-03-31T17:43:16.769690+0000","last_clean_scrub_stamp":"2026-03-31T17:43:16.769690+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-04-02T04:47:38.012924+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":1851392,"data_stored":1837120,"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":39,"seq":167503724546,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27988,"kb_used_data":820,"kb_used_omap":6,"kb_used_meta":27129,"kb_avail":20939436,"statfs":{"total":21470642176,"available":21441982464,"internally_reserved":0,"allocated":839680,"data_stored":601378,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6490,"internal_metadata":27780774},"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":33,"seq":141733920772,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27528,"kb_used_data":368,"kb_used_omap":9,"kb_used_meta":27126,"kb_avail":20939896,"statfs":{"total":21470642176,"available":21442453504,"internally_reserved":0,"allocated":376832,"data_stored":142098,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9750,"internal_metadata":27777514},"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":27,"seq":115964116998,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":28004,"kb_used_data":820,"kb_used_omap":13,"kb_used_meta":27122,"kb_avail":20939420,"statfs":{"total":21470642176,"available":21441966080,"internally_reserved":0,"allocated":839680,"data_stored":601378,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":14303,"internal_metadata":27772961},"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":20,"seq":85899345927,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27996,"kb_used_data":820,"kb_used_omap":8,"kb_used_meta":27127,"kb_avail":20939428,"statfs":{"total":21470642176,"available":21441974272,"internally_reserved":0,"allocated":839680,"data_stored":601378,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8448,"internal_metadata":27778816},"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":15,"seq":64424509449,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27536,"kb_used_data":368,"kb_used_omap":20,"kb_used_meta":27115,"kb_avail":20939888,"statfs":{"total":21470642176,"available":21442445312,"internally_reserved":0,"allocated":376832,"data_stored":142098,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":21468,"internal_metadata":27765796},"hb_peers":[0,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":0,"up_from":9,"seq":38654705674,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27544,"kb_used_data":368,"kb_used_omap":24,"kb_used_meta":27111,"kb_avail":20939880,"statfs":{"total":21470642176,"available":21442437120,"internally_reserved":0,"allocated":376832,"data_stored":142098,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":24723,"internal_metadata":27762541},"hb_peers":[1,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":[]}],"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":462848,"data_stored":459280,"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-31T17:43:44.759 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph pg dump --format=json 2026-03-31T17:43:44.873 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:44.892 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2074791124' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-03-31T17:43:44.892 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/729243337' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-03-31T17:43:44.892 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/865103420' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-03-31T17:43:44.892 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/3034417390' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-03-31T17:43:44.892 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1652626040' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-03-31T17:43:44.892 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:44 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/2703512406' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-03-31T17:43:44.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/2074791124' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-03-31T17:43:44.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/729243337' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-03-31T17:43:44.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/865103420' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-03-31T17:43:44.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/3034417390' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-03-31T17:43:44.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/1652626040' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-03-31T17:43:44.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:44 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/2703512406' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-03-31T17:43:45.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2074791124' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-03-31T17:43:45.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/729243337' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-03-31T17:43:45.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/865103420' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-03-31T17:43:45.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/3034417390' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-03-31T17:43:45.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1652626040' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-03-31T17:43:45.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:44 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/2703512406' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-03-31T17:43:45.090 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:45.090 INFO:teuthology.orchestra.run.vm02.stderr:dumped all 2026-03-31T17:43:45.129 INFO:teuthology.orchestra.run.vm02.stdout:{"pg_ready":true,"pg_map":{"version":73,"stamp":"2026-03-31T17:43:43.578183+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":3,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":4,"kb":125804544,"kb_used":166596,"kb_used_data":3564,"kb_used_omap":83,"kb_used_meta":162732,"kb_avail":125637948,"statfs":{"total":128823853056,"available":128653258752,"internally_reserved":0,"allocated":3649536,"data_stored":2230428,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":85182,"internal_metadata":166638402},"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":"4.905805"},"pg_stats":[{"pgid":"1.0","version":"23'32","reported_seq":64,"reported_epoch":41,"state":"active+clean","last_fresh":"2026-03-31T17:43:41.605330+0000","last_change":"2026-03-31T17:43:41.605283+0000","last_active":"2026-03-31T17:43:41.605330+0000","last_peered":"2026-03-31T17:43:41.605330+0000","last_clean":"2026-03-31T17:43:41.605330+0000","last_became_active":"2026-03-31T17:43:41.299267+0000","last_became_peered":"2026-03-31T17:43:41.299267+0000","last_unstale":"2026-03-31T17:43:41.605330+0000","last_undegraded":"2026-03-31T17:43:41.605330+0000","last_fullsized":"2026-03-31T17:43:41.605330+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":22,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-03-31T17:43:16.769690+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-03-31T17:43:16.769690+0000","last_clean_scrub_stamp":"2026-03-31T17:43:16.769690+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-04-02T04:47:38.012924+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":1851392,"data_stored":1837120,"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":39,"seq":167503724546,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27988,"kb_used_data":820,"kb_used_omap":6,"kb_used_meta":27129,"kb_avail":20939436,"statfs":{"total":21470642176,"available":21441982464,"internally_reserved":0,"allocated":839680,"data_stored":601378,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6490,"internal_metadata":27780774},"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":33,"seq":141733920772,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27528,"kb_used_data":368,"kb_used_omap":9,"kb_used_meta":27126,"kb_avail":20939896,"statfs":{"total":21470642176,"available":21442453504,"internally_reserved":0,"allocated":376832,"data_stored":142098,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9750,"internal_metadata":27777514},"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":27,"seq":115964116998,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":28004,"kb_used_data":820,"kb_used_omap":13,"kb_used_meta":27122,"kb_avail":20939420,"statfs":{"total":21470642176,"available":21441966080,"internally_reserved":0,"allocated":839680,"data_stored":601378,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":14303,"internal_metadata":27772961},"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":20,"seq":85899345927,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":20967424,"kb_used":27996,"kb_used_data":820,"kb_used_omap":8,"kb_used_meta":27127,"kb_avail":20939428,"statfs":{"total":21470642176,"available":21441974272,"internally_reserved":0,"allocated":839680,"data_stored":601378,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":8448,"internal_metadata":27778816},"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":15,"seq":64424509449,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27536,"kb_used_data":368,"kb_used_omap":20,"kb_used_meta":27115,"kb_avail":20939888,"statfs":{"total":21470642176,"available":21442445312,"internally_reserved":0,"allocated":376832,"data_stored":142098,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":21468,"internal_metadata":27765796},"hb_peers":[0,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":0,"up_from":9,"seq":38654705674,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":20967424,"kb_used":27544,"kb_used_data":368,"kb_used_omap":24,"kb_used_meta":27111,"kb_avail":20939880,"statfs":{"total":21470642176,"available":21442437120,"internally_reserved":0,"allocated":376832,"data_stored":142098,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":24723,"internal_metadata":27762541},"hb_peers":[1,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":[]}],"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":462848,"data_stored":459280,"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-31T17:43:45.129 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-03-31T17:43:45.129 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-03-31T17:43:45.129 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-03-31T17:43:45.129 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph health --format=json 2026-03-31T17:43:45.252 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:45.517 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:43:45.517 INFO:teuthology.orchestra.run.vm02.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-03-31T17:43:45.554 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-03-31T17:43:45.554 INFO:tasks.cephadm:Setup complete, yielding 2026-03-31T17:43:45.554 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-03-31T17:43:45.556 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@vm02.local 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- bash -c 'set -ex 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> for host in $HOSTNAMES; do 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> # find the hostname for "host.c" which will have no mgr 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> if [ "$HAS_MGRS" == "false" ]; then 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> HOST_C="${host}" 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> fi 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> done 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> # One last thing to worry about before draining the host 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> # is that the teuthology test tends to put the explicit 2026-03-31T17:43:45.556 DEBUG:teuthology.orchestra.run.vm02:> # hostnames in the placement for the mon service. 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # We want to make sure we can drain without providing 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # --force and there is a check for the host being removed 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # being listed explicitly in the placements. Therefore, 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # we should remove it from the mon placement. 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ceph orch ls mon --export > mon.yaml 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ceph orch apply -i mon_adjusted.yaml 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # now drain that host 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ceph orch host drain $HOST_C --zap-osd-devices 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # wait for drain to complete 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> sleep 15 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> done 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # we want to check the ability to remove the host from 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # the CRUSH map, so we should first verify the host is in 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # the CRUSH map. 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ceph osd getcrushmap -o compiled-crushmap 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> crushtool -d compiled-crushmap -o crushmap.txt 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> CRUSH_MAP=$(cat crushmap.txt) 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> exit 1 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> fi 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # If the drain was successful, we should be able to remove the 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # host without force with no issues. If there are still daemons 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # we will get a response telling us to drain the host and a 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # non-zero return code 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ceph orch host rm $HOST_C --rm-crush-entry 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> sleep 30 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ceph osd getcrushmap -o compiled-crushmap 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> crushtool -d compiled-crushmap -o crushmap.txt 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> CRUSH_MAP=$(cat crushmap.txt) 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> exit 1 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> fi 2026-03-31T17:43:45.557 DEBUG:teuthology.orchestra.run.vm02:> ' 2026-03-31T17:43:45.673 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:43:45.737 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch host ls --format json 2026-03-31T17:43:45.737 INFO:teuthology.orchestra.run.vm02.stderr:++ jq -r '.[] | .hostname' 2026-03-31T17:43:45.786 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:45 vm02 ceph-mon[51704]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:45.786 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:45 vm02 ceph-mon[51704]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:45.786 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:45 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/1009741726' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-03-31T17:43:45.786 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:45 vm02 ceph-mon[51704]: pgmap v74: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:43:45.913 INFO:teuthology.orchestra.run.vm02.stderr:+ HOSTNAMES='vm02 2026-03-31T17:43:45.913 INFO:teuthology.orchestra.run.vm02.stderr:vm06 2026-03-31T17:43:45.913 INFO:teuthology.orchestra.run.vm02.stderr:vm07' 2026-03-31T17:43:45.913 INFO:teuthology.orchestra.run.vm02.stderr:+ for host in $HOSTNAMES 2026-03-31T17:43:45.913 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm02 --format json 2026-03-31T17:43:45.913 INFO:teuthology.orchestra.run.vm02.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-03-31T17:43:45.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:45 vm06 ceph-mon[57133]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:45.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:45 vm06 ceph-mon[57133]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:45.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:45 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/1009741726' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-03-31T17:43:45.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:45 vm06 ceph-mon[57133]: pgmap v74: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:43:46.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:45 vm07 ceph-mon[55273]: from='client.14502 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:45 vm07 ceph-mon[55273]: from='client.14508 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:45 vm07 ceph-mon[55273]: from='client.? 192.168.123.102:0/1009741726' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-03-31T17:43:46.028 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:45 vm07 ceph-mon[55273]: pgmap v74: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:43:46.090 INFO:teuthology.orchestra.run.vm02.stderr:+ HAS_MGRS=true 2026-03-31T17:43:46.090 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' true == false ']' 2026-03-31T17:43:46.090 INFO:teuthology.orchestra.run.vm02.stderr:+ for host in $HOSTNAMES 2026-03-31T17:43:46.090 INFO:teuthology.orchestra.run.vm02.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-03-31T17:43:46.090 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm06 --format json 2026-03-31T17:43:46.269 INFO:teuthology.orchestra.run.vm02.stderr:+ HAS_MGRS=true 2026-03-31T17:43:46.269 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' true == false ']' 2026-03-31T17:43:46.269 INFO:teuthology.orchestra.run.vm02.stderr:+ for host in $HOSTNAMES 2026-03-31T17:43:46.269 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm07 --format json 2026-03-31T17:43:46.269 INFO:teuthology.orchestra.run.vm02.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-03-31T17:43:46.450 INFO:teuthology.orchestra.run.vm02.stderr:+ HAS_MGRS=false 2026-03-31T17:43:46.450 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' false == false ']' 2026-03-31T17:43:46.450 INFO:teuthology.orchestra.run.vm02.stderr:+ HOST_C=vm07 2026-03-31T17:43:46.450 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch ls mon --export 2026-03-31T17:43:46.628 INFO:teuthology.orchestra.run.vm02.stderr:+ sed /vm07/d mon.yaml 2026-03-31T17:43:46.629 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch apply -i mon_adjusted.yaml 2026-03-31T17:43:46.803 INFO:teuthology.orchestra.run.vm02.stdout:Scheduled mon update... 2026-03-31T17:43:46.812 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch host drain vm07 --zap-osd-devices 2026-03-31T17:43:46.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:46 vm06 ceph-mon[57133]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:46 vm06 ceph-mon[57133]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm02", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:46 vm06 ceph-mon[57133]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm06", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:46 vm06 ceph-mon[57133]: from='client.24364 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:46 vm06 ceph-mon[57133]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:46 vm02 ceph-mon[51704]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:46 vm02 ceph-mon[51704]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm02", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:46 vm02 ceph-mon[51704]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm06", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:46 vm02 ceph-mon[51704]: from='client.24364 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:46.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:46 vm02 ceph-mon[51704]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:46.995 INFO:teuthology.orchestra.run.vm02.stdout:Scheduled to remove the following daemons from host 'vm07' 2026-03-31T17:43:46.995 INFO:teuthology.orchestra.run.vm02.stdout:type id 2026-03-31T17:43:46.995 INFO:teuthology.orchestra.run.vm02.stdout:-------------------- --------------- 2026-03-31T17:43:46.995 INFO:teuthology.orchestra.run.vm02.stdout:mon c 2026-03-31T17:43:46.995 INFO:teuthology.orchestra.run.vm02.stdout:osd 4 2026-03-31T17:43:46.995 INFO:teuthology.orchestra.run.vm02.stdout:osd 5 2026-03-31T17:43:47.006 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm07 2026-03-31T17:43:47.025 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:46 vm07 ceph-mon[55273]: from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:47.025 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:46 vm07 ceph-mon[55273]: from='client.14526 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm02", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:47.025 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:46 vm07 ceph-mon[55273]: from='client.14532 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm06", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:47.025 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:46 vm07 ceph-mon[55273]: from='client.24364 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-03-31T17:43:47.025 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:46 vm07 ceph-mon[55273]: from='client.14544 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:47.193 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-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:mon.c vm07 running (74s) 8s ago 74s 44.0M 2048M 20.2.0-721-g5bb32787 1e58a3cbf9ab 16306fef7531 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:osd.4 vm07 running (19s) 8s ago 21s 33.3M 2877M 20.2.0-721-g5bb32787 1e58a3cbf9ab 5fb970001eb6 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:osd.5 vm07 running (10s) 8s ago 12s 25.2M 2877M 20.2.0-721-g5bb32787 1e58a3cbf9ab cadf5a6f600d ' 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:mon.c vm07 running (74s) 8s ago 74s 44.0M 2048M 20.2.0-721-g5bb32787 1e58a3cbf9ab 16306fef7531 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:osd.4 vm07 running (19s) 8s ago 21s 33.3M 2877M 20.2.0-721-g5bb32787 1e58a3cbf9ab 5fb970001eb6 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:osd.5 vm07 running (10s) 8s ago 12s 25.2M 2877M 20.2.0-721-g5bb32787 1e58a3cbf9ab cadf5a6f600d ' '!=' 'No daemons reported' ']' 2026-03-31T17:43:47.193 INFO:teuthology.orchestra.run.vm02.stderr:+ sleep 15 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: Saving service mon spec with placement vm02:192.168.123.102=a;vm06:192.168.123.106=b;count:3 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "vm07", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: Added label _no_schedule to host vm07 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: Added label _no_conf_keyring to host vm07 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: osd.4 crush weight is 0.0194854736328125 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: osd.5 crush weight is 0.0194854736328125 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.208 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:47 vm06 ceph-mon[57133]: pgmap v75: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 57 KiB/s, 0 objects/s recovering 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: Saving service mon spec with placement vm02:192.168.123.102=a;vm06:192.168.123.106=b;count:3 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "vm07", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: Added label _no_schedule to host vm07 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: Added label _no_conf_keyring to host vm07 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: osd.4 crush weight is 0.0194854736328125 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: osd.5 crush weight is 0.0194854736328125 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:47 vm02 ceph-mon[51704]: pgmap v75: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 57 KiB/s, 0 objects/s recovering 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='client.14550 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: Saving service mon spec with placement vm02:192.168.123.102=a;vm06:192.168.123.106=b;count:3 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='client.14556 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "vm07", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: Added label _no_schedule to host vm07 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: Added label _no_conf_keyring to host vm07 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: osd.4 crush weight is 0.0194854736328125 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: osd.5 crush weight is 0.0194854736328125 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:48.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:47 vm07 ceph-mon[55273]: pgmap v75: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 57 KiB/s, 0 objects/s recovering 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: Removing vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: Removing vm07:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: Removing vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:48 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-03-31T17:43:49.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:49 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-a[51700]: 2026-03-31T17:43:49.020+0000 7fd181519640 -1 mon.a@0(leader).osd e42 definitely_dead 0 2026-03-31T17:43:49.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: Removing vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: Removing vm07:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: Removing vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-31T17:43:49.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:48 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-03-31T17:43:49.457 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.457 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: Removing vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: Removing vm07:/etc/ceph/ceph.client.admin.keyring 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: Removing vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.client.admin.keyring 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-03-31T17:43:49.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:48 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-03-31T17:43:50.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-03-31T17:43:50.278 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: osdmap e42: 6 total, 6 up, 6 in 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: osd.5 weight is now 0.0 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-03-31T17:43:50.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:50 vm07 ceph-mon[55273]: pgmap v77: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 54 KiB/s, 0 objects/s recovering 2026-03-31T17:43:50.279 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 systemd[1]: Stopping Ceph osd.4 for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:43:50.279 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4[60169]: 2026-03-31T17:43:50.244+0000 7f1539f02640 -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 --osd-objectstore=bluestore (PID: 1) UID: 0 2026-03-31T17:43:50.279 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4[60169]: 2026-03-31T17:43:50.244+0000 7f1539f02640 -1 osd.4 42 *** Got signal Terminated *** 2026-03-31T17:43:50.279 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4[60169]: 2026-03-31T17:43:50.244+0000 7f1539f02640 -1 osd.4 42 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: osdmap e42: 6 total, 6 up, 6 in 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: osd.5 weight is now 0.0 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-03-31T17:43:50.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:50 vm06 ceph-mon[57133]: pgmap v77: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 54 KiB/s, 0 objects/s recovering 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: osdmap e42: 6 total, 6 up, 6 in 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: osd.5 weight is now 0.0 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-03-31T17:43:50.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:50 vm02 ceph-mon[51704]: pgmap v77: 1 pgs: 1 active+clean; 449 KiB data, 163 MiB used, 120 GiB / 120 GiB avail; 54 KiB/s, 0 objects/s recovering 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[72993]: 2026-03-31 17:43:50.285769836 +0000 UTC m=+0.053105840 container died 5fb970001eb6c513980d6510fb1c810bf0ed850a6b534b1ca9382f0273d060cd (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, ceph=True, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=tentacle-release, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0) 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[72993]: 2026-03-31 17:43:50.303047295 +0000 UTC m=+0.070383299 container remove 5fb970001eb6c513980d6510fb1c810bf0ed850a6b534b1ca9382f0273d060cd (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4, org.label-schema.build-date=20260316, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=tentacle-release, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.43.0, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.schema-version=1.0) 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 bash[72993]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.434532417 +0000 UTC m=+0.013989175 container create 5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4-deactivate, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.43.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.label-schema.build-date=20260316, CEPH_REF=tentacle-release, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.463833169 +0000 UTC m=+0.043289927 container init 5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.43.0, CEPH_REF=tentacle-release) 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.46654237 +0000 UTC m=+0.045999128 container start 5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0, org.label-schema.schema-version=1.0, CEPH_REF=tentacle-release, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260316) 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.4674345 +0000 UTC m=+0.046891258 container attach 5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4-deactivate, OSD_FLAVOR=default, CEPH_REF=tentacle-release, org.label-schema.vendor=CentOS, io.buildah.version=1.43.0, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260316, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-31T17:43:50.597 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.428713706 +0000 UTC m=+0.008170464 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:43:50.935 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 conmon[73088]: conmon 5ff66db39f9d9453b771 : Failed to open cgroups file: /sys/fs/cgroup/machine.slice/libpod-5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812.scope/container/memory.events 2026-03-31T17:43:50.935 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.596342018 +0000 UTC m=+0.175798776 container died 5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4-deactivate, io.buildah.version=1.43.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, 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.authors=Ceph Release Team , org.label-schema.build-date=20260316, ceph=True, CEPH_REF=tentacle-release, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-03-31T17:43:50.935 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 podman[73076]: 2026-03-31 17:43:50.607878019 +0000 UTC m=+0.187334777 container remove 5ff66db39f9d9453b771278c21d7e80267dbdb2444c8b33a2410ecf3c30ae812 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-4-deactivate, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, ceph=True, io.buildah.version=1.43.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, CEPH_REF=tentacle-release, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, 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/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-03-31T17:43:50.935 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 systemd[1]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.4.service: Deactivated successfully. 2026-03-31T17:43:50.935 INFO:journalctl@ceph.osd.4.vm07.stdout:Mar 31 17:43:50 vm07 systemd[1]: Stopped Ceph osd.4 for cc53a1fa-2d28-11f1-b83b-53da7b16591a. 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: osdmap e43: 6 total, 5 up, 6 in 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: osd.4 now down 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: Removing daemon osd.4 from vm07 -- ports [] 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: osdmap e44: 6 total, 5 up, 6 in 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: Cluster is now healthy 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-03-31T17:43:51.279 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:51 vm07 ceph-mon[55273]: osdmap e45: 5 total, 5 up, 5 in 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: osdmap e43: 6 total, 5 up, 6 in 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: osd.4 now down 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: Removing daemon osd.4 from vm07 -- ports [] 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: osdmap e44: 6 total, 5 up, 6 in 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: Cluster is now healthy 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-03-31T17:43:51.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:51 vm06 ceph-mon[57133]: osdmap e45: 5 total, 5 up, 5 in 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: osdmap e43: 6 total, 5 up, 6 in 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: osd.4 now down 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: Removing daemon osd.4 from vm07 -- ports [] 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: osdmap e44: 6 total, 5 up, 6 in 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: Cluster is now healthy 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-03-31T17:43:51.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:51 vm02 ceph-mon[51704]: osdmap e45: 5 total, 5 up, 5 in 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: Removing key for osd.4 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: Successfully removed osd.4 on vm07 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: Successfully purged osd.4 on vm07 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: Zapping devices for osd.4 on vm07 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: Successfully zapped devices for osd.4 on vm07 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: pgmap v81: 1 pgs: 1 active+clean; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: osdmap e46: 5 total, 5 up, 5 in 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:52 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: Removing key for osd.4 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: Successfully removed osd.4 on vm07 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: Successfully purged osd.4 on vm07 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: Zapping devices for osd.4 on vm07 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: Successfully zapped devices for osd.4 on vm07 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: pgmap v81: 1 pgs: 1 active+clean; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: osdmap e46: 5 total, 5 up, 5 in 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:52 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: Removing key for osd.4 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: Successfully removed osd.4 on vm07 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: Successfully purged osd.4 on vm07 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: Zapping devices for osd.4 on vm07 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: Successfully zapped devices for osd.4 on vm07 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: pgmap v81: 1 pgs: 1 active+clean; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: osdmap e46: 5 total, 5 up, 5 in 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:52.529 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 ceph-mon[55273]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 podman[75620]: 2026-03-31 17:43:52.664765581 +0000 UTC m=+0.010184073 container died 16306fef75314d52a1df6065ac9b6e9522ab30a54c8483a4701143f6ce60ae51 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-c, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_REF=tentacle-release, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, org.label-schema.build-date=20260316, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-31T17:43:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 podman[75620]: 2026-03-31 17:43:52.674904718 +0000 UTC m=+0.020323210 container remove 16306fef75314d52a1df6065ac9b6e9522ab30a54c8483a4701143f6ce60ae51 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-c, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, ceph=True, org.label-schema.build-date=20260316, io.buildah.version=1.43.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, 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.license=GPLv2, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, CEPH_REF=tentacle-release, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0) 2026-03-31T17:43:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 systemd[1]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.c.service: Deactivated successfully. 2026-03-31T17:43:53.029 INFO:journalctl@ceph.mon.c.vm07.stdout:Mar 31 17:43:52 vm07 systemd[1]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.c.service: Consumed 1.361s CPU time. 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: purged_snaps scrub ok 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: Detected new or changed devices on vm07 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: Removing monitor c from monmap... 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: mon.b calling monitor election 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: pgmap v83: 1 pgs: 1 peering; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: mon.a calling monitor election 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: monmap epoch 4 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: last_changed 2026-03-31T17:43:52.638830+0000 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: min_mon_release 20 (tentacle) 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: election_strategy: 1 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: 1: [v2:192.168.123.106:3300/0,v1:192.168.123.106:6789/0] mon.b 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: fsmap 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: osdmap e46: 5 total, 5 up, 5 in 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: mgrmap e14: a(active, since 95s), standbys: b 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: overall HEALTH_OK 2026-03-31T17:43:54.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:54 vm06 ceph-mon[57133]: Removing daemon mon.c from vm07 -- ports [] 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: purged_snaps scrub ok 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: Detected new or changed devices on vm07 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: Removing monitor c from monmap... 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: mon.b calling monitor election 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: pgmap v83: 1 pgs: 1 peering; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: mon.a calling monitor election 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: monmap epoch 4 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: last_changed 2026-03-31T17:43:52.638830+0000 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: created 2026-03-31T17:41:58.588946+0000 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: min_mon_release 20 (tentacle) 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: election_strategy: 1 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: 0: [v2:192.168.123.102:3300/0,v1:192.168.123.102:6789/0] mon.a 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: 1: [v2:192.168.123.106:3300/0,v1:192.168.123.106:6789/0] mon.b 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: fsmap 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: osdmap e46: 5 total, 5 up, 5 in 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: mgrmap e14: a(active, since 95s), standbys: b 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: overall HEALTH_OK 2026-03-31T17:43:54.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:54 vm02 ceph-mon[51704]: Removing daemon mon.c from vm07 -- ports [] 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: osdmap e47: 5 total, 5 up, 5 in 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:55 vm06 ceph-mon[57133]: pgmap v85: 1 pgs: 1 peering; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: osdmap e47: 5 total, 5 up, 5 in 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:55.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:55 vm02 ceph-mon[51704]: pgmap v85: 1 pgs: 1 peering; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:56.584 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:43:56 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 2026-03-31T17:43:56.328+0000 7f4ac10eb640 -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-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Reconfiguring mon.a (monmap changed)... 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.226 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Reconfiguring daemon mon.a on vm02 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Reconfiguring mgr.a (monmap changed)... 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: Reconfiguring daemon mgr.a on vm02 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:43:57.227 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:57 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Updating vm02:/etc/ceph/ceph.conf 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Updating vm06:/etc/ceph/ceph.conf 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Updating vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Updating vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/config/ceph.conf 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Reconfiguring mon.a (monmap changed)... 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Reconfiguring daemon mon.a on vm02 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Reconfiguring mgr.a (monmap changed)... 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: Reconfiguring daemon mgr.a on vm02 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-03-31T17:43:57.458 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:57 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring osd.0 (monmap changed)... 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring daemon osd.0 on vm02 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring osd.1 (monmap changed)... 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:58.279 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring daemon osd.1 on vm02 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring mon.b (monmap changed)... 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring daemon mon.b on vm06 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: pgmap v86: 1 pgs: 1 peering; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring mgr.b (monmap changed)... 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: Reconfiguring daemon mgr.b on vm06 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:58.280 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:58 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring osd.0 (monmap changed)... 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring daemon osd.0 on vm02 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring osd.1 (monmap changed)... 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring daemon osd.1 on vm02 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring mon.b (monmap changed)... 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring daemon mon.b on vm06 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: pgmap v86: 1 pgs: 1 peering; 449 KiB data, 136 MiB used, 100 GiB / 100 GiB avail 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring mgr.b (monmap changed)... 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: Reconfiguring daemon mgr.b on vm06 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-03-31T17:43:58.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:58 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: Reconfiguring osd.2 (monmap changed)... 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: Reconfiguring daemon osd.2 on vm06 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: Reconfiguring osd.3 (monmap changed)... 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: Reconfiguring daemon osd.3 on vm06 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: Reconfiguring osd.5 (monmap changed)... 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: Reconfiguring daemon osd.5 on vm07 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.682 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: Reconfiguring osd.2 (monmap changed)... 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: Reconfiguring daemon osd.2 on vm06 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: Reconfiguring osd.3 (monmap changed)... 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: Reconfiguring daemon osd.3 on vm06 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: Reconfiguring osd.5 (monmap changed)... 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: Reconfiguring daemon osd.5 on vm07 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:43:59 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:43:59.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:43:59 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-a[51700]: 2026-03-31T17:43:59.678+0000 7fd181519640 -1 mon.a@0(leader).osd e47 definitely_dead 0 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: pgmap v87: 1 pgs: 1 active+clean; 449 KiB data, 137 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-03-31T17:44:00.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:00 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: pgmap v87: 1 pgs: 1 active+clean; 449 KiB data, 137 MiB used, 100 GiB / 100 GiB avail; 56 KiB/s, 0 objects/s recovering 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-03-31T17:44:00.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:00 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 systemd[1]: Stopping Ceph osd.5 for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5[67041]: 2026-03-31T17:44:00.879+0000 7f62bec4a640 -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 --osd-objectstore=bluestore (PID: 1) UID: 0 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5[67041]: 2026-03-31T17:44:00.879+0000 7f62bec4a640 -1 osd.5 47 *** Got signal Terminated *** 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5[67041]: 2026-03-31T17:44:00.879+0000 7f62bec4a640 -1 osd.5 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 podman[80276]: 2026-03-31 17:44:00.916471548 +0000 UTC m=+0.049362132 container died cadf5a6f600d00e4639f85a15d66d833686a3fe7d625f445f4844b0e4412f7e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5, 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.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.build-date=20260316, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, io.buildah.version=1.43.0) 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 podman[80276]: 2026-03-31 17:44:00.930556511 +0000 UTC m=+0.063447095 container remove cadf5a6f600d00e4639f85a15d66d833686a3fe7d625f445f4844b0e4412f7e7 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=tentacle-release, org.label-schema.license=GPLv2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, 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.label-schema.build-date=20260316, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS) 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:00 vm07 bash[80276]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5 2026-03-31T17:44:01.078 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.056607452 +0000 UTC m=+0.016128118 container create 5267997edfa358d86a1cd390f2071a5931fc942ff4cabae7445f804795289025 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5-deactivate, org.label-schema.vendor=CentOS, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, io.buildah.version=1.43.0, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.build-date=20260316, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=tentacle-release, org.label-schema.schema-version=1.0) 2026-03-31T17:44:01.346 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.084867507 +0000 UTC m=+0.044388164 container init 5267997edfa358d86a1cd390f2071a5931fc942ff4cabae7445f804795289025 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, ceph=True, io.buildah.version=1.43.0, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_REF=tentacle-release) 2026-03-31T17:44:01.346 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.087594121 +0000 UTC m=+0.047114787 container start 5267997edfa358d86a1cd390f2071a5931fc942ff4cabae7445f804795289025 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, ceph=True, CEPH_REF=tentacle-release, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.43.0, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0) 2026-03-31T17:44:01.346 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.088535973 +0000 UTC m=+0.048056639 container attach 5267997edfa358d86a1cd390f2071a5931fc942ff4cabae7445f804795289025 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5-deactivate, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, CEPH_REF=tentacle-release, io.buildah.version=1.43.0, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-31T17:44:01.346 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.050228713 +0000 UTC m=+0.009749379 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:44:01.346 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.2133609 +0000 UTC m=+0.172881566 container died 5267997edfa358d86a1cd390f2071a5931fc942ff4cabae7445f804795289025 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5-deactivate, org.label-schema.schema-version=1.0, 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, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, io.buildah.version=1.43.0, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=tentacle-release) 2026-03-31T17:44:01.347 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 podman[80355]: 2026-03-31 17:44:01.224835307 +0000 UTC m=+0.184355963 container remove 5267997edfa358d86a1cd390f2071a5931fc942ff4cabae7445f804795289025 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-5-deactivate, io.buildah.version=1.43.0, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260316, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.label-schema.license=GPLv2, CEPH_REF=tentacle-release, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-03-31T17:44:01.347 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 systemd[1]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.5.service: Deactivated successfully. 2026-03-31T17:44:01.347 INFO:journalctl@ceph.osd.5.vm07.stdout:Mar 31 17:44:01 vm07 systemd[1]: Stopped Ceph osd.5 for cc53a1fa-2d28-11f1-b83b-53da7b16591a. 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-03-31T17:44:01.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:01 vm06 ceph-mon[57133]: osdmap e48: 5 total, 4 up, 5 in 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: Health check failed: 1 osds down (OSD_DOWN) 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-03-31T17:44:01.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:01 vm02 ceph-mon[51704]: osdmap e48: 5 total, 4 up, 5 in 2026-03-31T17:44:02.194 INFO:teuthology.orchestra.run.vm02.stderr:++ ceph orch ps --hostname vm07 2026-03-31T17:44:02.383 INFO:teuthology.orchestra.run.vm02.stderr:+ HOST_C_DAEMONS='No daemons reported' 2026-03-31T17:44:02.383 INFO:teuthology.orchestra.run.vm02.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2026-03-31T17:44:02.383 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: osd.5 now down 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Removing daemon osd.5 from vm07 -- ports [] 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Removing key for osd.5 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Successfully removed osd.5 on vm07 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Cluster is now healthy 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: osdmap e49: 4 total, 4 up, 4 in 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Successfully purged osd.5 on vm07 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: Zapping devices for osd.5 on vm07 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: pgmap v90: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail; 65 KiB/s, 0 objects/s recovering 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:02.476 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:02 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:44:02.559 INFO:teuthology.orchestra.run.vm02.stderr:23 2026-03-31T17:44:02.570 INFO:teuthology.orchestra.run.vm02.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-03-31T17:44:02.579 INFO:teuthology.orchestra.run.vm02.stderr:++ cat crushmap.txt 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:+ CRUSH_MAP='# begin crush map 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_tries 0 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_fallback_tries 0 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_total_tries 50 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_descend_once 1 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_vary_r 1 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_stable 1 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable straw_calc_version 1 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:tunable allowed_bucket_algs 54 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:# devices 2026-03-31T17:44:02.580 INFO:teuthology.orchestra.run.vm02.stderr:device 0 osd.0 class hdd 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:device 1 osd.1 class hdd 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:device 2 osd.2 class hdd 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:device 3 osd.3 class hdd 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:# types 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 0 osd 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 1 host 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 2 chassis 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 3 rack 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 4 row 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 5 pdu 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 6 pod 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 7 room 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 8 datacenter 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 9 zone 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 10 region 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:type 11 root 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:# buckets 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:host vm02 { 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -3 # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -4 class hdd # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item osd.0 weight 0.01949 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item osd.1 weight 0.01949 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:host vm06 { 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -5 # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -6 class hdd # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item osd.2 weight 0.01949 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item osd.3 weight 0.01949 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:host vm07 { 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -7 # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -8 class hdd # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.00000 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:root default { 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -1 # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id -2 class hdd # do not change unnecessarily 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.07794 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item vm02 weight 0.03897 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item vm06 weight 0.03897 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: item vm07 weight 0.00000 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:# rules 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr:rule replicated_rule { 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: id 0 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: type replicated 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: step take default 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: step choose firstn 0 type osd 2026-03-31T17:44:02.581 INFO:teuthology.orchestra.run.vm02.stderr: step emit 2026-03-31T17:44:02.582 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:02.582 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:02.582 INFO:teuthology.orchestra.run.vm02.stderr:# end crush map' 2026-03-31T17:44:02.582 INFO:teuthology.orchestra.run.vm02.stderr:+ grep -q vm07 2026-03-31T17:44:02.582 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph orch host rm vm07 --rm-crush-entry 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: osd.5 now down 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Removing daemon osd.5 from vm07 -- ports [] 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Removing key for osd.5 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Successfully removed osd.5 on vm07 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Cluster is now healthy 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: osdmap e49: 4 total, 4 up, 4 in 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Successfully purged osd.5 on vm07 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: Zapping devices for osd.5 on vm07 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: pgmap v90: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail; 65 KiB/s, 0 objects/s recovering 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:02.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:02 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:44:03.491 INFO:teuthology.orchestra.run.vm02.stdout:Removed host 'vm07' 2026-03-31T17:44:03.502 INFO:teuthology.orchestra.run.vm02.stderr:+ sleep 30 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: Successfully zapped devices for osd.5 on vm07 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='client.14566 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/663807914' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "vm07"} : dispatch 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:44:03.708 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:03 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: Successfully zapped devices for osd.5 on vm07 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='client.14566 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "vm07", "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/663807914' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "vm07"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 2026-03-31T17:44:03.487+0000 7f4ab00c9640 -1 log_channel(cephadm) log [ERR] : host vm07 `cephadm ceph-volume` failed: Cannot decode JSON: 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: Traceback (most recent call last): 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1623, in _run_cephadm_json 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: return json.loads(''.join(out)) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: return _default_decoder.decode(s) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: raise JSONDecodeError("Expecting value", s, err.value) from None 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: 2026-03-31T17:44:03.488+0000 7f4aba8de640 -1 log_channel(cephadm) log [ERR] : executing refresh((['vm02', 'vm06', 'vm07'],)) failed. 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: Traceback (most recent call last): 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 98, in do_work 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: return f(*arg) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 321, in refresh 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 206, in has_label 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: host = self._get_stored_name(host) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 133, in _get_stored_name 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: self.assert_host(host) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 161, in assert_host 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: raise OrchestratorError('host %s does not exist' % host) 2026-03-31T17:44:03.726 INFO:journalctl@ceph.mgr.a.vm02.stdout:Mar 31 17:44:03 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-a[51925]: orchestrator._interface.OrchestratorError: host vm07 does not exist 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "vm07", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: Detected new or changed devices on vm07 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "vm07"}]': finished 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: osdmap e50: 4 total, 4 up, 4 in 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.vm07"} : dispatch 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.vm07"}]': finished 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: host vm07 `cephadm ceph-volume` failed: Cannot decode JSON: 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: Traceback (most recent call last): 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1623, in _run_cephadm_json 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: return json.loads(''.join(out)) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: return _default_decoder.decode(s) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: raise JSONDecodeError("Expecting value", s, err.value) from None 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: Removed host vm07 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: executing refresh((['vm02', 'vm06', 'vm07'],)) failed. 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: Traceback (most recent call last): 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/usr/share/ceph/mgr/cephadm/utils.py", line 98, in do_work 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: return f(*arg) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 321, in refresh 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 206, in has_label 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: host = self._get_stored_name(host) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 133, in _get_stored_name 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: self.assert_host(host) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 161, in assert_host 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: raise OrchestratorError('host %s does not exist' % host) 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout: orchestrator._interface.OrchestratorError: host vm07 does not exist 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:44:04.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:04 vm06 ceph-mon[57133]: pgmap v92: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "vm07", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: Detected new or changed devices on vm07 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "vm07"}]': finished 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: osdmap e50: 4 total, 4 up, 4 in 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.vm07"} : dispatch 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.vm07"}]': finished 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: host vm07 `cephadm ceph-volume` failed: Cannot decode JSON: 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: Traceback (most recent call last): 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1623, in _run_cephadm_json 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: return json.loads(''.join(out)) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: return _default_decoder.decode(s) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: raise JSONDecodeError("Expecting value", s, err.value) from None 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: Removed host vm07 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: executing refresh((['vm02', 'vm06', 'vm07'],)) failed. 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: Traceback (most recent call last): 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/usr/share/ceph/mgr/cephadm/utils.py", line 98, in do_work 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: return f(*arg) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 321, in refresh 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 206, in has_label 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: host = self._get_stored_name(host) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 133, in _get_stored_name 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: self.assert_host(host) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 161, in assert_host 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: raise OrchestratorError('host %s does not exist' % host) 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout: orchestrator._interface.OrchestratorError: host vm07 does not exist 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: from='mgr.14152 192.168.123.102:0/3420367897' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-03-31T17:44:04.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:04 vm02 ceph-mon[51704]: pgmap v92: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail; 75 KiB/s, 0 objects/s recovering 2026-03-31T17:44:06.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:06 vm06 ceph-mon[57133]: pgmap v93: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:06.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:06 vm02 ceph-mon[51704]: pgmap v93: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:08.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:08 vm06 ceph-mon[57133]: pgmap v94: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:08.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:08 vm02 ceph-mon[51704]: pgmap v94: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:10.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:10 vm06 ceph-mon[57133]: pgmap v95: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:10.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:10 vm02 ceph-mon[51704]: pgmap v95: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:12.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:12 vm06 ceph-mon[57133]: pgmap v96: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:12.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:12 vm02 ceph-mon[51704]: pgmap v96: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:14.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:14 vm06 ceph-mon[57133]: pgmap v97: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:14.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:14 vm02 ceph-mon[51704]: pgmap v97: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:16.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:16 vm06 ceph-mon[57133]: pgmap v98: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:16.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:16 vm02 ceph-mon[51704]: pgmap v98: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:18.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:18 vm06 ceph-mon[57133]: pgmap v99: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:18.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:18 vm02 ceph-mon[51704]: pgmap v99: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:19.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:19 vm02 ceph-mon[51704]: pgmap v100: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:20.207 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:19 vm06 ceph-mon[57133]: pgmap v100: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:22.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:22 vm06 ceph-mon[57133]: pgmap v101: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:22.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:22 vm02 ceph-mon[51704]: pgmap v101: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:24.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:24 vm06 ceph-mon[57133]: pgmap v102: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:24.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:24 vm02 ceph-mon[51704]: pgmap v102: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:26.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:26 vm06 ceph-mon[57133]: pgmap v103: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:26.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:26 vm02 ceph-mon[51704]: pgmap v103: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:28.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:28 vm06 ceph-mon[57133]: pgmap v104: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:28.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:28 vm02 ceph-mon[51704]: pgmap v104: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:30.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:30 vm06 ceph-mon[57133]: pgmap v105: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:30.975 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:30 vm02 ceph-mon[51704]: pgmap v105: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:32.957 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:32 vm06 ceph-mon[57133]: pgmap v106: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:32.976 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:32 vm02 ceph-mon[51704]: pgmap v106: 1 pgs: 1 active+clean; 449 KiB data, 109 MiB used, 80 GiB / 80 GiB avail 2026-03-31T17:44:33.503 INFO:teuthology.orchestra.run.vm02.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-03-31T17:44:33.663 INFO:teuthology.orchestra.run.vm02.stderr:24 2026-03-31T17:44:33.674 INFO:teuthology.orchestra.run.vm02.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-03-31T17:44:33.683 INFO:teuthology.orchestra.run.vm02.stderr:++ cat crushmap.txt 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:+ CRUSH_MAP='# begin crush map 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_tries 0 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_local_fallback_tries 0 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable choose_total_tries 50 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_descend_once 1 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_vary_r 1 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable chooseleaf_stable 1 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable straw_calc_version 1 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:tunable allowed_bucket_algs 54 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:# devices 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:device 0 osd.0 class hdd 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:device 1 osd.1 class hdd 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:device 2 osd.2 class hdd 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:device 3 osd.3 class hdd 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:# types 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 0 osd 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 1 host 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 2 chassis 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 3 rack 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 4 row 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 5 pdu 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 6 pod 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 7 room 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 8 datacenter 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 9 zone 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 10 region 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:type 11 root 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:# buckets 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:host vm02 { 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: id -3 # do not change unnecessarily 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: id -4 class hdd # do not change unnecessarily 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: item osd.0 weight 0.01949 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: item osd.1 weight 0.01949 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr:host vm06 { 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: id -5 # do not change unnecessarily 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: id -6 class hdd # do not change unnecessarily 2026-03-31T17:44:33.686 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.03897 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: item osd.2 weight 0.01949 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: item osd.3 weight 0.01949 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:root default { 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: id -1 # do not change unnecessarily 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: id -2 class hdd # do not change unnecessarily 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: # weight 0.07794 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: alg straw2 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: hash 0 # rjenkins1 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: item vm02 weight 0.03897 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: item vm06 weight 0.03897 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:# rules 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:rule replicated_rule { 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: id 0 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: type replicated 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: step take default 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: step choose firstn 0 type osd 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: step emit 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:} 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:# end crush map' 2026-03-31T17:44:33.687 INFO:teuthology.orchestra.run.vm02.stderr:+ grep -q vm07 2026-03-31T17:44:33.737 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-03-31T17:44:33.739 INFO:tasks.cephadm:Teardown begin 2026-03-31T17:44:33.739 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:44:33.758 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:33 vm02 ceph-mon[51704]: from='client.? 192.168.123.102:0/863311904' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-03-31T17:44:33.761 DEBUG:teuthology.orchestra.run.vm06:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:44:33.787 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:44:33.813 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-03-31T17:44:33.813 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:5bb3278730741031382ca9c3dc9d221a942e06a2 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a -- ceph mgr module disable cephadm 2026-03-31T17:44:33.927 INFO:teuthology.orchestra.run.vm02.stderr:Inferring config /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/mon.a/config 2026-03-31T17:44:33.943 INFO:teuthology.orchestra.run.vm02.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-03-31T17:44:33.958 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:33 vm06 ceph-mon[57133]: from='client.? 192.168.123.102:0/863311904' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-03-31T17:44:33.961 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-03-31T17:44:33.961 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-03-31T17:44:33.961 DEBUG:teuthology.orchestra.run.vm02:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-03-31T17:44:33.976 DEBUG:teuthology.orchestra.run.vm06:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-03-31T17:44:33.990 DEBUG:teuthology.orchestra.run.vm07:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-03-31T17:44:34.005 INFO:tasks.cephadm:Stopping all daemons... 2026-03-31T17:44:34.005 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2026-03-31T17:44:34.005 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a 2026-03-31T17:44:34.317 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:34 vm02 systemd[1]: Stopping Ceph mon.a for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:34.317 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:34 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-a[51700]: 2026-03-31T17:44:34.110+0000 7fd186d24640 -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-31T17:44:34.317 INFO:journalctl@ceph.mon.a.vm02.stdout:Mar 31 17:44:34 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-a[51700]: 2026-03-31T17:44:34.110+0000 7fd186d24640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2026-03-31T17:44:34.392 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.a.service' 2026-03-31T17:44:34.420 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:34.420 INFO:tasks.cephadm.mon.a:Stopped mon.a 2026-03-31T17:44:34.420 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2026-03-31T17:44:34.420 DEBUG:teuthology.orchestra.run.vm06:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.b 2026-03-31T17:44:34.704 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:34 vm06 systemd[1]: Stopping Ceph mon.b for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:34.705 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:34 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-b[57129]: 2026-03-31T17:44:34.520+0000 7f0a26fb9640 -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-31T17:44:34.705 INFO:journalctl@ceph.mon.b.vm06.stdout:Mar 31 17:44:34 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mon-b[57129]: 2026-03-31T17:44:34.520+0000 7f0a26fb9640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2026-03-31T17:44:34.796 DEBUG:teuthology.orchestra.run.vm06:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.b.service' 2026-03-31T17:44:34.835 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:34.835 INFO:tasks.cephadm.mon.c:Stopped mon.b 2026-03-31T17:44:34.835 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2026-03-31T17:44:34.835 DEBUG:teuthology.orchestra.run.vm07:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.c 2026-03-31T17:44:34.867 DEBUG:teuthology.orchestra.run.vm07:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mon.c.service' 2026-03-31T17:44:34.937 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:34.937 INFO:tasks.cephadm.mon.c:Stopped mon.c 2026-03-31T17:44:34.937 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2026-03-31T17:44:34.937 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a 2026-03-31T17:44:35.148 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.a.service' 2026-03-31T17:44:35.177 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:35.177 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2026-03-31T17:44:35.177 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2026-03-31T17:44:35.177 DEBUG:teuthology.orchestra.run.vm06:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.b 2026-03-31T17:44:35.313 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:44:35 vm06 systemd[1]: Stopping Ceph mgr.b for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:35.313 INFO:journalctl@ceph.mgr.b.vm06.stdout:Mar 31 17:44:35 vm06 podman[77481]: 2026-03-31 17:44:35.305821695 +0000 UTC m=+0.043402077 container died c9174c82f3caf8f9d41e7221352d235f8bb6651056d4a80cf3f20ab5d14aea69 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-mgr-b, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=tentacle-release, org.label-schema.license=GPLv2, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, io.buildah.version=1.43.0, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260316, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.vendor=CentOS) 2026-03-31T17:44:35.386 DEBUG:teuthology.orchestra.run.vm06:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@mgr.b.service' 2026-03-31T17:44:35.417 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:35.417 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2026-03-31T17:44:35.418 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2026-03-31T17:44:35.418 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.0 2026-03-31T17:44:35.726 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:35 vm02 systemd[1]: Stopping Ceph osd.0 for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:35.726 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:35 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0[62679]: 2026-03-31T17:44:35.509+0000 7fa0e0a11640 -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 --osd-objectstore=bluestore (PID: 1) UID: 0 2026-03-31T17:44:35.726 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:35 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0[62679]: 2026-03-31T17:44:35.509+0000 7fa0e0a11640 -1 osd.0 50 *** Got signal Terminated *** 2026-03-31T17:44:35.726 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:35 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0[62679]: 2026-03-31T17:44:35.509+0000 7fa0e0a11640 -1 osd.0 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80842]: 2026-03-31 17:44:40.53033495 +0000 UTC m=+5.031879603 container died 274d42ef005851d9a8831611378ca3d1d8f996ec648b3213dce6283d3dc61958 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.43.0, org.label-schema.schema-version=1.0, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80842]: 2026-03-31 17:44:40.552084897 +0000 UTC m=+5.053629549 container remove 274d42ef005851d9a8831611378ca3d1d8f996ec648b3213dce6283d3dc61958 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, CEPH_REF=tentacle-release, org.label-schema.build-date=20260316, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, io.buildah.version=1.43.0, org.label-schema.license=GPLv2, ceph=True) 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 bash[80842]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80920]: 2026-03-31 17:44:40.686565021 +0000 UTC m=+0.014747735 container create 86ff9d7a5f0cae481e0e44721d803a12e6bc5d44009e9bbc37f5a14871df61d9 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0-deactivate, org.label-schema.vendor=CentOS, io.buildah.version=1.43.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260316, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=tentacle-release, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, 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, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2) 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80920]: 2026-03-31 17:44:40.719859325 +0000 UTC m=+0.048042049 container init 86ff9d7a5f0cae481e0e44721d803a12e6bc5d44009e9bbc37f5a14871df61d9 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, io.buildah.version=1.43.0, org.label-schema.build-date=20260316, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.license=GPLv2, CEPH_REF=tentacle-release, 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/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0) 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80920]: 2026-03-31 17:44:40.722233931 +0000 UTC m=+0.050416645 container start 86ff9d7a5f0cae481e0e44721d803a12e6bc5d44009e9bbc37f5a14871df61d9 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.43.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=tentacle-release, ceph=True, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.build-date=20260316, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, OSD_FLAVOR=default) 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80920]: 2026-03-31 17:44:40.723161218 +0000 UTC m=+0.051343932 container attach 86ff9d7a5f0cae481e0e44721d803a12e6bc5d44009e9bbc37f5a14871df61d9 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-0-deactivate, 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/, ceph=True, io.buildah.version=1.43.0, org.label-schema.build-date=20260316, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, CEPH_REF=tentacle-release, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2) 2026-03-31T17:44:40.843 INFO:journalctl@ceph.osd.0.vm02.stdout:Mar 31 17:44:40 vm02 podman[80920]: 2026-03-31 17:44:40.680355795 +0000 UTC m=+0.008538509 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:44:40.889 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.0.service' 2026-03-31T17:44:40.917 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:40.917 INFO:tasks.cephadm.osd.0:Stopped osd.0 2026-03-31T17:44:40.917 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2026-03-31T17:44:40.917 DEBUG:teuthology.orchestra.run.vm02:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.1 2026-03-31T17:44:41.226 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:40 vm02 systemd[1]: Stopping Ceph osd.1 for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:41.226 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:41 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1[69580]: 2026-03-31T17:44:41.038+0000 7f98dc893640 -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 --osd-objectstore=bluestore (PID: 1) UID: 0 2026-03-31T17:44:41.226 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:41 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1[69580]: 2026-03-31T17:44:41.038+0000 7f98dc893640 -1 osd.1 50 *** Got signal Terminated *** 2026-03-31T17:44:41.226 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:41 vm02 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1[69580]: 2026-03-31T17:44:41.038+0000 7f98dc893640 -1 osd.1 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81025]: 2026-03-31 17:44:46.069653222 +0000 UTC m=+5.040594452 container died 86f6174e817c6a276c4be048c767826ed3210a8543c4fbf251cba5e6e81b3446 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, org.label-schema.build-date=20260316, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=tentacle-release, io.buildah.version=1.43.0) 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81025]: 2026-03-31 17:44:46.084143315 +0000 UTC m=+5.055084545 container remove 86f6174e817c6a276c4be048c767826ed3210a8543c4fbf251cba5e6e81b3446 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1, org.label-schema.build-date=20260316, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, 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.43.0, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2) 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 bash[81025]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81103]: 2026-03-31 17:44:46.235454024 +0000 UTC m=+0.013850505 container create bcc7be38b4ad2ff83a9cb18b2ee2d29a6a1fc51e51d6137b35c3b2ee89042c34 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1-deactivate, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.build-date=20260316, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, CEPH_REF=tentacle-release, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.43.0, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81103]: 2026-03-31 17:44:46.27474131 +0000 UTC m=+0.053137791 container init bcc7be38b4ad2ff83a9cb18b2ee2d29a6a1fc51e51d6137b35c3b2ee89042c34 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1-deactivate, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_REF=tentacle-release, org.label-schema.build-date=20260316, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, io.buildah.version=1.43.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.label-schema.name=CentOS Stream 9 Base Image) 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81103]: 2026-03-31 17:44:46.278123734 +0000 UTC m=+0.056520215 container start bcc7be38b4ad2ff83a9cb18b2ee2d29a6a1fc51e51d6137b35c3b2ee89042c34 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260316, io.buildah.version=1.43.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, CEPH_REF=tentacle-release, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81103]: 2026-03-31 17:44:46.282373741 +0000 UTC m=+0.060770222 container attach bcc7be38b4ad2ff83a9cb18b2ee2d29a6a1fc51e51d6137b35c3b2ee89042c34 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-1-deactivate, ceph=True, io.buildah.version=1.43.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.license=GPLv2, OSD_FLAVOR=default, 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, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260316, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, CEPH_REF=tentacle-release) 2026-03-31T17:44:46.331 INFO:journalctl@ceph.osd.1.vm02.stdout:Mar 31 17:44:46 vm02 podman[81103]: 2026-03-31 17:44:46.230139804 +0000 UTC m=+0.008536285 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:44:46.429 DEBUG:teuthology.orchestra.run.vm02:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.1.service' 2026-03-31T17:44:46.459 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:46.459 INFO:tasks.cephadm.osd.1:Stopped osd.1 2026-03-31T17:44:46.459 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2026-03-31T17:44:46.459 DEBUG:teuthology.orchestra.run.vm06:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.2 2026-03-31T17:44:46.958 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:46 vm06 systemd[1]: Stopping Ceph osd.2 for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:46.958 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:46 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2[62318]: 2026-03-31T17:44:46.554+0000 7fb4b3973640 -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 --osd-objectstore=bluestore (PID: 1) UID: 0 2026-03-31T17:44:46.958 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:46 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2[62318]: 2026-03-31T17:44:46.554+0000 7fb4b3973640 -1 osd.2 50 *** Got signal Terminated *** 2026-03-31T17:44:46.958 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:46 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2[62318]: 2026-03-31T17:44:46.554+0000 7fb4b3973640 -1 osd.2 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77596]: 2026-03-31 17:44:51.595523273 +0000 UTC m=+5.052925074 container died 0f9d2a987fbb3640426806b9b6a96ccff8869545b46027427d284cc6891b1cfa (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, CEPH_REF=tentacle-release, ceph=True, org.label-schema.build-date=20260316, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.43.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77596]: 2026-03-31 17:44:51.606608236 +0000 UTC m=+5.064010017 container remove 0f9d2a987fbb3640426806b9b6a96ccff8869545b46027427d284cc6891b1cfa (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2, org.label-schema.license=GPLv2, CEPH_REF=tentacle-release, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.43.0, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260316) 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 bash[77596]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77674]: 2026-03-31 17:44:51.725796045 +0000 UTC m=+0.014406733 container create ff196907b17be308f077c12424997932572e19d5a95e49332c1524317299fd94 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2-deactivate, CEPH_REF=tentacle-release, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260316, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , ceph=True, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77674]: 2026-03-31 17:44:51.761054815 +0000 UTC m=+0.049665503 container init ff196907b17be308f077c12424997932572e19d5a95e49332c1524317299fd94 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2-deactivate, org.label-schema.schema-version=1.0, io.buildah.version=1.43.0, CEPH_REF=tentacle-release, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.build-date=20260316, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, 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/, org.label-schema.license=GPLv2, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image) 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77674]: 2026-03-31 17:44:51.763687564 +0000 UTC m=+0.052298252 container start ff196907b17be308f077c12424997932572e19d5a95e49332c1524317299fd94 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2-deactivate, CEPH_REF=tentacle-release, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.43.0, org.label-schema.schema-version=1.0, ceph=True, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.build-date=20260316, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77674]: 2026-03-31 17:44:51.765537467 +0000 UTC m=+0.054148144 container attach ff196907b17be308f077c12424997932572e19d5a95e49332c1524317299fd94 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-2-deactivate, org.label-schema.build-date=20260316, org.label-schema.license=GPLv2, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, io.buildah.version=1.43.0, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=tentacle-release, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-03-31T17:44:51.892 INFO:journalctl@ceph.osd.2.vm06.stdout:Mar 31 17:44:51 vm06 podman[77674]: 2026-03-31 17:44:51.719895237 +0000 UTC m=+0.008505925 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:44:51.918 DEBUG:teuthology.orchestra.run.vm06:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.2.service' 2026-03-31T17:44:51.950 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:51.950 INFO:tasks.cephadm.osd.2:Stopped osd.2 2026-03-31T17:44:51.950 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2026-03-31T17:44:51.950 DEBUG:teuthology.orchestra.run.vm06:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.3 2026-03-31T17:44:52.208 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:52 vm06 systemd[1]: Stopping Ceph osd.3 for cc53a1fa-2d28-11f1-b83b-53da7b16591a... 2026-03-31T17:44:52.208 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:52 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3[68897]: 2026-03-31T17:44:52.084+0000 7fe2262f0640 -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 --osd-objectstore=bluestore (PID: 1) UID: 0 2026-03-31T17:44:52.208 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:52 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3[68897]: 2026-03-31T17:44:52.084+0000 7fe2262f0640 -1 osd.3 50 *** Got signal Terminated *** 2026-03-31T17:44:52.208 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:52 vm06 ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3[68897]: 2026-03-31T17:44:52.084+0000 7fe2262f0640 -1 osd.3 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-03-31T17:44:57.412 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77774]: 2026-03-31 17:44:57.120087712 +0000 UTC m=+5.046254907 container died 4521c76957d5892f5a3d86a2dd5e2ce52f2e7b817aa7e87b6adacfefb4860978 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3, io.buildah.version=1.43.0, org.label-schema.license=GPLv2, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260316, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default) 2026-03-31T17:44:57.412 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77774]: 2026-03-31 17:44:57.132411344 +0000 UTC m=+5.058578539 container remove 4521c76957d5892f5a3d86a2dd5e2ce52f2e7b817aa7e87b6adacfefb4860978 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.build-date=20260316, 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, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, OSD_FLAVOR=default, io.buildah.version=1.43.0, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.opencontainers.image.authors=Ceph Release Team ) 2026-03-31T17:44:57.412 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 bash[77774]: ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3 2026-03-31T17:44:57.412 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77853]: 2026-03-31 17:44:57.257660501 +0000 UTC m=+0.014059123 container create 3158e0066809e7d42628a8c17a22fae3241e8826a48cf54c2fc6c0a5aea1f778 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3-deactivate, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.43.0, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260316, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=tentacle-release, org.label-schema.schema-version=1.0) 2026-03-31T17:44:57.412 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77853]: 2026-03-31 17:44:57.29259312 +0000 UTC m=+0.048991752 container init 3158e0066809e7d42628a8c17a22fae3241e8826a48cf54c2fc6c0a5aea1f778 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3-deactivate, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260316, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=tentacle-release, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.43.0, org.label-schema.schema-version=1.0) 2026-03-31T17:44:57.413 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77853]: 2026-03-31 17:44:57.294864934 +0000 UTC m=+0.051263556 container start 3158e0066809e7d42628a8c17a22fae3241e8826a48cf54c2fc6c0a5aea1f778 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3-deactivate, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.43.0, ceph=True, 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/, org.label-schema.build-date=20260316, OSD_FLAVOR=default, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2) 2026-03-31T17:44:57.413 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77853]: 2026-03-31 17:44:57.295752766 +0000 UTC m=+0.052151388 container attach 3158e0066809e7d42628a8c17a22fae3241e8826a48cf54c2fc6c0a5aea1f778 (image=quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072, name=ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a-osd-3-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=tentacle-release, CEPH_SHA1=5bb3278730741031382ca9c3dc9d221a942e06a2, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260316, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.43.0, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default) 2026-03-31T17:44:57.413 INFO:journalctl@ceph.osd.3.vm06.stdout:Mar 31 17:44:57 vm06 podman[77853]: 2026-03-31 17:44:57.252008198 +0000 UTC m=+0.008406820 image pull 1e58a3cbf9abfa7cd4c97d6122dfc897574d910096f68804997a3e0f45bc44f0 quay.ceph.io/ceph-ci/ceph@sha256:02c8d616f8a7af1a26efca44a51de7761356c5cb66c69c789e66f798c27c8072 2026-03-31T17:44:57.439 DEBUG:teuthology.orchestra.run.vm06:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.3.service' 2026-03-31T17:44:57.471 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:57.471 INFO:tasks.cephadm.osd.3:Stopped osd.3 2026-03-31T17:44:57.471 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2026-03-31T17:44:57.471 DEBUG:teuthology.orchestra.run.vm07:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.4 2026-03-31T17:44:57.505 DEBUG:teuthology.orchestra.run.vm07:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.4.service' 2026-03-31T17:44:57.573 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:57.573 INFO:tasks.cephadm.osd.4:Stopped osd.4 2026-03-31T17:44:57.573 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2026-03-31T17:44:57.573 DEBUG:teuthology.orchestra.run.vm07:> sudo systemctl stop ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.5 2026-03-31T17:44:57.643 DEBUG:teuthology.orchestra.run.vm07:> sudo pkill -f 'journalctl -f -n 0 -u ceph-cc53a1fa-2d28-11f1-b83b-53da7b16591a@osd.5.service' 2026-03-31T17:44:57.711 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-03-31T17:44:57.711 INFO:tasks.cephadm.osd.5:Stopped osd.5 2026-03-31T17:44:57.711 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --force --keep-logs 2026-03-31T17:44:57.836 INFO:teuthology.orchestra.run.vm02.stdout:Deleting cluster with fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:44:58.733 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --force --keep-logs 2026-03-31T17:44:58.851 INFO:teuthology.orchestra.run.vm06.stdout:Deleting cluster with fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:44:59.743 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --force --keep-logs 2026-03-31T17:44:59.861 INFO:teuthology.orchestra.run.vm07.stdout:Deleting cluster with fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:45:00.124 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:45:00.147 DEBUG:teuthology.orchestra.run.vm06:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:45:00.170 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-03-31T17:45:00.193 INFO:tasks.cephadm:Archiving crash dumps... 2026-03-31T17:45:00.193 DEBUG:teuthology.misc:Transferring archived files from vm02:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm02/crash 2026-03-31T17:45:00.193 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash -- . 2026-03-31T17:45:00.215 INFO:teuthology.orchestra.run.vm02.stderr:tar: /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash: Cannot open: No such file or directory 2026-03-31T17:45:00.215 INFO:teuthology.orchestra.run.vm02.stderr:tar: Error is not recoverable: exiting now 2026-03-31T17:45:00.216 DEBUG:teuthology.misc:Transferring archived files from vm06:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm06/crash 2026-03-31T17:45:00.216 DEBUG:teuthology.orchestra.run.vm06:> sudo tar c -f - -C /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash -- . 2026-03-31T17:45:00.239 INFO:teuthology.orchestra.run.vm06.stderr:tar: /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash: Cannot open: No such file or directory 2026-03-31T17:45:00.239 INFO:teuthology.orchestra.run.vm06.stderr:tar: Error is not recoverable: exiting now 2026-03-31T17:45:00.240 DEBUG:teuthology.misc:Transferring archived files from vm07:/var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm07/crash 2026-03-31T17:45:00.240 DEBUG:teuthology.orchestra.run.vm07:> sudo tar c -f - -C /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash -- . 2026-03-31T17:45:00.262 INFO:teuthology.orchestra.run.vm07.stderr:tar: /var/lib/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/crash: Cannot open: No such file or directory 2026-03-31T17:45:00.262 INFO:teuthology.orchestra.run.vm07.stderr:tar: Error is not recoverable: exiting now 2026-03-31T17:45:00.263 INFO:tasks.cephadm:Checking cluster log for badness... 2026-03-31T17:45:00.263 DEBUG:teuthology.orchestra.run.vm02:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/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-31T17:45:00.288 INFO:tasks.cephadm:Compressing logs... 2026-03-31T17:45:00.288 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-31T17:45:00.330 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:45:00.332 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:45:00.351 INFO:teuthology.orchestra.run.vm02.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-03-31T17:45:00.351 INFO:teuthology.orchestra.run.vm02.stderr:: No such file or directory 2026-03-31T17:45:00.352 INFO:teuthology.orchestra.run.vm06.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-03-31T17:45:00.352 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.a.log 2026-03-31T17:45:00.352 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log 2026-03-31T17:45:00.352 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mgr.a.log 2026-03-31T17:45:00.353 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.a.log: gzip -5 --verbose --/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log: /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log 2026-03-31T17:45:00.353 INFO:teuthology.orchestra.run.vm02.stderr: 84.4% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log.gz 2026-03-31T17:45:00.353 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mgr.a.log: 88.5% -- replaced with /var/log/ceph/cephadm.log.gz 2026-03-31T17:45:00.353 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-03-31T17:45:00.353 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log 2026-03-31T17:45:00.353 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log 2026-03-31T17:45:00.354 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log 2026-03-31T17:45:00.354 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log: 81.3% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log.gz 2026-03-31T17:45:00.354 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.b.log 2026-03-31T17:45:00.354 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm07.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm02.stderr: 90.5% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log.gz 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.0.log 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.b.log: 90.8% -- replaced with /var/log/ceph/cephadm.log.gzgzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm06.stderr: 2026-03-31T17:45:00.355 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm07.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.c.log 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.1.log 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log: /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log: 81.0% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log.gz 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mgr.b.log 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm06.stderr: 90.8% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log.gz 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm07.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log: /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.c.log: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2026-03-31T17:45:00.356 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log 2026-03-31T17:45:00.357 INFO:teuthology.orchestra.run.vm07.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log: 82.2% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.cephadm.log.gz 2026-03-31T17:45:00.357 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log: gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.2.log 2026-03-31T17:45:00.357 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mgr.b.log: 84.2% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log.gz 2026-03-31T17:45:00.357 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log 2026-03-31T17:45:00.357 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.3.log 2026-03-31T17:45:00.357 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.4.log 2026-03-31T17:45:00.358 INFO:teuthology.orchestra.run.vm07.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log: /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log: 82.8% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.log.gz 2026-03-31T17:45:00.358 INFO:teuthology.orchestra.run.vm07.stderr: 90.6% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph.audit.log.gz 2026-03-31T17:45:00.358 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.5.log 2026-03-31T17:45:00.359 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.2.log: 89.9% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mgr.b.log.gz 2026-03-31T17:45:00.361 INFO:teuthology.orchestra.run.vm06.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.3.log: 95.7% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log.gz 2026-03-31T17:45:00.363 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.0.log: 95.7% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log.gz 2026-03-31T17:45:00.365 INFO:teuthology.orchestra.run.vm07.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.4.log: /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.5.log: 95.7% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-volume.log.gz 2026-03-31T17:45:00.371 INFO:teuthology.orchestra.run.vm07.stderr: 93.0% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.5.log.gz 2026-03-31T17:45:00.373 INFO:teuthology.orchestra.run.vm07.stderr: 92.8% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.4.log.gz 2026-03-31T17:45:00.379 INFO:teuthology.orchestra.run.vm02.stderr:/var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.1.log: 92.9% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.1.log.gz 2026-03-31T17:45:00.380 INFO:teuthology.orchestra.run.vm07.stderr: 92.3% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.c.log.gz 2026-03-31T17:45:00.380 INFO:teuthology.orchestra.run.vm02.stderr: 92.7% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.0.log.gz 2026-03-31T17:45:00.381 INFO:teuthology.orchestra.run.vm07.stderr: 2026-03-31T17:45:00.381 INFO:teuthology.orchestra.run.vm07.stderr:real 0m0.037s 2026-03-31T17:45:00.381 INFO:teuthology.orchestra.run.vm07.stderr:user 0m0.071s 2026-03-31T17:45:00.381 INFO:teuthology.orchestra.run.vm07.stderr:sys 0m0.014s 2026-03-31T17:45:00.383 INFO:teuthology.orchestra.run.vm06.stderr: 93.0% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.2.log.gz 2026-03-31T17:45:00.386 INFO:teuthology.orchestra.run.vm06.stderr: 92.3% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.b.log.gz 2026-03-31T17:45:00.386 INFO:teuthology.orchestra.run.vm06.stderr: 93.1% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-osd.3.log.gz 2026-03-31T17:45:00.387 INFO:teuthology.orchestra.run.vm06.stderr: 2026-03-31T17:45:00.387 INFO:teuthology.orchestra.run.vm06.stderr:real 0m0.044s 2026-03-31T17:45:00.387 INFO:teuthology.orchestra.run.vm06.stderr:user 0m0.095s 2026-03-31T17:45:00.387 INFO:teuthology.orchestra.run.vm06.stderr:sys 0m0.023s 2026-03-31T17:45:00.391 INFO:teuthology.orchestra.run.vm02.stderr: 90.0% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mgr.a.log.gz 2026-03-31T17:45:00.465 INFO:teuthology.orchestra.run.vm02.stderr: 91.6% -- replaced with /var/log/ceph/cc53a1fa-2d28-11f1-b83b-53da7b16591a/ceph-mon.a.log.gz 2026-03-31T17:45:00.467 INFO:teuthology.orchestra.run.vm02.stderr: 2026-03-31T17:45:00.467 INFO:teuthology.orchestra.run.vm02.stderr:real 0m0.124s 2026-03-31T17:45:00.467 INFO:teuthology.orchestra.run.vm02.stderr:user 0m0.197s 2026-03-31T17:45:00.467 INFO:teuthology.orchestra.run.vm02.stderr:sys 0m0.027s 2026-03-31T17:45:00.467 INFO:tasks.cephadm:Archiving logs... 2026-03-31T17:45:00.467 DEBUG:teuthology.misc:Transferring archived files from vm02:/var/log/ceph to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm02/log 2026-03-31T17:45:00.467 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /var/log/ceph -- . 2026-03-31T17:45:00.539 DEBUG:teuthology.misc:Transferring archived files from vm06:/var/log/ceph to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm06/log 2026-03-31T17:45:00.539 DEBUG:teuthology.orchestra.run.vm06:> sudo tar c -f - -C /var/log/ceph -- . 2026-03-31T17:45:00.567 DEBUG:teuthology.misc:Transferring archived files from vm07:/var/log/ceph to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm07/log 2026-03-31T17:45:00.567 DEBUG:teuthology.orchestra.run.vm07:> sudo tar c -f - -C /var/log/ceph -- . 2026-03-31T17:45:00.594 INFO:tasks.cephadm:Removing cluster... 2026-03-31T17:45:00.594 DEBUG:teuthology.orchestra.run.vm02:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --force 2026-03-31T17:45:00.713 INFO:teuthology.orchestra.run.vm02.stdout:Deleting cluster with fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:45:00.859 DEBUG:teuthology.orchestra.run.vm06:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --force 2026-03-31T17:45:00.977 INFO:teuthology.orchestra.run.vm06.stdout:Deleting cluster with fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:45:01.130 DEBUG:teuthology.orchestra.run.vm07:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid cc53a1fa-2d28-11f1-b83b-53da7b16591a --force 2026-03-31T17:45:01.259 INFO:teuthology.orchestra.run.vm07.stdout:Deleting cluster with fsid: cc53a1fa-2d28-11f1-b83b-53da7b16591a 2026-03-31T17:45:01.413 INFO:tasks.cephadm:Removing cephadm ... 2026-03-31T17:45:01.413 DEBUG:teuthology.orchestra.run.vm02:> rm -rf /home/ubuntu/cephtest/cephadm 2026-03-31T17:45:01.427 DEBUG:teuthology.orchestra.run.vm06:> rm -rf /home/ubuntu/cephtest/cephadm 2026-03-31T17:45:01.440 DEBUG:teuthology.orchestra.run.vm07:> rm -rf /home/ubuntu/cephtest/cephadm 2026-03-31T17:45:01.455 INFO:tasks.cephadm:Teardown complete 2026-03-31T17:45:01.455 DEBUG:teuthology.run_tasks:Unwinding manager install 2026-03-31T17:45:01.457 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-31T17:45:01.457 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-31T17:45:01.468 DEBUG:teuthology.orchestra.run.vm06:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-03-31T17:45:01.483 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-03-31T17:45:01.526 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-31T17:45:01.526 DEBUG:teuthology.orchestra.run.vm02:> 2026-03-31T17:45:01.526 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-31T17:45:01.526 DEBUG:teuthology.orchestra.run.vm02:> sudo yum -y remove $d || true 2026-03-31T17:45:01.526 DEBUG:teuthology.orchestra.run.vm02:> done 2026-03-31T17:45:01.531 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-31T17:45:01.531 DEBUG:teuthology.orchestra.run.vm06:> 2026-03-31T17:45:01.531 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:45:01.531 DEBUG:teuthology.orchestra.run.vm06:> sudo yum -y remove $d || true 2026-03-31T17:45:01.531 DEBUG:teuthology.orchestra.run.vm06:> done 2026-03-31T17:45:01.536 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-31T17:45:01.536 DEBUG:teuthology.orchestra.run.vm07:> 2026-03-31T17:45:01.536 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:45:01.536 DEBUG:teuthology.orchestra.run.vm07:> sudo yum -y remove $d || true 2026-03-31T17:45:01.536 DEBUG:teuthology.orchestra.run.vm07:> done 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 103 M 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout: mailcap noarch 2.1.49-5.el9 @baseos 78 k 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Remove 2 Packages 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 103 M 2026-03-31T17:45:01.697 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:01.699 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:01.700 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:01.711 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:01.711 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:01.711 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:01.711 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:01.711 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:01.711 INFO:teuthology.orchestra.run.vm06.stdout: ceph-radosgw x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 103 M 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout: mailcap noarch 2.1.49-5.el9 @baseos 78 k 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout:Remove 2 Packages 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 103 M 2026-03-31T17:45:01.712 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:01.714 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:01.714 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:01.718 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:01.718 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:01.731 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:01.731 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout: ceph-radosgw x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 103 M 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout: mailcap noarch 2.1.49-5.el9 @baseos 78 k 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:01.732 INFO:teuthology.orchestra.run.vm07.stdout:Remove 2 Packages 2026-03-31T17:45:01.733 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:01.733 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 103 M 2026-03-31T17:45:01.733 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:01.735 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:01.735 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:01.752 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:01.753 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:01.753 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:01.764 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:01.771 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.771 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:01.771 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-31T17:45:01.771 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target". 2026-03-31T17:45:01.771 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-radosgw.target". 2026-03-31T17:45:01.771 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:01.778 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.784 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.784 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:01.784 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-31T17:45:01.784 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target". 2026-03-31T17:45:01.784 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-radosgw.target". 2026-03-31T17:45:01.784 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:01.786 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:01.786 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.791 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.799 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.800 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.807 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.808 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:01.808 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-03-31T17:45:01.808 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-radosgw.target". 2026-03-31T17:45:01.808 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-radosgw.target". 2026-03-31T17:45:01.808 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:01.813 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.815 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.824 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.838 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.867 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.867 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.877 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.877 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.908 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.908 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:01.908 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:01.908 INFO:teuthology.orchestra.run.vm02.stdout: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 mailcap-2.1.49-5.el9.noarch 2026-03-31T17:45:01.908 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:01.908 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:01.924 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.924 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:01.924 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:01.924 INFO:teuthology.orchestra.run.vm06.stdout: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 mailcap-2.1.49-5.el9.noarch 2026-03-31T17:45:01.924 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:01.924 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:01.929 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.929 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:01.970 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 2/2 2026-03-31T17:45:01.970 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:01.970 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:01.970 INFO:teuthology.orchestra.run.vm07.stdout: ceph-radosgw-2:20.2.0-721.g5bb32787.el9.x86_64 mailcap-2.1.49-5.el9.noarch 2026-03-31T17:45:01.970 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:01.970 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout: ceph-test x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 362 M 2026-03-31T17:45:02.117 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout: socat x86_64 1.7.4.1-8.el9 @appstream 1.1 M 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout: xmlstarlet x86_64 1.6.1-20.el9 @appstream 195 k 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout:Remove 3 Packages 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 363 M 2026-03-31T17:45:02.118 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:02.120 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:02.120 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:02.125 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 362 M 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout: socat x86_64 1.7.4.1-8.el9 @appstream 1.1 M 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet x86_64 1.6.1-20.el9 @appstream 195 k 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:Remove 3 Packages 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 363 M 2026-03-31T17:45:02.126 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:02.128 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:02.128 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:02.144 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:02.144 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:02.151 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:02.151 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:02.188 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout: ceph-test x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 362 M 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout: socat x86_64 1.7.4.1-8.el9 @appstream 1.1 M 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout: xmlstarlet x86_64 1.6.1-20.el9 @appstream 195 k 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:Remove 3 Packages 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 363 M 2026-03-31T17:45:02.189 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:02.191 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:02.191 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:02.213 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:02.214 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:02.215 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:02.220 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 1/3 2026-03-31T17:45:02.221 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:02.223 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : socat-1.7.4.1-8.el9.x86_64 2/3 2026-03-31T17:45:02.227 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 1/3 2026-03-31T17:45:02.230 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : socat-1.7.4.1-8.el9.x86_64 2/3 2026-03-31T17:45:02.238 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.243 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.286 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:02.292 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 1/3 2026-03-31T17:45:02.294 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : socat-1.7.4.1-8.el9.x86_64 2/3 2026-03-31T17:45:02.300 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.300 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 1/3 2026-03-31T17:45:02.300 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 2/3 2026-03-31T17:45:02.301 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.301 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 1/3 2026-03-31T17:45:02.301 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 2/3 2026-03-31T17:45:02.309 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout: ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 socat-1.7.4.1-8.el9.x86_64 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.346 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout: ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 socat-1.7.4.1-8.el9.x86_64 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.348 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:02.376 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.376 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 1/3 2026-03-31T17:45:02.376 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 2/3 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 3/3 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout: ceph-test-2:20.2.0-721.g5bb32787.el9.x86_64 socat-1.7.4.1-8.el9.x86_64 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.420 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:02.543 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:02.543 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:02.543 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:02.543 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:02.543 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: ceph x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 0 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mds x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 6.8 M 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mon x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 19 M 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: lua x86_64 5.4.4-4.el9 @appstream 593 k 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: lua-devel x86_64 5.4.4-4.el9 @crb 49 k 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: luarocks noarch 3.9.2-5.el9 @epel 692 k 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: unzip x86_64 6.0-59.el9 @baseos 389 k 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: zip x86_64 3.0-35.el9 @baseos 724 k 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout:Remove 8 Packages 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 28 M 2026-03-31T17:45:02.544 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:02.546 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:02.546 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:02.551 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:02.552 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:02.552 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:02.552 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:02.552 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:02.552 INFO:teuthology.orchestra.run.vm02.stdout: ceph x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 0 2026-03-31T17:45:02.552 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 6.8 M 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 19 M 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: lua x86_64 5.4.4-4.el9 @appstream 593 k 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel x86_64 5.4.4-4.el9 @crb 49 k 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: luarocks noarch 3.9.2-5.el9 @epel 692 k 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: unzip x86_64 6.0-59.el9 @baseos 389 k 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: zip x86_64 3.0-35.el9 @baseos 724 k 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout:Remove 8 Packages 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 28 M 2026-03-31T17:45:02.553 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:02.555 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:02.555 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:02.569 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:02.570 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:02.579 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:02.579 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:02.609 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:02.609 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: ceph x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 0 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mds x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 6.8 M 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mon x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 19 M 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: lua x86_64 5.4.4-4.el9 @appstream 593 k 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: lua-devel x86_64 5.4.4-4.el9 @crb 49 k 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: luarocks noarch 3.9.2-5.el9 @epel 692 k 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: unzip x86_64 6.0-59.el9 @baseos 389 k 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: zip x86_64 3.0-35.el9 @baseos 724 k 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:Remove 8 Packages 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 28 M 2026-03-31T17:45:02.610 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:02.613 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:02.613 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:02.613 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/8 2026-03-31T17:45:02.617 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : luarocks-3.9.2-5.el9.noarch 2/8 2026-03-31T17:45:02.618 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : lua-devel-5.4.4-4.el9.x86_64 3/8 2026-03-31T17:45:02.619 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:02.621 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : zip-3.0-35.el9.x86_64 4/8 2026-03-31T17:45:02.623 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : unzip-6.0-59.el9.x86_64 5/8 2026-03-31T17:45:02.624 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/8 2026-03-31T17:45:02.625 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : lua-5.4.4-4.el9.x86_64 6/8 2026-03-31T17:45:02.627 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : luarocks-3.9.2-5.el9.noarch 2/8 2026-03-31T17:45:02.629 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : lua-devel-5.4.4-4.el9.x86_64 3/8 2026-03-31T17:45:02.631 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : zip-3.0-35.el9.x86_64 4/8 2026-03-31T17:45:02.633 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : unzip-6.0-59.el9.x86_64 5/8 2026-03-31T17:45:02.635 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : lua-5.4.4-4.el9.x86_64 6/8 2026-03-31T17:45:02.635 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:02.635 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:02.642 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.642 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:02.642 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-31T17:45:02.642 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mds.target". 2026-03-31T17:45:02.642 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mds.target". 2026-03-31T17:45:02.642 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.643 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.650 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.653 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.653 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:02.653 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-31T17:45:02.653 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mds.target". 2026-03-31T17:45:02.653 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mds.target". 2026-03-31T17:45:02.653 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.654 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.662 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.667 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.667 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:02.667 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-31T17:45:02.667 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mon.target". 2026-03-31T17:45:02.667 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mon.target". 2026-03-31T17:45:02.667 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.669 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.675 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:02.679 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/8 2026-03-31T17:45:02.681 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.681 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:02.681 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-31T17:45:02.681 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mon.target". 2026-03-31T17:45:02.681 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mon.target". 2026-03-31T17:45:02.682 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.682 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : luarocks-3.9.2-5.el9.noarch 2/8 2026-03-31T17:45:02.683 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.684 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : lua-devel-5.4.4-4.el9.x86_64 3/8 2026-03-31T17:45:02.686 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : zip-3.0-35.el9.x86_64 4/8 2026-03-31T17:45:02.688 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : unzip-6.0-59.el9.x86_64 5/8 2026-03-31T17:45:02.690 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : lua-5.4.4-4.el9.x86_64 6/8 2026-03-31T17:45:02.708 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.708 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:02.708 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-03-31T17:45:02.708 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mds.target". 2026-03-31T17:45:02.708 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mds.target". 2026-03-31T17:45:02.708 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.709 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.716 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 7/8 2026-03-31T17:45:02.735 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.735 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:02.735 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-03-31T17:45:02.735 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mon.target". 2026-03-31T17:45:02.735 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mon.target". 2026-03-31T17:45:02.735 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.737 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 3/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : lua-5.4.4-4.el9.x86_64 4/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 5/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 6/8 2026-03-31T17:45:02.753 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : unzip-6.0-59.el9.x86_64 7/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 3/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-5.4.4-4.el9.x86_64 4/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 5/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 6/8 2026-03-31T17:45:02.770 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : unzip-6.0-59.el9.x86_64 7/8 2026-03-31T17:45:02.807 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : zip-3.0-35.el9.x86_64 8/8 2026-03-31T17:45:02.807 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.807 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:02.807 INFO:teuthology.orchestra.run.vm06.stdout: ceph-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.807 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.807 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout: lua-5.4.4-4.el9.x86_64 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout: unzip-6.0-59.el9.x86_64 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout: zip-3.0-35.el9.x86_64 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:02.808 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : zip-3.0-35.el9.x86_64 8/8 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: ceph-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: lua-5.4.4-4.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: unzip-6.0-59.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: zip-3.0-35.el9.x86_64 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:02.820 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:02.832 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 8/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-2:20.2.0-721.g5bb32787.el9.x86_64 1/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 3/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : lua-5.4.4-4.el9.x86_64 4/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 5/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 6/8 2026-03-31T17:45:02.833 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : unzip-6.0-59.el9.x86_64 7/8 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : zip-3.0-35.el9.x86_64 8/8 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: ceph-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mds-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: lua-5.4.4-4.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: luarocks-3.9.2-5.el9.noarch 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: unzip-6.0-59.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: zip-3.0-35.el9.x86_64 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:02.883 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:02.999 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:03.005 INFO:teuthology.orchestra.run.vm06.stdout:=========================================================================================== 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout:=========================================================================================== 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-base x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 24 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout:Removing dependent packages: 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 447 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.9 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-cephadm noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 940 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-dashboard noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 140 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 66 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-rook noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 567 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-osd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 54 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-volume noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.4 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: rbd-mirror x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 11 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: abseil-cpp x86_64 20211102.0-4.el9 @epel 1.9 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 98 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-grafana-dashboards noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 996 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 60 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-modules-core noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.6 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-prometheus-alerts noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 59 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ceph-selinux x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 138 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: cryptsetup x86_64 2.8.1-3.el9 @baseos 770 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas x86_64 3.0.4-9.el9 @appstream 68 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 @appstream 11 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 @appstream 39 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: gperftools-libs x86_64 2.9.1-3.el9 @epel 1.4 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: grpc-data noarch 1.46.7-10.el9 @epel 13 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: ledmon-libs x86_64 1.1.0-3.el9 @baseos 80 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libcephsqlite x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 409 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libconfig x86_64 1.7.2-9.el9 @baseos 220 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libgfortran x86_64 11.5.0-14.el9 @baseos 2.8 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: liboath x86_64 2.6.12-1.el9 @epel 94 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libquadmath x86_64 11.5.0-14.el9 @baseos 330 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libradosstriper1 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 792 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libstoragemgmt x86_64 1.10.1-1.el9 @appstream 685 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libunwind x86_64 1.6.2-1.el9 @epel 170 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: libxslt x86_64 1.1.34-12.el9 @appstream 743 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: openblas x86_64 0.3.29-1.el9 @appstream 112 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: openblas-openmp x86_64 0.3.29-1.el9 @appstream 46 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: pciutils x86_64 3.7.0-7.el9 @baseos 216 k 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: protobuf x86_64 3.14.0-17.el9 @appstream 3.5 M 2026-03-31T17:45:03.006 INFO:teuthology.orchestra.run.vm06.stdout: protobuf-compiler x86_64 3.14.0-17.el9 @crb 2.9 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-asyncssh noarch 2.13.2-5.el9 @epel 3.9 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-autocommand noarch 2.2.2-8.el9 @epel 82 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-babel noarch 2.9.1-2.el9 @appstream 27 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 @epel 254 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-bcrypt x86_64 3.2.2-1.el9 @epel 87 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-cachetools noarch 4.2.4-1.el9 @epel 93 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 855 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-certifi noarch 2023.05.07-4.el9 @epel 6.3 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-cffi x86_64 1.14.5-5.el9 @baseos 1.0 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-chardet noarch 4.0.0-5.el9 @anaconda 1.4 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-cheroot noarch 10.0.1-5.el9 @epel 682 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-cherrypy noarch 18.10.0-5.el9 @epel 1.0 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-cryptography x86_64 36.0.1-5.el9 @baseos 4.5 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-devel x86_64 3.9.25-3.el9 @appstream 765 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-google-auth noarch 1:2.45.0-1.el9 @epel 1.4 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio x86_64 1.46.7-10.el9 @epel 6.7 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 @epel 418 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-idna noarch 2.10-7.el9.1 @anaconda 513 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-influxdb noarch 5.3.1-1.el9 @epel 747 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-isodate noarch 0.6.1-3.el9 @epel 203 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco noarch 8.2.1-3.el9 @epel 3.7 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 @epel 24 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 @epel 55 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-context noarch 6.0.1-3.el9 @epel 31 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 @epel 33 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-text noarch 4.0.0-2.el9 @epel 51 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jinja2 noarch 2.11.3-8.el9 @appstream 1.1 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jsonpatch noarch 1.21-16.el9 @koji-override-0 55 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-jsonpointer noarch 2.0-4.el9 @koji-override-0 34 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 @epel 21 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 @appstream 832 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-lxml x86_64 4.6.5-3.el9 @appstream 4.2 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-markupsafe x86_64 1.1.1-12.el9 @appstream 60 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-more-itertools noarch 8.12.0-2.el9 @epel 378 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-msgpack x86_64 1.0.3-2.el9 @epel 264 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-natsort noarch 7.1.1-5.el9 @epel 215 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy x86_64 1:1.23.5-2.el9 @appstream 30 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 @appstream 1.7 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-oauthlib noarch 3.1.1-5.el9 @koji-override-0 888 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-packaging noarch 20.9-5.el9 @appstream 248 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-ply noarch 3.11-14.el9 @baseos 430 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-portend noarch 3.1.0-2.el9 @epel 20 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-prettytable noarch 0.7.2-27.el9 @koji-override-0 166 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-protobuf noarch 3.14.0-17.el9 @appstream 1.4 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 @epel 389 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1 noarch 0.4.8-7.el9 @appstream 622 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 @appstream 1.0 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-pycparser noarch 2.20-6.el9 @baseos 745 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-pysocks noarch 1.7.1-12.el9 @anaconda 88 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-pytz noarch 2021.1-5.el9 @koji-override-0 176 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-repoze-lru noarch 0.7-16.el9 @epel 83 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests noarch 2.25.1-10.el9 @baseos 405 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 @appstream 119 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-routes noarch 2.5.1-5.el9 @epel 459 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-rsa noarch 4.9-2.el9 @epel 202 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-saml noarch 1.16.0-1.el9 @epel 730 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-scipy x86_64 1.9.3-2.el9 @appstream 76 M 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-tempora noarch 5.0.0-2.el9 @epel 96 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-toml noarch 0.10.2-6.el9 @appstream 99 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-typing-extensions noarch 4.15.0-1.el9 @epel 447 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-urllib3 noarch 1.26.5-7.el9 @baseos 746 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-websocket-client noarch 1.2.3-2.el9 @epel 319 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-xmlsec x86_64 1.3.13-1.el9 @epel 158 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: python3-zc-lockfile noarch 2.0-10.el9 @epel 35 k 2026-03-31T17:45:03.007 INFO:teuthology.orchestra.run.vm06.stdout: qatlib x86_64 25.08.0-2.el9 @appstream 639 k 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: qatlib-service x86_64 25.08.0-2.el9 @appstream 69 k 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: qatzip-libs x86_64 1.3.1-1.el9 @appstream 148 k 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: smartmontools x86_64 1:7.2-10.el9 @baseos 1.9 M 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1 x86_64 1.2.29-13.el9 @appstream 596 k 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 @appstream 281 k 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout:=========================================================================================== 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout:Remove 108 Packages 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 675 M 2026-03-31T17:45:03.008 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:03.020 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout:=========================================================================================== 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout:=========================================================================================== 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 24 M 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-31T17:45:03.025 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 447 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.9 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 940 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 140 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 66 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 567 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 54 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.4 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 11 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp x86_64 20211102.0-4.el9 @epel 1.9 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 98 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 996 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 60 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.6 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 59 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 138 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup x86_64 2.8.1-3.el9 @baseos 770 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas x86_64 3.0.4-9.el9 @appstream 68 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 @appstream 11 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 @appstream 39 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs x86_64 2.9.1-3.el9 @epel 1.4 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data noarch 1.46.7-10.el9 @epel 13 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs x86_64 1.1.0-3.el9 @baseos 80 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 409 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libconfig x86_64 1.7.2-9.el9 @baseos 220 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran x86_64 11.5.0-14.el9 @baseos 2.8 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: liboath x86_64 2.6.12-1.el9 @epel 94 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath x86_64 11.5.0-14.el9 @baseos 330 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 792 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt x86_64 1.10.1-1.el9 @appstream 685 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libunwind x86_64 1.6.2-1.el9 @epel 170 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: libxslt x86_64 1.1.34-12.el9 @appstream 743 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: openblas x86_64 0.3.29-1.el9 @appstream 112 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp x86_64 0.3.29-1.el9 @appstream 46 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: pciutils x86_64 3.7.0-7.el9 @baseos 216 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: protobuf x86_64 3.14.0-17.el9 @appstream 3.5 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler x86_64 3.14.0-17.el9 @crb 2.9 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh noarch 2.13.2-5.el9 @epel 3.9 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand noarch 2.2.2-8.el9 @epel 82 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel noarch 2.9.1-2.el9 @appstream 27 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 @epel 254 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt x86_64 3.2.2-1.el9 @epel 87 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools noarch 4.2.4-1.el9 @epel 93 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 855 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi noarch 2023.05.07-4.el9 @epel 6.3 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi x86_64 1.14.5-5.el9 @baseos 1.0 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-chardet noarch 4.0.0-5.el9 @anaconda 1.4 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot noarch 10.0.1-5.el9 @epel 682 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy noarch 18.10.0-5.el9 @epel 1.0 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography x86_64 36.0.1-5.el9 @baseos 4.5 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel x86_64 3.9.25-3.el9 @appstream 765 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth noarch 1:2.45.0-1.el9 @epel 1.4 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio x86_64 1.46.7-10.el9 @epel 6.7 M 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 @epel 418 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-idna noarch 2.10-7.el9.1 @anaconda 513 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-influxdb noarch 5.3.1-1.el9 @epel 747 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-isodate noarch 0.6.1-3.el9 @epel 203 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco noarch 8.2.1-3.el9 @epel 3.7 k 2026-03-31T17:45:03.026 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 @epel 24 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 @epel 55 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context noarch 6.0.1-3.el9 @epel 31 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 @epel 33 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text noarch 4.0.0-2.el9 @epel 51 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2 noarch 2.11.3-8.el9 @appstream 1.1 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpatch noarch 1.21-16.el9 @koji-override-0 55 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpointer noarch 2.0-4.el9 @koji-override-0 34 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 @epel 21 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 @appstream 832 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-lxml x86_64 4.6.5-3.el9 @appstream 4.2 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe x86_64 1.1.1-12.el9 @appstream 60 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools noarch 8.12.0-2.el9 @epel 378 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-msgpack x86_64 1.0.3-2.el9 @epel 264 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort noarch 7.1.1-5.el9 @epel 215 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy x86_64 1:1.23.5-2.el9 @appstream 30 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 @appstream 1.7 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-oauthlib noarch 3.1.1-5.el9 @koji-override-0 888 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging noarch 20.9-5.el9 @appstream 248 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply noarch 3.11-14.el9 @baseos 430 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend noarch 3.1.0-2.el9 @epel 20 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-prettytable noarch 0.7.2-27.el9 @koji-override-0 166 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf noarch 3.14.0-17.el9 @appstream 1.4 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 @epel 389 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1 noarch 0.4.8-7.el9 @appstream 622 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 @appstream 1.0 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser noarch 2.20-6.el9 @baseos 745 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-pysocks noarch 1.7.1-12.el9 @anaconda 88 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-pytz noarch 2021.1-5.el9 @koji-override-0 176 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru noarch 0.7-16.el9 @epel 83 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests noarch 2.25.1-10.el9 @baseos 405 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 @appstream 119 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes noarch 2.5.1-5.el9 @epel 459 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa noarch 4.9-2.el9 @epel 202 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-saml noarch 1.16.0-1.el9 @epel 730 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy x86_64 1.9.3-2.el9 @appstream 76 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora noarch 5.0.0-2.el9 @epel 96 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml noarch 0.10.2-6.el9 @appstream 99 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions noarch 4.15.0-1.el9 @epel 447 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3 noarch 1.26.5-7.el9 @baseos 746 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client noarch 1.2.3-2.el9 @epel 319 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmlsec x86_64 1.3.13-1.el9 @epel 158 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile noarch 2.0-10.el9 @epel 35 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: qatlib x86_64 25.08.0-2.el9 @appstream 639 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service x86_64 25.08.0-2.el9 @appstream 69 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs x86_64 1.3.1-1.el9 @appstream 148 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: smartmontools x86_64 1:7.2-10.el9 @baseos 1.9 M 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1 x86_64 1.2.29-13.el9 @appstream 596 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 @appstream 281 k 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout:=========================================================================================== 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout:Remove 108 Packages 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.027 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 675 M 2026-03-31T17:45:03.028 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:03.035 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:03.035 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:03.055 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:03.055 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:03.077 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout:=========================================================================================== 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout:=========================================================================================== 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-base x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 24 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout:Removing dependent packages: 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 447 k 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.9 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-cephadm noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 940 k 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-dashboard noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 140 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 66 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-rook noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 567 k 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-osd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 54 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: ceph-volume noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.4 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: rbd-mirror x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 11 M 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:03.082 INFO:teuthology.orchestra.run.vm07.stdout: abseil-cpp x86_64 20211102.0-4.el9 @epel 1.9 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 98 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ceph-grafana-dashboards noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 996 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-k8sevents noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 60 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-modules-core noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.6 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ceph-prometheus-alerts noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 59 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ceph-selinux x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 138 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: cryptsetup x86_64 2.8.1-3.el9 @baseos 770 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas x86_64 3.0.4-9.el9 @appstream 68 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 @appstream 11 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 @appstream 39 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: gperftools-libs x86_64 2.9.1-3.el9 @epel 1.4 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: grpc-data noarch 1.46.7-10.el9 @epel 13 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: ledmon-libs x86_64 1.1.0-3.el9 @baseos 80 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libcephsqlite x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 409 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libconfig x86_64 1.7.2-9.el9 @baseos 220 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libgfortran x86_64 11.5.0-14.el9 @baseos 2.8 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: liboath x86_64 2.6.12-1.el9 @epel 94 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libquadmath x86_64 11.5.0-14.el9 @baseos 330 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libradosstriper1 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 792 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libstoragemgmt x86_64 1.10.1-1.el9 @appstream 685 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libunwind x86_64 1.6.2-1.el9 @epel 170 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: libxslt x86_64 1.1.34-12.el9 @appstream 743 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: openblas x86_64 0.3.29-1.el9 @appstream 112 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: openblas-openmp x86_64 0.3.29-1.el9 @appstream 46 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: pciutils x86_64 3.7.0-7.el9 @baseos 216 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: protobuf x86_64 3.14.0-17.el9 @appstream 3.5 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: protobuf-compiler x86_64 3.14.0-17.el9 @crb 2.9 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-asyncssh noarch 2.13.2-5.el9 @epel 3.9 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-autocommand noarch 2.2.2-8.el9 @epel 82 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-babel noarch 2.9.1-2.el9 @appstream 27 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 @epel 254 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-bcrypt x86_64 3.2.2-1.el9 @epel 87 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-cachetools noarch 4.2.4-1.el9 @epel 93 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-common x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 855 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-certifi noarch 2023.05.07-4.el9 @epel 6.3 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-cffi x86_64 1.14.5-5.el9 @baseos 1.0 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-chardet noarch 4.0.0-5.el9 @anaconda 1.4 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-cheroot noarch 10.0.1-5.el9 @epel 682 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-cherrypy noarch 18.10.0-5.el9 @epel 1.0 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-cryptography x86_64 36.0.1-5.el9 @baseos 4.5 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-devel x86_64 3.9.25-3.el9 @appstream 765 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-google-auth noarch 1:2.45.0-1.el9 @epel 1.4 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio x86_64 1.46.7-10.el9 @epel 6.7 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 @epel 418 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-idna noarch 2.10-7.el9.1 @anaconda 513 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-influxdb noarch 5.3.1-1.el9 @epel 747 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-isodate noarch 0.6.1-3.el9 @epel 203 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco noarch 8.2.1-3.el9 @epel 3.7 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 @epel 24 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 @epel 55 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-context noarch 6.0.1-3.el9 @epel 31 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 @epel 33 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-text noarch 4.0.0-2.el9 @epel 51 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jinja2 noarch 2.11.3-8.el9 @appstream 1.1 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jsonpatch noarch 1.21-16.el9 @koji-override-0 55 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-jsonpointer noarch 2.0-4.el9 @koji-override-0 34 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 @epel 21 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 @appstream 832 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-lxml x86_64 4.6.5-3.el9 @appstream 4.2 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-markupsafe x86_64 1.1.1-12.el9 @appstream 60 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-more-itertools noarch 8.12.0-2.el9 @epel 378 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-msgpack x86_64 1.0.3-2.el9 @epel 264 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-natsort noarch 7.1.1-5.el9 @epel 215 k 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy x86_64 1:1.23.5-2.el9 @appstream 30 M 2026-03-31T17:45:03.083 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 @appstream 1.7 M 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-oauthlib noarch 3.1.1-5.el9 @koji-override-0 888 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-packaging noarch 20.9-5.el9 @appstream 248 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-ply noarch 3.11-14.el9 @baseos 430 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-portend noarch 3.1.0-2.el9 @epel 20 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-prettytable noarch 0.7.2-27.el9 @koji-override-0 166 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-protobuf noarch 3.14.0-17.el9 @appstream 1.4 M 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 @epel 389 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1 noarch 0.4.8-7.el9 @appstream 622 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1-modules noarch 0.4.8-7.el9 @appstream 1.0 M 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-pycparser noarch 2.20-6.el9 @baseos 745 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-pysocks noarch 1.7.1-12.el9 @anaconda 88 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-pytz noarch 2021.1-5.el9 @koji-override-0 176 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-repoze-lru noarch 0.7-16.el9 @epel 83 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests noarch 2.25.1-10.el9 @baseos 405 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 @appstream 119 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-routes noarch 2.5.1-5.el9 @epel 459 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-rsa noarch 4.9-2.el9 @epel 202 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-saml noarch 1.16.0-1.el9 @epel 730 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-scipy x86_64 1.9.3-2.el9 @appstream 76 M 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-tempora noarch 5.0.0-2.el9 @epel 96 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-toml noarch 0.10.2-6.el9 @appstream 99 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-typing-extensions noarch 4.15.0-1.el9 @epel 447 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-urllib3 noarch 1.26.5-7.el9 @baseos 746 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-websocket-client noarch 1.2.3-2.el9 @epel 319 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-xmlsec x86_64 1.3.13-1.el9 @epel 158 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: python3-zc-lockfile noarch 2.0-10.el9 @epel 35 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: qatlib x86_64 25.08.0-2.el9 @appstream 639 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: qatlib-service x86_64 25.08.0-2.el9 @appstream 69 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: qatzip-libs x86_64 1.3.1-1.el9 @appstream 148 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: smartmontools x86_64 1:7.2-10.el9 @baseos 1.9 M 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1 x86_64 1.2.29-13.el9 @appstream 596 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 @appstream 281 k 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout:=========================================================================================== 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout:Remove 108 Packages 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 675 M 2026-03-31T17:45:03.084 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:03.109 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:03.110 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:03.141 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:03.141 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:03.155 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:03.156 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:03.212 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:03.212 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:03.279 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:03.280 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 1/108 2026-03-31T17:45:03.286 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 1/108 2026-03-31T17:45:03.295 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:03.295 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 1/108 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 1/108 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mgr.target". 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mgr.target". 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.302 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.317 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mgr.target". 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mgr.target". 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.320 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.333 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.352 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:03.352 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 1/108 2026-03-31T17:45:03.360 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 1/108 2026-03-31T17:45:03.375 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 3/108 2026-03-31T17:45:03.375 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 4/108 2026-03-31T17:45:03.377 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.377 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.377 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-03-31T17:45:03.377 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-mgr.target". 2026-03-31T17:45:03.377 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-mgr.target". 2026-03-31T17:45:03.377 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.378 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.390 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 4/108 2026-03-31T17:45:03.391 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 3/108 2026-03-31T17:45:03.391 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:03.391 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 4/108 2026-03-31T17:45:03.395 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-influxdb-5.3.1-1.el9.noarch 5/108 2026-03-31T17:45:03.395 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 6/108 2026-03-31T17:45:03.406 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 6/108 2026-03-31T17:45:03.406 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 4/108 2026-03-31T17:45:03.411 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-influxdb-5.3.1-1.el9.noarch 5/108 2026-03-31T17:45:03.411 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 6/108 2026-03-31T17:45:03.412 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-cherrypy-18.10.0-5.el9.noarch 7/108 2026-03-31T17:45:03.415 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-cheroot-10.0.1-5.el9.noarch 8/108 2026-03-31T17:45:03.422 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 6/108 2026-03-31T17:45:03.423 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/108 2026-03-31T17:45:03.427 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-grpcio-1.46.7-10.el9.x86_64 10/108 2026-03-31T17:45:03.428 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cherrypy-18.10.0-5.el9.noarch 7/108 2026-03-31T17:45:03.432 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cheroot-10.0.1-5.el9.noarch 8/108 2026-03-31T17:45:03.440 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/108 2026-03-31T17:45:03.443 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-grpcio-1.46.7-10.el9.x86_64 10/108 2026-03-31T17:45:03.445 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.445 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.445 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-31T17:45:03.445 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-osd.target". 2026-03-31T17:45:03.445 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-osd.target". 2026-03-31T17:45:03.445 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.450 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 3/108 2026-03-31T17:45:03.450 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.450 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 4/108 2026-03-31T17:45:03.459 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.463 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.463 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.463 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-31T17:45:03.463 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-osd.target". 2026-03-31T17:45:03.463 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-osd.target". 2026-03-31T17:45:03.464 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.466 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 4/108 2026-03-31T17:45:03.469 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.471 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-influxdb-5.3.1-1.el9.noarch 5/108 2026-03-31T17:45:03.471 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 6/108 2026-03-31T17:45:03.473 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.473 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.473 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-31T17:45:03.473 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.479 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.481 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.483 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 6/108 2026-03-31T17:45:03.489 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-cherrypy-18.10.0-5.el9.noarch 7/108 2026-03-31T17:45:03.489 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.491 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jaraco-collections-3.0.0-8.el9.noarch 13/108 2026-03-31T17:45:03.492 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-cheroot-10.0.1-5.el9.noarch 8/108 2026-03-31T17:45:03.495 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.495 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.495 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-31T17:45:03.495 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.496 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jaraco-text-4.0.0-2.el9.noarch 14/108 2026-03-31T17:45:03.500 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jinja2-2.11.3-8.el9.noarch 15/108 2026-03-31T17:45:03.500 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-grpcio-tools-1.46.7-10.el9.x86_64 9/108 2026-03-31T17:45:03.503 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.504 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-grpcio-1.46.7-10.el9.x86_64 10/108 2026-03-31T17:45:03.513 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.515 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-collections-3.0.0-8.el9.noarch 13/108 2026-03-31T17:45:03.520 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-text-4.0.0-2.el9.noarch 14/108 2026-03-31T17:45:03.522 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.522 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.522 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-03-31T17:45:03.522 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-osd.target". 2026-03-31T17:45:03.522 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-osd.target". 2026-03-31T17:45:03.522 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.524 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jinja2-2.11.3-8.el9.noarch 15/108 2026-03-31T17:45:03.527 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.528 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-saml-1.16.0-1.el9.noarch 16/108 2026-03-31T17:45:03.534 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-babel-2.9.1-2.el9.noarch 17/108 2026-03-31T17:45:03.535 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 11/108 2026-03-31T17:45:03.537 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jaraco-classes-3.2.1-5.el9.noarch 18/108 2026-03-31T17:45:03.545 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-pyOpenSSL-21.0.0-1.el9.noarch 19/108 2026-03-31T17:45:03.549 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.549 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.549 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-03-31T17:45:03.550 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.555 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-saml-1.16.0-1.el9.noarch 16/108 2026-03-31T17:45:03.555 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-asyncssh-2.13.2-5.el9.noarch 20/108 2026-03-31T17:45:03.555 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 21/108 2026-03-31T17:45:03.557 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.560 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-babel-2.9.1-2.el9.noarch 17/108 2026-03-31T17:45:03.563 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-classes-3.2.1-5.el9.noarch 18/108 2026-03-31T17:45:03.563 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 21/108 2026-03-31T17:45:03.566 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:03.569 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jaraco-collections-3.0.0-8.el9.noarch 13/108 2026-03-31T17:45:03.572 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pyOpenSSL-21.0.0-1.el9.noarch 19/108 2026-03-31T17:45:03.573 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jaraco-text-4.0.0-2.el9.noarch 14/108 2026-03-31T17:45:03.577 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jinja2-2.11.3-8.el9.noarch 15/108 2026-03-31T17:45:03.583 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-asyncssh-2.13.2-5.el9.noarch 20/108 2026-03-31T17:45:03.583 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 21/108 2026-03-31T17:45:03.590 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 21/108 2026-03-31T17:45:03.607 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-saml-1.16.0-1.el9.noarch 16/108 2026-03-31T17:45:03.614 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-babel-2.9.1-2.el9.noarch 17/108 2026-03-31T17:45:03.616 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jaraco-classes-3.2.1-5.el9.noarch 18/108 2026-03-31T17:45:03.625 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-pyOpenSSL-21.0.0-1.el9.noarch 19/108 2026-03-31T17:45:03.635 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-asyncssh-2.13.2-5.el9.noarch 20/108 2026-03-31T17:45:03.635 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 21/108 2026-03-31T17:45:03.642 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 21/108 2026-03-31T17:45:03.654 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jsonpatch-1.21-16.el9.noarch 22/108 2026-03-31T17:45:03.667 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-scipy-1.9.3-2.el9.x86_64 23/108 2026-03-31T17:45:03.673 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-xmlsec-1.3.13-1.el9.x86_64 24/108 2026-03-31T17:45:03.676 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-lxml-4.6.5-3.el9.x86_64 25/108 2026-03-31T17:45:03.682 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jsonpatch-1.21-16.el9.noarch 22/108 2026-03-31T17:45:03.688 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.688 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service". 2026-03-31T17:45:03.688 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.689 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.697 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-scipy-1.9.3-2.el9.x86_64 23/108 2026-03-31T17:45:03.703 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-xmlsec-1.3.13-1.el9.x86_64 24/108 2026-03-31T17:45:03.706 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-lxml-4.6.5-3.el9.x86_64 25/108 2026-03-31T17:45:03.714 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.718 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 27/108 2026-03-31T17:45:03.720 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : xmlsec1-openssl-1.2.29-13.el9.x86_64 28/108 2026-03-31T17:45:03.721 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.721 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service". 2026-03-31T17:45:03.721 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.722 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.732 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : xmlsec1-1.2.29-13.el9.x86_64 29/108 2026-03-31T17:45:03.736 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jsonpatch-1.21-16.el9.noarch 22/108 2026-03-31T17:45:03.737 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-cryptography-36.0.1-5.el9.x86_64 30/108 2026-03-31T17:45:03.739 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : protobuf-compiler-3.14.0-17.el9.x86_64 31/108 2026-03-31T17:45:03.742 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-bcrypt-3.2.2-1.el9.x86_64 32/108 2026-03-31T17:45:03.747 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.751 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-scipy-1.9.3-2.el9.x86_64 23/108 2026-03-31T17:45:03.751 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 27/108 2026-03-31T17:45:03.753 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : xmlsec1-openssl-1.2.29-13.el9.x86_64 28/108 2026-03-31T17:45:03.757 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-xmlsec-1.3.13-1.el9.x86_64 24/108 2026-03-31T17:45:03.759 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.759 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.759 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-31T17:45:03.759 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target". 2026-03-31T17:45:03.759 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target". 2026-03-31T17:45:03.759 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.760 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-lxml-4.6.5-3.el9.x86_64 25/108 2026-03-31T17:45:03.761 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.766 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : xmlsec1-1.2.29-13.el9.x86_64 29/108 2026-03-31T17:45:03.769 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.771 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cryptography-36.0.1-5.el9.x86_64 30/108 2026-03-31T17:45:03.771 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jaraco-context-6.0.1-3.el9.noarch 34/108 2026-03-31T17:45:03.773 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : protobuf-compiler-3.14.0-17.el9.x86_64 31/108 2026-03-31T17:45:03.773 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-portend-3.1.0-2.el9.noarch 35/108 2026-03-31T17:45:03.774 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.774 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/libstoragemgmt.service". 2026-03-31T17:45:03.774 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.775 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-bcrypt-3.2.2-1.el9.x86_64 32/108 2026-03-31T17:45:03.775 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.775 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-tempora-5.0.0-2.el9.noarch 36/108 2026-03-31T17:45:03.779 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jaraco-functools-3.5.0-2.el9.noarch 37/108 2026-03-31T17:45:03.782 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-routes-2.5.1-5.el9.noarch 38/108 2026-03-31T17:45:03.782 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 39/108 2026-03-31T17:45:03.793 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.793 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.793 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-31T17:45:03.793 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target". 2026-03-31T17:45:03.793 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target". 2026-03-31T17:45:03.793 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:03.794 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.800 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 26/108 2026-03-31T17:45:03.802 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.804 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-context-6.0.1-3.el9.noarch 34/108 2026-03-31T17:45:03.804 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 27/108 2026-03-31T17:45:03.806 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : xmlsec1-openssl-1.2.29-13.el9.x86_64 28/108 2026-03-31T17:45:03.806 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-portend-3.1.0-2.el9.noarch 35/108 2026-03-31T17:45:03.809 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-tempora-5.0.0-2.el9.noarch 36/108 2026-03-31T17:45:03.811 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-functools-3.5.0-2.el9.noarch 37/108 2026-03-31T17:45:03.813 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-routes-2.5.1-5.el9.noarch 38/108 2026-03-31T17:45:03.813 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 39/108 2026-03-31T17:45:03.818 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : xmlsec1-1.2.29-13.el9.x86_64 29/108 2026-03-31T17:45:03.823 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-cryptography-36.0.1-5.el9.x86_64 30/108 2026-03-31T17:45:03.825 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : protobuf-compiler-3.14.0-17.el9.x86_64 31/108 2026-03-31T17:45:03.827 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-bcrypt-3.2.2-1.el9.x86_64 32/108 2026-03-31T17:45:03.834 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 39/108 2026-03-31T17:45:03.843 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-kubernetes-1:26.1.0-3.el9.noarch 40/108 2026-03-31T17:45:03.847 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-requests-oauthlib-1.3.0-12.el9.noarch 41/108 2026-03-31T17:45:03.848 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.848 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.848 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-03-31T17:45:03.848 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target". 2026-03-31T17:45:03.848 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target". 2026-03-31T17:45:03.848 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:03.849 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.855 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-requests-2.25.1-10.el9.noarch 42/108 2026-03-31T17:45:03.857 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 33/108 2026-03-31T17:45:03.859 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jaraco-context-6.0.1-3.el9.noarch 34/108 2026-03-31T17:45:03.859 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-google-auth-1:2.45.0-1.el9.noarch 43/108 2026-03-31T17:45:03.861 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-portend-3.1.0-2.el9.noarch 35/108 2026-03-31T17:45:03.864 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-tempora-5.0.0-2.el9.noarch 36/108 2026-03-31T17:45:03.864 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 39/108 2026-03-31T17:45:03.866 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jaraco-functools-3.5.0-2.el9.noarch 37/108 2026-03-31T17:45:03.868 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-routes-2.5.1-5.el9.noarch 38/108 2026-03-31T17:45:03.868 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 39/108 2026-03-31T17:45:03.869 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-rsa-4.9-2.el9.noarch 44/108 2026-03-31T17:45:03.872 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-kubernetes-1:26.1.0-3.el9.noarch 40/108 2026-03-31T17:45:03.875 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-pyasn1-modules-0.4.8-7.el9.noarch 45/108 2026-03-31T17:45:03.876 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-requests-oauthlib-1.3.0-12.el9.noarch 41/108 2026-03-31T17:45:03.879 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-urllib3-1.26.5-7.el9.noarch 46/108 2026-03-31T17:45:03.883 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-cffi-1.14.5-5.el9.x86_64 47/108 2026-03-31T17:45:03.884 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-requests-2.25.1-10.el9.noarch 42/108 2026-03-31T17:45:03.889 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-google-auth-1:2.45.0-1.el9.noarch 43/108 2026-03-31T17:45:03.899 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rsa-4.9-2.el9.noarch 44/108 2026-03-31T17:45:03.904 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pyasn1-modules-0.4.8-7.el9.noarch 45/108 2026-03-31T17:45:03.908 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-urllib3-1.26.5-7.el9.noarch 46/108 2026-03-31T17:45:03.912 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cffi-1.14.5-5.el9.x86_64 47/108 2026-03-31T17:45:03.920 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 39/108 2026-03-31T17:45:03.928 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-kubernetes-1:26.1.0-3.el9.noarch 40/108 2026-03-31T17:45:03.929 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-pycparser-2.20-6.el9.noarch 48/108 2026-03-31T17:45:03.932 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-requests-oauthlib-1.3.0-12.el9.noarch 41/108 2026-03-31T17:45:03.941 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-numpy-1:1.23.5-2.el9.x86_64 49/108 2026-03-31T17:45:03.941 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-requests-2.25.1-10.el9.noarch 42/108 2026-03-31T17:45:03.943 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : flexiblas-netlib-3.0.4-9.el9.x86_64 50/108 2026-03-31T17:45:03.945 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-google-auth-1:2.45.0-1.el9.noarch 43/108 2026-03-31T17:45:03.948 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 51/108 2026-03-31T17:45:03.950 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : openblas-openmp-0.3.29-1.el9.x86_64 52/108 2026-03-31T17:45:03.953 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libgfortran-11.5.0-14.el9.x86_64 53/108 2026-03-31T17:45:03.955 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-rsa-4.9-2.el9.noarch 44/108 2026-03-31T17:45:03.956 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 54/108 2026-03-31T17:45:03.958 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pycparser-2.20-6.el9.noarch 48/108 2026-03-31T17:45:03.961 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-pyasn1-modules-0.4.8-7.el9.noarch 45/108 2026-03-31T17:45:03.965 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-urllib3-1.26.5-7.el9.noarch 46/108 2026-03-31T17:45:03.968 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-numpy-1:1.23.5-2.el9.x86_64 49/108 2026-03-31T17:45:03.969 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-cffi-1.14.5-5.el9.x86_64 47/108 2026-03-31T17:45:03.971 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : flexiblas-netlib-3.0.4-9.el9.x86_64 50/108 2026-03-31T17:45:03.974 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:03.974 INFO:teuthology.orchestra.run.vm06.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:03.974 INFO:teuthology.orchestra.run.vm06.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-31T17:45:03.974 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:03.975 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:03.977 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 51/108 2026-03-31T17:45:03.979 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : openblas-openmp-0.3.29-1.el9.x86_64 52/108 2026-03-31T17:45:03.982 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libgfortran-11.5.0-14.el9.x86_64 53/108 2026-03-31T17:45:03.983 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:03.984 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 54/108 2026-03-31T17:45:03.984 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : openblas-0.3.29-1.el9.x86_64 56/108 2026-03-31T17:45:03.986 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : flexiblas-3.0.4-9.el9.x86_64 57/108 2026-03-31T17:45:03.989 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-ply-3.11-14.el9.noarch 58/108 2026-03-31T17:45:03.991 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-idna-2.10-7.el9.1.noarch 59/108 2026-03-31T17:45:03.996 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-pysocks-1.7.1-12.el9.noarch 60/108 2026-03-31T17:45:03.999 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-pyasn1-0.4.8-7.el9.noarch 61/108 2026-03-31T17:45:04.003 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:04.003 INFO:teuthology.orchestra.run.vm02.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:04.003 INFO:teuthology.orchestra.run.vm02.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-31T17:45:04.003 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:04.003 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:04.005 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-cachetools-4.2.4-1.el9.noarch 62/108 2026-03-31T17:45:04.011 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:04.012 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : openblas-0.3.29-1.el9.x86_64 56/108 2026-03-31T17:45:04.013 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-chardet-4.0.0-5.el9.noarch 63/108 2026-03-31T17:45:04.014 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : flexiblas-3.0.4-9.el9.x86_64 57/108 2026-03-31T17:45:04.015 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-pycparser-2.20-6.el9.noarch 48/108 2026-03-31T17:45:04.017 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-ply-3.11-14.el9.noarch 58/108 2026-03-31T17:45:04.017 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-oauthlib-3.1.1-5.el9.noarch 64/108 2026-03-31T17:45:04.019 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-idna-2.10-7.el9.1.noarch 59/108 2026-03-31T17:45:04.020 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-websocket-client-1.2.3-2.el9.noarch 65/108 2026-03-31T17:45:04.023 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-certifi-2023.05.07-4.el9.noarch 66/108 2026-03-31T17:45:04.024 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pysocks-1.7.1-12.el9.noarch 60/108 2026-03-31T17:45:04.025 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-repoze-lru-0.7-16.el9.noarch 67/108 2026-03-31T17:45:04.026 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-numpy-1:1.23.5-2.el9.x86_64 49/108 2026-03-31T17:45:04.027 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jaraco-8.2.1-3.el9.noarch 68/108 2026-03-31T17:45:04.027 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pyasn1-0.4.8-7.el9.noarch 61/108 2026-03-31T17:45:04.028 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : flexiblas-netlib-3.0.4-9.el9.x86_64 50/108 2026-03-31T17:45:04.029 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-more-itertools-8.12.0-2.el9.noarch 69/108 2026-03-31T17:45:04.032 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-toml-0.10.2-6.el9.noarch 70/108 2026-03-31T17:45:04.033 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cachetools-4.2.4-1.el9.noarch 62/108 2026-03-31T17:45:04.034 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 51/108 2026-03-31T17:45:04.034 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-pytz-2021.1-5.el9.noarch 71/108 2026-03-31T17:45:04.036 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : openblas-openmp-0.3.29-1.el9.x86_64 52/108 2026-03-31T17:45:04.039 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libgfortran-11.5.0-14.el9.x86_64 53/108 2026-03-31T17:45:04.040 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-chardet-4.0.0-5.el9.noarch 63/108 2026-03-31T17:45:04.041 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 54/108 2026-03-31T17:45:04.041 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-backports-tarfile-1.2.0-1.el9.noarch 72/108 2026-03-31T17:45:04.045 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-devel-3.9.25-3.el9.x86_64 73/108 2026-03-31T17:45:04.045 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-oauthlib-3.1.1-5.el9.noarch 64/108 2026-03-31T17:45:04.047 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-jsonpointer-2.0-4.el9.noarch 74/108 2026-03-31T17:45:04.048 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-websocket-client-1.2.3-2.el9.noarch 65/108 2026-03-31T17:45:04.050 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-certifi-2023.05.07-4.el9.noarch 66/108 2026-03-31T17:45:04.051 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-typing-extensions-4.15.0-1.el9.noarch 75/108 2026-03-31T17:45:04.052 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-repoze-lru-0.7-16.el9.noarch 67/108 2026-03-31T17:45:04.054 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-isodate-0.6.1-3.el9.noarch 76/108 2026-03-31T17:45:04.054 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jaraco-8.2.1-3.el9.noarch 68/108 2026-03-31T17:45:04.056 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-more-itertools-8.12.0-2.el9.noarch 69/108 2026-03-31T17:45:04.057 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-autocommand-2.2.2-8.el9.noarch 77/108 2026-03-31T17:45:04.059 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-toml-0.10.2-6.el9.noarch 70/108 2026-03-31T17:45:04.059 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-packaging-20.9-5.el9.noarch 78/108 2026-03-31T17:45:04.061 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:04.061 INFO:teuthology.orchestra.run.vm07.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-03-31T17:45:04.061 INFO:teuthology.orchestra.run.vm07.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-03-31T17:45:04.061 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:04.062 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-pytz-2021.1-5.el9.noarch 71/108 2026-03-31T17:45:04.062 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:04.065 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : grpc-data-1.46.7-10.el9.noarch 79/108 2026-03-31T17:45:04.068 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-backports-tarfile-1.2.0-1.el9.noarch 72/108 2026-03-31T17:45:04.069 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-protobuf-3.14.0-17.el9.noarch 80/108 2026-03-31T17:45:04.069 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-721.g5bb327 55/108 2026-03-31T17:45:04.070 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : openblas-0.3.29-1.el9.x86_64 56/108 2026-03-31T17:45:04.072 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-zc-lockfile-2.0-10.el9.noarch 81/108 2026-03-31T17:45:04.072 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-devel-3.9.25-3.el9.x86_64 73/108 2026-03-31T17:45:04.073 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : flexiblas-3.0.4-9.el9.x86_64 57/108 2026-03-31T17:45:04.074 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-jsonpointer-2.0-4.el9.noarch 74/108 2026-03-31T17:45:04.075 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-natsort-7.1.1-5.el9.noarch 82/108 2026-03-31T17:45:04.075 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-ply-3.11-14.el9.noarch 58/108 2026-03-31T17:45:04.077 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 83/108 2026-03-31T17:45:04.077 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-typing-extensions-4.15.0-1.el9.noarch 75/108 2026-03-31T17:45:04.078 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-idna-2.10-7.el9.1.noarch 59/108 2026-03-31T17:45:04.079 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 84/108 2026-03-31T17:45:04.080 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-isodate-0.6.1-3.el9.noarch 76/108 2026-03-31T17:45:04.083 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-pysocks-1.7.1-12.el9.noarch 60/108 2026-03-31T17:45:04.083 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-autocommand-2.2.2-8.el9.noarch 77/108 2026-03-31T17:45:04.086 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-packaging-20.9-5.el9.noarch 78/108 2026-03-31T17:45:04.087 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-pyasn1-0.4.8-7.el9.noarch 61/108 2026-03-31T17:45:04.091 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : grpc-data-1.46.7-10.el9.noarch 79/108 2026-03-31T17:45:04.092 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-cachetools-4.2.4-1.el9.noarch 62/108 2026-03-31T17:45:04.095 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-protobuf-3.14.0-17.el9.noarch 80/108 2026-03-31T17:45:04.096 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.096 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-crash.service". 2026-03-31T17:45:04.096 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:04.098 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-zc-lockfile-2.0-10.el9.noarch 81/108 2026-03-31T17:45:04.100 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-chardet-4.0.0-5.el9.noarch 63/108 2026-03-31T17:45:04.101 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-natsort-7.1.1-5.el9.noarch 82/108 2026-03-31T17:45:04.103 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.103 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 83/108 2026-03-31T17:45:04.105 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-oauthlib-3.1.1-5.el9.noarch 64/108 2026-03-31T17:45:04.105 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 84/108 2026-03-31T17:45:04.107 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-websocket-client-1.2.3-2.el9.noarch 65/108 2026-03-31T17:45:04.110 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-certifi-2023.05.07-4.el9.noarch 66/108 2026-03-31T17:45:04.112 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-repoze-lru-0.7-16.el9.noarch 67/108 2026-03-31T17:45:04.113 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jaraco-8.2.1-3.el9.noarch 68/108 2026-03-31T17:45:04.115 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-more-itertools-8.12.0-2.el9.noarch 69/108 2026-03-31T17:45:04.118 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-toml-0.10.2-6.el9.noarch 70/108 2026-03-31T17:45:04.121 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-pytz-2021.1-5.el9.noarch 71/108 2026-03-31T17:45:04.123 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.123 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-crash.service". 2026-03-31T17:45:04.123 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:04.128 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-backports-tarfile-1.2.0-1.el9.noarch 72/108 2026-03-31T17:45:04.130 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.130 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 86/108 2026-03-31T17:45:04.131 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.132 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-devel-3.9.25-3.el9.x86_64 73/108 2026-03-31T17:45:04.133 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-jsonpointer-2.0-4.el9.noarch 74/108 2026-03-31T17:45:04.136 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-typing-extensions-4.15.0-1.el9.noarch 75/108 2026-03-31T17:45:04.139 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-isodate-0.6.1-3.el9.noarch 76/108 2026-03-31T17:45:04.141 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 86/108 2026-03-31T17:45:04.142 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-autocommand-2.2.2-8.el9.noarch 77/108 2026-03-31T17:45:04.144 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-packaging-20.9-5.el9.noarch 78/108 2026-03-31T17:45:04.147 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : qatzip-libs-1.3.1-1.el9.x86_64 87/108 2026-03-31T17:45:04.150 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : grpc-data-1.46.7-10.el9.noarch 79/108 2026-03-31T17:45:04.151 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 88/108 2026-03-31T17:45:04.153 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-prettytable-0.7.2-27.el9.noarch 89/108 2026-03-31T17:45:04.153 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 90/108 2026-03-31T17:45:04.153 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-protobuf-3.14.0-17.el9.noarch 80/108 2026-03-31T17:45:04.156 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-zc-lockfile-2.0-10.el9.noarch 81/108 2026-03-31T17:45:04.159 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-natsort-7.1.1-5.el9.noarch 82/108 2026-03-31T17:45:04.160 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.160 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 86/108 2026-03-31T17:45:04.161 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 83/108 2026-03-31T17:45:04.162 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 84/108 2026-03-31T17:45:04.172 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 86/108 2026-03-31T17:45:04.178 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qatzip-libs-1.3.1-1.el9.x86_64 87/108 2026-03-31T17:45:04.181 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.181 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/ceph.target.wants/ceph-crash.service". 2026-03-31T17:45:04.181 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:04.181 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 88/108 2026-03-31T17:45:04.183 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-prettytable-0.7.2-27.el9.noarch 89/108 2026-03-31T17:45:04.183 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 90/108 2026-03-31T17:45:04.188 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.216 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 85/108 2026-03-31T17:45:04.216 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 86/108 2026-03-31T17:45:04.227 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 86/108 2026-03-31T17:45:04.233 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : qatzip-libs-1.3.1-1.el9.x86_64 87/108 2026-03-31T17:45:04.236 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 88/108 2026-03-31T17:45:04.238 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-prettytable-0.7.2-27.el9.noarch 89/108 2026-03-31T17:45:04.238 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 90/108 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 90/108 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /sys 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /proc 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /mnt 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /var/tmp 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /home 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /root 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout:skipping the directory /tmp 2026-03-31T17:45:09.341 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.349 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qatlib-25.08.0-2.el9.x86_64 91/108 2026-03-31T17:45:09.366 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.366 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.375 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.375 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 90/108 2026-03-31T17:45:09.375 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /sys 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /proc 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /mnt 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /var/tmp 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /home 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /root 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout:skipping the directory /tmp 2026-03-31T17:45:09.376 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:09.378 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : gperftools-libs-2.9.1-3.el9.x86_64 93/108 2026-03-31T17:45:09.382 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libunwind-1.6.2-1.el9.x86_64 94/108 2026-03-31T17:45:09.385 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : pciutils-3.7.0-7.el9.x86_64 95/108 2026-03-31T17:45:09.387 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : qatlib-25.08.0-2.el9.x86_64 91/108 2026-03-31T17:45:09.387 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : liboath-2.6.12-1.el9.x86_64 96/108 2026-03-31T17:45:09.387 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 97/108 2026-03-31T17:45:09.401 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 97/108 2026-03-31T17:45:09.404 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.404 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 90/108 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /sys 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /proc 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /mnt 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /var/tmp 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /home 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /root 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout:skipping the directory /tmp 2026-03-31T17:45:09.406 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:09.412 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.414 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.414 INFO:teuthology.orchestra.run.vm02.stdout:Removed "/etc/systemd/system/multi-user.target.wants/smartd.service". 2026-03-31T17:45:09.414 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.414 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : qatlib-25.08.0-2.el9.x86_64 91/108 2026-03-31T17:45:09.415 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : gperftools-libs-2.9.1-3.el9.x86_64 93/108 2026-03-31T17:45:09.416 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.418 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libunwind-1.6.2-1.el9.x86_64 94/108 2026-03-31T17:45:09.421 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : pciutils-3.7.0-7.el9.x86_64 95/108 2026-03-31T17:45:09.423 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : liboath-2.6.12-1.el9.x86_64 96/108 2026-03-31T17:45:09.423 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 97/108 2026-03-31T17:45:09.426 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.429 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ledmon-libs-1.1.0-3.el9.x86_64 99/108 2026-03-31T17:45:09.430 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.430 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.431 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libquadmath-11.5.0-14.el9.x86_64 100/108 2026-03-31T17:45:09.435 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : protobuf-3.14.0-17.el9.x86_64 101/108 2026-03-31T17:45:09.437 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 97/108 2026-03-31T17:45:09.437 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 92/108 2026-03-31T17:45:09.438 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libxslt-1.1.34-12.el9.x86_64 102/108 2026-03-31T17:45:09.440 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : gperftools-libs-2.9.1-3.el9.x86_64 93/108 2026-03-31T17:45:09.440 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libconfig-1.7.2-9.el9.x86_64 103/108 2026-03-31T17:45:09.443 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libunwind-1.6.2-1.el9.x86_64 94/108 2026-03-31T17:45:09.446 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-markupsafe-1.1.1-12.el9.x86_64 104/108 2026-03-31T17:45:09.446 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : pciutils-3.7.0-7.el9.x86_64 95/108 2026-03-31T17:45:09.449 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : liboath-2.6.12-1.el9.x86_64 96/108 2026-03-31T17:45:09.449 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 97/108 2026-03-31T17:45:09.452 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.452 INFO:teuthology.orchestra.run.vm06.stdout:Removed "/etc/systemd/system/multi-user.target.wants/smartd.service". 2026-03-31T17:45:09.452 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:09.453 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : cryptsetup-2.8.1-3.el9.x86_64 105/108 2026-03-31T17:45:09.454 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.458 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : abseil-cpp-20211102.0-4.el9.x86_64 106/108 2026-03-31T17:45:09.461 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-msgpack-1.0.3-2.el9.x86_64 107/108 2026-03-31T17:45:09.461 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 108/108 2026-03-31T17:45:09.463 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 97/108 2026-03-31T17:45:09.463 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.466 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ledmon-libs-1.1.0-3.el9.x86_64 99/108 2026-03-31T17:45:09.468 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libquadmath-11.5.0-14.el9.x86_64 100/108 2026-03-31T17:45:09.471 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : protobuf-3.14.0-17.el9.x86_64 101/108 2026-03-31T17:45:09.474 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.474 INFO:teuthology.orchestra.run.vm07.stdout:Removed "/etc/systemd/system/multi-user.target.wants/smartd.service". 2026-03-31T17:45:09.474 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:09.475 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libxslt-1.1.34-12.el9.x86_64 102/108 2026-03-31T17:45:09.476 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.478 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libconfig-1.7.2-9.el9.x86_64 103/108 2026-03-31T17:45:09.483 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-markupsafe-1.1.1-12.el9.x86_64 104/108 2026-03-31T17:45:09.485 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: smartmontools-1:7.2-10.el9.x86_64 98/108 2026-03-31T17:45:09.487 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ledmon-libs-1.1.0-3.el9.x86_64 99/108 2026-03-31T17:45:09.489 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libquadmath-11.5.0-14.el9.x86_64 100/108 2026-03-31T17:45:09.491 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : cryptsetup-2.8.1-3.el9.x86_64 105/108 2026-03-31T17:45:09.492 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : protobuf-3.14.0-17.el9.x86_64 101/108 2026-03-31T17:45:09.495 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libxslt-1.1.34-12.el9.x86_64 102/108 2026-03-31T17:45:09.496 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : abseil-cpp-20211102.0-4.el9.x86_64 106/108 2026-03-31T17:45:09.498 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libconfig-1.7.2-9.el9.x86_64 103/108 2026-03-31T17:45:09.499 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-msgpack-1.0.3-2.el9.x86_64 107/108 2026-03-31T17:45:09.499 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 108/108 2026-03-31T17:45:09.504 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-markupsafe-1.1.1-12.el9.x86_64 104/108 2026-03-31T17:45:09.511 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : cryptsetup-2.8.1-3.el9.x86_64 105/108 2026-03-31T17:45:09.516 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : abseil-cpp-20211102.0-4.el9.x86_64 106/108 2026-03-31T17:45:09.519 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-msgpack-1.0.3-2.el9.x86_64 107/108 2026-03-31T17:45:09.519 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 108/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 108/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 1/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 3/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 4/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 5/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 6/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 7/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 8/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 9/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 10/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 11/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 13/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 14/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 15/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 16/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 17/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 18/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 19/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 20/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 21/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 22/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 23/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 24/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 25/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 26/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 27/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 28/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 29/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 30/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/108 2026-03-31T17:45:09.556 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 32/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 33/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 34/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 35/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 36/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 37/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 38/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 39/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 40/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 41/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 42/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 43/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 44/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 45/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 46/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-chardet-4.0.0-5.el9.noarch 47/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cheroot-10.0.1-5.el9.noarch 48/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cherrypy-18.10.0-5.el9.noarch 49/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 50/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 51/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 52/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 53/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 54/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-idna-2.10-7.el9.1.noarch 55/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 56/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 57/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 58/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 59/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 60/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 61/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 62/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 63/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 64/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 65/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 66/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 67/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 68/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 69/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 70/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 71/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 72/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 73/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 74/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 75/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 76/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 77/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ply-3.11-14.el9.noarch 78/108 2026-03-31T17:45:09.557 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 79/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 80/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 81/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 82/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 83/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 84/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 85/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pysocks-1.7.1-12.el9.noarch 86/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 87/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 88/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 89/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 90/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 91/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 92/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 93/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 94/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 95/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 96/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 97/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 98/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 99/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 100/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 101/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 102/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 103/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 104/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 105/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : smartmontools-1:7.2-10.el9.x86_64 106/108 2026-03-31T17:45:09.558 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 107/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 108/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 1/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 3/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 4/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 5/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 6/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 7/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 8/108 2026-03-31T17:45:09.592 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 9/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 10/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 11/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 13/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 14/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 15/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 16/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 17/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 18/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 19/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 20/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 21/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 22/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 23/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 24/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 25/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 26/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 27/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 28/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 29/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 30/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 32/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 33/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 34/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 35/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 36/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 37/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 38/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 39/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 40/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 41/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 42/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 43/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 44/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 45/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 46/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-chardet-4.0.0-5.el9.noarch 47/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cheroot-10.0.1-5.el9.noarch 48/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cherrypy-18.10.0-5.el9.noarch 49/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 50/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 51/108 2026-03-31T17:45:09.595 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 52/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 53/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 54/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-idna-2.10-7.el9.1.noarch 55/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 56/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 57/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 58/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 59/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 60/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 61/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 62/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 63/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 64/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 65/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 66/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 67/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 68/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 69/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 70/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 71/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 72/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 73/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 74/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 75/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 76/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 77/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-ply-3.11-14.el9.noarch 78/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 79/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 80/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 81/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 82/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 83/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 84/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 85/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pysocks-1.7.1-12.el9.noarch 86/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 87/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 88/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 89/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 90/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 91/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 92/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 93/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 94/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 95/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 96/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 97/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 98/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 99/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 100/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 101/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 102/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 103/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 104/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 105/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : smartmontools-1:7.2-10.el9.x86_64 106/108 2026-03-31T17:45:09.596 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 107/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 108/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 1/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 3/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.e 4/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-721.g5bb327 5/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 6/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noar 7/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.no 8/108 2026-03-31T17:45:09.618 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb3 9/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.no 10/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9 11/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 12/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 13/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el 14/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 15/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 16/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 17/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 18/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 19/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 20/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 21/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 22/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 23/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 24/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 25/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 26/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 27/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 28/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_ 29/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 30/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 32/108 2026-03-31T17:45:09.619 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 33/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 34/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 35/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 36/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 37/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 38/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 39/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 40/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 41/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 42/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 43/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x 44/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 45/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 46/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-chardet-4.0.0-5.el9.noarch 47/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cheroot-10.0.1-5.el9.noarch 48/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cherrypy-18.10.0-5.el9.noarch 49/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 50/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 51/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 52/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 53/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 54/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-idna-2.10-7.el9.1.noarch 55/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 56/108 2026-03-31T17:45:09.620 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 57/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 58/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 59/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 60/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 61/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 62/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 63/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 64/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jsonpatch-1.21-16.el9.noarch 65/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-jsonpointer-2.0-4.el9.noarch 66/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 67/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 68/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 69/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 70/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 71/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 72/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 73/108 2026-03-31T17:45:09.621 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 74/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 75/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-oauthlib-3.1.1-5.el9.noarch 76/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 77/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-ply-3.11-14.el9.noarch 78/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 79/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-prettytable-0.7.2-27.el9.noarch 80/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 81/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 82/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyasn1-0.4.8-7.el9.noarch 83/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pyasn1-modules-0.4.8-7.el9.noarch 84/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 85/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pysocks-1.7.1-12.el9.noarch 86/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-pytz-2021.1-5.el9.noarch 87/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 88/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 89/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 90/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 91/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 92/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 93/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 94/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 95/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 96/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 97/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 98/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 99/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 100/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 101/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 102/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 103/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 104/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 105/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : smartmontools-1:7.2-10.el9.x86_64 106/108 2026-03-31T17:45:09.622 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 107/108 2026-03-31T17:45:09.631 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 108/108 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-immutable-object-cache-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-31T17:45:09.632 INFO:teuthology.orchestra.run.vm02.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-chardet-4.0.0-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-cheroot-10.0.1-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-cherrypy-18.10.0-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-idna-2.10-7.el9.1.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpatch-1.21-16.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-jsonpointer-2.0-4.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-ply-3.11-14.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-prettytable-0.7.2-27.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-31T17:45:09.633 INFO:teuthology.orchestra.run.vm02.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-pysocks-1.7.1-12.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-pytz-2021.1-5.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-saml-1.16.0-1.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: smartmontools-1:7.2-10.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.634 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 108/108 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-immutable-object-cache-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:45:09.676 INFO:teuthology.orchestra.run.vm06.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-chardet-4.0.0-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-cheroot-10.0.1-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-cherrypy-18.10.0-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-idna-2.10-7.el9.1.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jsonpatch-1.21-16.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-jsonpointer-2.0-4.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-31T17:45:09.677 INFO:teuthology.orchestra.run.vm06.stdout: python3-ply-3.11-14.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-prettytable-0.7.2-27.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-pysocks-1.7.1-12.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-pytz-2021.1-5.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-saml-1.16.0-1.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: smartmontools-1:7.2-10.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:09.678 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 108/108 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-base-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-grafana-dashboards-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-immutable-object-cache-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-dashboard-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-diskprediction-local-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-k8sevents-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-modules-core-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-mgr-rook-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-osd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-prometheus-alerts-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-selinux-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ceph-volume-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: grpc-data-1.46.7-10.el9.noarch 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libcephsqlite-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libconfig-1.7.2-9.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: liboath-2.6.12-1.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libradosstriper1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libunwind-1.6.2-1.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: libxslt-1.1.34-12.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: openblas-0.3.29-1.el9.x86_64 2026-03-31T17:45:09.700 INFO:teuthology.orchestra.run.vm07.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: pciutils-3.7.0-7.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: protobuf-3.14.0-17.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-babel-2.9.1-2.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-common-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-chardet-4.0.0-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-cheroot-10.0.1-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-cherrypy-18.10.0-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-idna-2.10-7.el9.1.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jsonpatch-1.21-16.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-jsonpointer-2.0-4.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-oauthlib-3.1.1-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-packaging-20.9-5.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-ply-3.11-14.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-portend-3.1.0-2.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-prettytable-0.7.2-27.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1-0.4.8-7.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-pyasn1-modules-0.4.8-7.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-pycparser-2.20-6.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-pysocks-1.7.1-12.el9.noarch 2026-03-31T17:45:09.701 INFO:teuthology.orchestra.run.vm07.stdout: python3-pytz-2021.1-5.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests-2.25.1-10.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-routes-2.5.1-5.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-rsa-4.9-2.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-saml-1.16.0-1.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-toml-0.10.2-6.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: qatlib-25.08.0-2.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: rbd-mirror-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: smartmontools-1:7.2-10.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:09.702 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout: cephadm noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.0 M 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:Remove 1 Package 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 1.0 M 2026-03-31T17:45:09.838 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:09.840 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:09.840 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:09.841 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:09.841 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:09.857 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:09.857 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout: cephadm noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.0 M 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:Remove 1 Package 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 1.0 M 2026-03-31T17:45:09.882 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:09.884 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:09.884 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:09.885 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:09.885 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout: cephadm noarch 2:20.2.0-721.g5bb32787.el9 @ceph-noarch 1.0 M 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:Remove 1 Package 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 1.0 M 2026-03-31T17:45:09.895 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:09.897 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:09.897 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:09.898 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:09.898 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:09.900 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:09.900 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:09.914 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:09.914 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:09.957 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:09.996 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:09.996 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.996 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:09.996 INFO:teuthology.orchestra.run.vm02.stdout: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:09.996 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:09.996 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:10.021 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:10.024 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:10.060 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:10.060 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:10.060 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:10.060 INFO:teuthology.orchestra.run.vm06.stdout: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:10.060 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:10.060 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:10.068 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : cephadm-2:20.2.0-721.g5bb32787.el9.noarch 1/1 2026-03-31T17:45:10.068 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:10.068 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:10.068 INFO:teuthology.orchestra.run.vm07.stdout: cephadm-2:20.2.0-721.g5bb32787.el9.noarch 2026-03-31T17:45:10.068 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:10.068 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:10.203 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-immutable-object-cache 2026-03-31T17:45:10.204 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:10.205 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:10.206 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:10.206 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:10.265 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-immutable-object-cache 2026-03-31T17:45:10.265 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:10.267 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:10.268 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:10.268 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:10.270 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-immutable-object-cache 2026-03-31T17:45:10.270 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:10.272 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:10.272 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:10.272 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:10.366 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr 2026-03-31T17:45:10.366 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:10.368 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:10.369 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:10.369 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:10.425 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-mgr 2026-03-31T17:45:10.426 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:10.427 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:10.428 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:10.428 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:10.431 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-mgr 2026-03-31T17:45:10.431 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:10.433 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:10.434 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:10.434 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:10.527 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-dashboard 2026-03-31T17:45:10.527 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:10.528 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:10.529 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:10.529 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:10.584 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-mgr-dashboard 2026-03-31T17:45:10.585 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:10.586 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:10.587 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:10.587 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:10.593 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-mgr-dashboard 2026-03-31T17:45:10.593 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:10.595 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:10.595 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:10.595 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:10.688 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-diskprediction-local 2026-03-31T17:45:10.688 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:10.690 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:10.691 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:10.691 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:10.748 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-mgr-diskprediction-local 2026-03-31T17:45:10.748 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:10.750 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:10.751 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:10.751 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:10.754 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-mgr-diskprediction-local 2026-03-31T17:45:10.754 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:10.756 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:10.757 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:10.757 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:10.852 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-rook 2026-03-31T17:45:10.852 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:10.854 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:10.855 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:10.855 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:10.907 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-mgr-rook 2026-03-31T17:45:10.907 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:10.909 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:10.909 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:10.909 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:10.914 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-mgr-rook 2026-03-31T17:45:10.914 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:10.916 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:10.917 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:10.917 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:11.012 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-mgr-cephadm 2026-03-31T17:45:11.012 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:11.014 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:11.014 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:11.014 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:11.066 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-mgr-cephadm 2026-03-31T17:45:11.067 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:11.068 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:11.069 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:11.069 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:11.074 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-mgr-cephadm 2026-03-31T17:45:11.075 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:11.076 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:11.077 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:11.077 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.7 M 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:11.178 INFO:teuthology.orchestra.run.vm02.stdout: fuse x86_64 2.9.9-17.el9 @baseos 214 k 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout:Remove 2 Packages 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 2.9 M 2026-03-31T17:45:11.179 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:11.181 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:11.181 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:11.194 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:11.194 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:11.223 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:11.226 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.233 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout: ceph-fuse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.7 M 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout: fuse x86_64 2.9.9-17.el9 @baseos 214 k 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:Remove 2 Packages 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 2.9 M 2026-03-31T17:45:11.234 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:11.236 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:11.236 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:11.240 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.242 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout: ceph-fuse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.7 M 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout: fuse x86_64 2.9.9-17.el9 @baseos 214 k 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:Remove 2 Packages 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 2.9 M 2026-03-31T17:45:11.243 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:11.245 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:11.245 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:11.249 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:11.249 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:11.259 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:11.259 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:11.277 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:11.280 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.287 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:11.290 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.293 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.303 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.305 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.305 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.342 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.342 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.342 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:11.342 INFO:teuthology.orchestra.run.vm02.stdout: ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 fuse-2.9.9-17.el9.x86_64 2026-03-31T17:45:11.342 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.342 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:11.353 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.354 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.366 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.366 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.394 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.394 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.394 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:11.394 INFO:teuthology.orchestra.run.vm06.stdout: ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 fuse-2.9.9-17.el9.x86_64 2026-03-31T17:45:11.394 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.394 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:11.404 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : fuse-2.9.9-17.el9.x86_64 2/2 2026-03-31T17:45:11.404 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.404 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:11.404 INFO:teuthology.orchestra.run.vm07.stdout: ceph-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 fuse-2.9.9-17.el9.x86_64 2026-03-31T17:45:11.404 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.404 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:11.523 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: ceph-volume 2026-03-31T17:45:11.523 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:11.525 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:11.526 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:11.526 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:11.578 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: ceph-volume 2026-03-31T17:45:11.578 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:11.580 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:11.581 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:11.581 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:11.585 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: ceph-volume 2026-03-31T17:45:11.585 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:11.587 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:11.588 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:11.588 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:11.700 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:11.700 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:11.700 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repo Size 2026-03-31T17:45:11.700 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:11.700 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 449 k 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 155 k 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout:Remove 2 Packages 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 604 k 2026-03-31T17:45:11.701 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:11.703 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:11.703 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:11.712 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:11.713 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:11.737 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:11.739 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.745 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repo Size 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout: librados-devel x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 449 k 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:Removing dependent packages: 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-devel x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 155 k 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:Remove 2 Packages 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 604 k 2026-03-31T17:45:11.746 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:11.748 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:11.748 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:11.752 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.755 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repo Size 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout: librados-devel x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 449 k 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:Removing dependent packages: 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-devel x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 155 k 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:Remove 2 Packages 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 604 k 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:11.756 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:11.757 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:11.758 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:11.758 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:11.768 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:11.768 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:11.780 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:11.783 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.794 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:11.795 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.796 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.807 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.807 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.809 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:11.849 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:11.860 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.860 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.868 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.868 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 1/2 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:11.902 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2/2 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout: librados-devel-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:11.908 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repo Size 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.4 M 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 510 k 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-daemon x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 90 k 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-proxy2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 52 k 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 187 k 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Remove 5 Packages 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 3.3 M 2026-03-31T17:45:12.040 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:12.042 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:12.042 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:12.054 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:12.055 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repo Size 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.4 M 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:Removing dependent packages: 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: python3-cephfs x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 510 k 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-daemon x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 90 k 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-proxy2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 52 k 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-argparse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 187 k 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout:Remove 5 Packages 2026-03-31T17:45:12.079 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.080 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 3.3 M 2026-03-31T17:45:12.080 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:12.081 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:12.081 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:12.081 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:12.083 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 1/5 2026-03-31T17:45:12.084 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86 2/5 2026-03-31T17:45:12.084 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.088 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repo Size 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 2.4 M 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Removing dependent packages: 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: python3-cephfs x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 510 k 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-daemon x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 90 k 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-proxy2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 52 k 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-argparse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 187 k 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Remove 5 Packages 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 3.3 M 2026-03-31T17:45:12.089 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:12.091 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:12.091 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:12.093 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:12.093 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:12.095 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.097 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 4/5 2026-03-31T17:45:12.097 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.103 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:12.103 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:12.118 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:12.120 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 1/5 2026-03-31T17:45:12.122 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86 2/5 2026-03-31T17:45:12.122 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.129 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:12.131 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 1/5 2026-03-31T17:45:12.132 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86 2/5 2026-03-31T17:45:12.132 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.133 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.135 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 4/5 2026-03-31T17:45:12.135 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.143 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.144 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 4/5 2026-03-31T17:45:12.144 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.153 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.153 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 1/5 2026-03-31T17:45:12.153 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2/5 2026-03-31T17:45:12.153 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.153 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86 4/5 2026-03-31T17:45:12.191 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.191 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 1/5 2026-03-31T17:45:12.191 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2/5 2026-03-31T17:45:12.191 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.191 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86 4/5 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.194 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:12.203 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.203 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 1/5 2026-03-31T17:45:12.203 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2/5 2026-03-31T17:45:12.203 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 3/5 2026-03-31T17:45:12.203 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86 4/5 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.232 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:12.243 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 5/5 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-daemon-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs-proxy2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: libcephfs2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: python3-ceph-argparse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: python3-cephfs-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.244 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:12.357 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: libcephfs-devel 2026-03-31T17:45:12.357 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:12.359 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:12.359 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:12.359 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:12.394 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: libcephfs-devel 2026-03-31T17:45:12.394 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:12.396 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:12.397 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:12.397 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:12.407 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: libcephfs-devel 2026-03-31T17:45:12.407 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:12.409 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:12.409 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:12.409 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:12.526 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: Package Arch Version Repository Size 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout:Removing: 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: librados2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 12 M 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout:Removing dependent packages: 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 1.1 M 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 1.1 M 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 264 k 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: qemu-kvm-block-rbd x86_64 17:10.1.0-16.el9 @appstream 37 k 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 238 k 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 498 k 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout:Removing unused dependencies: 2026-03-31T17:45:12.527 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options x86_64 1.75.0-13.el9 @appstream 276 k 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: libarrow x86_64 9.0.0-15.el9 @epel 18 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc noarch 9.0.0-15.el9 @epel 122 k 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: libnbd x86_64 1.20.3-4.el9 @appstream 453 k 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj x86_64 1.12.1-1.el9 @appstream 383 k 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq x86_64 0.11.0-7.el9 @appstream 102 k 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: librbd1 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 10 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka x86_64 1.6.1-102.el9 @appstream 2.0 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: librgw2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 28 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust x86_64 2.12.0-6.el9 @appstream 1.0 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs x86_64 9.0.0-15.el9 @epel 2.8 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: re2 x86_64 1:20211101-20.el9 @epel 472 k 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: thrift x86_64 0.15.0-4.el9 @epel 4.8 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout:Transaction Summary 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout:================================================================================ 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout:Remove 20 Packages 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout:Freed space: 84 M 2026-03-31T17:45:12.528 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction check 2026-03-31T17:45:12.532 INFO:teuthology.orchestra.run.vm02.stdout:Transaction check succeeded. 2026-03-31T17:45:12.532 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction test 2026-03-31T17:45:12.553 INFO:teuthology.orchestra.run.vm02.stdout:Transaction test succeeded. 2026-03-31T17:45:12.553 INFO:teuthology.orchestra.run.vm02.stdout:Running transaction 2026-03-31T17:45:12.565 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: Package Arch Version Repository Size 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout:Removing: 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: librados2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 12 M 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout:Removing dependent packages: 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: python3-rados x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 1.1 M 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: python3-rbd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 1.1 M 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: python3-rgw x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 264 k 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: qemu-kvm-block-rbd x86_64 17:10.1.0-16.el9 @appstream 37 k 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: rbd-fuse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 238 k 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout: rbd-nbd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 498 k 2026-03-31T17:45:12.566 INFO:teuthology.orchestra.run.vm06.stdout:Removing unused dependencies: 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: boost-program-options x86_64 1.75.0-13.el9 @appstream 276 k 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: libarrow x86_64 9.0.0-15.el9 @epel 18 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: libarrow-doc noarch 9.0.0-15.el9 @epel 122 k 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: libnbd x86_64 1.20.3-4.el9 @appstream 453 k 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: libpmemobj x86_64 1.12.1-1.el9 @appstream 383 k 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: librabbitmq x86_64 0.11.0-7.el9 @appstream 102 k 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: librbd1 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 10 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: librdkafka x86_64 1.6.1-102.el9 @appstream 2.0 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: librgw2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 28 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: lttng-ust x86_64 2.12.0-6.el9 @appstream 1.0 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: parquet-libs x86_64 9.0.0-15.el9 @epel 2.8 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: re2 x86_64 1:20211101-20.el9 @epel 472 k 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: thrift x86_64 0.15.0-4.el9 @epel 4.8 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout:Transaction Summary 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout:================================================================================ 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout:Remove 20 Packages 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout:Freed space: 84 M 2026-03-31T17:45:12.567 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction check 2026-03-31T17:45:12.570 INFO:teuthology.orchestra.run.vm06.stdout:Transaction check succeeded. 2026-03-31T17:45:12.570 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction test 2026-03-31T17:45:12.578 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: Package Arch Version Repository Size 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:Removing: 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: librados2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 12 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:Removing dependent packages: 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: python3-rados x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 1.1 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: python3-rbd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 1.1 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: python3-rgw x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 264 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: qemu-kvm-block-rbd x86_64 17:10.1.0-16.el9 @appstream 37 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: rbd-fuse x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 238 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: rbd-nbd x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 498 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:Removing unused dependencies: 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: boost-program-options x86_64 1.75.0-13.el9 @appstream 276 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: libarrow x86_64 9.0.0-15.el9 @epel 18 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: libarrow-doc noarch 9.0.0-15.el9 @epel 122 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: libnbd x86_64 1.20.3-4.el9 @appstream 453 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: libpmemobj x86_64 1.12.1-1.el9 @appstream 383 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: librabbitmq x86_64 0.11.0-7.el9 @appstream 102 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: librbd1 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 10 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: librdkafka x86_64 1.6.1-102.el9 @appstream 2.0 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: librgw2 x86_64 2:20.2.0-721.g5bb32787.el9 @ceph 28 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: lttng-ust x86_64 2.12.0-6.el9 @appstream 1.0 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: parquet-libs x86_64 9.0.0-15.el9 @epel 2.8 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: re2 x86_64 1:20211101-20.el9 @epel 472 k 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: thrift x86_64 0.15.0-4.el9 @epel 4.8 M 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:Transaction Summary 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:================================================================================ 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout:Remove 20 Packages 2026-03-31T17:45:12.579 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.580 INFO:teuthology.orchestra.run.vm07.stdout:Freed space: 84 M 2026-03-31T17:45:12.580 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction check 2026-03-31T17:45:12.583 INFO:teuthology.orchestra.run.vm07.stdout:Transaction check succeeded. 2026-03-31T17:45:12.583 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction test 2026-03-31T17:45:12.591 INFO:teuthology.orchestra.run.vm06.stdout:Transaction test succeeded. 2026-03-31T17:45:12.592 INFO:teuthology.orchestra.run.vm06.stdout:Running transaction 2026-03-31T17:45:12.592 INFO:teuthology.orchestra.run.vm02.stdout: Preparing : 1/1 2026-03-31T17:45:12.594 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 1/20 2026-03-31T17:45:12.596 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2/20 2026-03-31T17:45:12.599 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 3/20 2026-03-31T17:45:12.600 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 4/20 2026-03-31T17:45:12.605 INFO:teuthology.orchestra.run.vm07.stdout:Transaction test succeeded. 2026-03-31T17:45:12.605 INFO:teuthology.orchestra.run.vm07.stdout:Running transaction 2026-03-31T17:45:12.612 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 4/20 2026-03-31T17:45:12.614 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : parquet-libs-9.0.0-15.el9.x86_64 5/20 2026-03-31T17:45:12.615 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 6/20 2026-03-31T17:45:12.617 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 7/20 2026-03-31T17:45:12.618 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 8/20 2026-03-31T17:45:12.621 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libarrow-doc-9.0.0-15.el9.noarch 9/20 2026-03-31T17:45:12.621 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.631 INFO:teuthology.orchestra.run.vm06.stdout: Preparing : 1/1 2026-03-31T17:45:12.633 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.633 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 11/20 2026-03-31T17:45:12.634 INFO:teuthology.orchestra.run.vm02.stdout:warning: file /etc/ceph: remove failed: No such file or directory 2026-03-31T17:45:12.634 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.634 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 1/20 2026-03-31T17:45:12.636 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2/20 2026-03-31T17:45:12.639 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 3/20 2026-03-31T17:45:12.639 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 4/20 2026-03-31T17:45:12.644 INFO:teuthology.orchestra.run.vm07.stdout: Preparing : 1/1 2026-03-31T17:45:12.646 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 11/20 2026-03-31T17:45:12.646 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 1/20 2026-03-31T17:45:12.648 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libarrow-9.0.0-15.el9.x86_64 12/20 2026-03-31T17:45:12.648 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2/20 2026-03-31T17:45:12.651 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : re2-1:20211101-20.el9.x86_64 13/20 2026-03-31T17:45:12.651 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 4/20 2026-03-31T17:45:12.651 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 3/20 2026-03-31T17:45:12.651 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 4/20 2026-03-31T17:45:12.653 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : parquet-libs-9.0.0-15.el9.x86_64 5/20 2026-03-31T17:45:12.654 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : lttng-ust-2.12.0-6.el9.x86_64 14/20 2026-03-31T17:45:12.655 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 6/20 2026-03-31T17:45:12.657 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 7/20 2026-03-31T17:45:12.657 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : thrift-0.15.0-4.el9.x86_64 15/20 2026-03-31T17:45:12.658 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 8/20 2026-03-31T17:45:12.659 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libnbd-1.20.3-4.el9.x86_64 16/20 2026-03-31T17:45:12.660 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libarrow-doc-9.0.0-15.el9.noarch 9/20 2026-03-31T17:45:12.660 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.661 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : libpmemobj-1.12.1-1.el9.x86_64 17/20 2026-03-31T17:45:12.662 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 4/20 2026-03-31T17:45:12.663 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : boost-program-options-1.75.0-13.el9.x86_64 18/20 2026-03-31T17:45:12.664 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : parquet-libs-9.0.0-15.el9.x86_64 5/20 2026-03-31T17:45:12.665 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librabbitmq-0.11.0-7.el9.x86_64 19/20 2026-03-31T17:45:12.666 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 6/20 2026-03-31T17:45:12.667 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 7/20 2026-03-31T17:45:12.669 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 8/20 2026-03-31T17:45:12.671 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libarrow-doc-9.0.0-15.el9.noarch 9/20 2026-03-31T17:45:12.671 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.673 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.673 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 11/20 2026-03-31T17:45:12.673 INFO:teuthology.orchestra.run.vm06.stdout:warning: file /etc/ceph: remove failed: No such file or directory 2026-03-31T17:45:12.673 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.679 INFO:teuthology.orchestra.run.vm02.stdout: Erasing : librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-31T17:45:12.682 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.682 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 11/20 2026-03-31T17:45:12.683 INFO:teuthology.orchestra.run.vm07.stdout:warning: file /etc/ceph: remove failed: No such file or directory 2026-03-31T17:45:12.683 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.685 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 11/20 2026-03-31T17:45:12.687 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libarrow-9.0.0-15.el9.x86_64 12/20 2026-03-31T17:45:12.690 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : re2-1:20211101-20.el9.x86_64 13/20 2026-03-31T17:45:12.693 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : lttng-ust-2.12.0-6.el9.x86_64 14/20 2026-03-31T17:45:12.694 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 11/20 2026-03-31T17:45:12.695 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : thrift-0.15.0-4.el9.x86_64 15/20 2026-03-31T17:45:12.696 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libarrow-9.0.0-15.el9.x86_64 12/20 2026-03-31T17:45:12.698 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libnbd-1.20.3-4.el9.x86_64 16/20 2026-03-31T17:45:12.699 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : libpmemobj-1.12.1-1.el9.x86_64 17/20 2026-03-31T17:45:12.699 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : re2-1:20211101-20.el9.x86_64 13/20 2026-03-31T17:45:12.701 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : boost-program-options-1.75.0-13.el9.x86_64 18/20 2026-03-31T17:45:12.703 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : lttng-ust-2.12.0-6.el9.x86_64 14/20 2026-03-31T17:45:12.703 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : librabbitmq-0.11.0-7.el9.x86_64 19/20 2026-03-31T17:45:12.705 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : thrift-0.15.0-4.el9.x86_64 15/20 2026-03-31T17:45:12.708 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libnbd-1.20.3-4.el9.x86_64 16/20 2026-03-31T17:45:12.709 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : libpmemobj-1.12.1-1.el9.x86_64 17/20 2026-03-31T17:45:12.711 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : boost-program-options-1.75.0-13.el9.x86_64 18/20 2026-03-31T17:45:12.713 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : librabbitmq-0.11.0-7.el9.x86_64 19/20 2026-03-31T17:45:12.716 INFO:teuthology.orchestra.run.vm06.stdout: Erasing : librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-31T17:45:12.726 INFO:teuthology.orchestra.run.vm07.stdout: Erasing : librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Running scriptlet: librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 1/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 2/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 3/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 4/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 5/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 6/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 7/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 8/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 9/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 11/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 12/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 13/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 14/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 15/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 16/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 17/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 18/20 2026-03-31T17:45:12.739 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : re2-1:20211101-20.el9.x86_64 19/20 2026-03-31T17:45:12.783 INFO:teuthology.orchestra.run.vm06.stdout: Running scriptlet: librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-31T17:45:12.783 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 1/20 2026-03-31T17:45:12.783 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 2/20 2026-03-31T17:45:12.783 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 3/20 2026-03-31T17:45:12.783 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 4/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 5/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 6/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 7/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 8/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 9/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 11/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 12/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 13/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 14/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 15/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 16/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 17/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 18/20 2026-03-31T17:45:12.784 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : re2-1:20211101-20.el9.x86_64 19/20 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 20/20 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout:Removed: 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: re2-1:20211101-20.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout: 2026-03-31T17:45:12.788 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Running scriptlet: librdkafka-1.6.1-102.el9.x86_64 20/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 1/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 2/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 3/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 4/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 5/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 6/20 2026-03-31T17:45:12.802 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librados2-2:20.2.0-721.g5bb32787.el9.x86_64 7/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 8/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 9/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 10/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 11/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 12/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 13/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 14/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 15/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 16/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 17/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 18/20 2026-03-31T17:45:12.803 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : re2-1:20211101-20.el9.x86_64 19/20 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 20/20 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout:Removed: 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-31T17:45:12.831 INFO:teuthology.orchestra.run.vm06.stdout: python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: re2-1:20211101-20.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout: 2026-03-31T17:45:12.832 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:12.855 INFO:teuthology.orchestra.run.vm07.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 20/20 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout:Removed: 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: libarrow-9.0.0-15.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: libnbd-1.20.3-4.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: librados2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: librbd1-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: librgw2-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: python3-rados-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: python3-rbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: python3-rgw-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: qemu-kvm-block-rbd-17:10.1.0-16.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: rbd-fuse-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: rbd-nbd-2:20.2.0-721.g5bb32787.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: re2-1:20211101-20.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: thrift-0.15.0-4.el9.x86_64 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout: 2026-03-31T17:45:12.856 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:12.975 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: librbd1 2026-03-31T17:45:12.975 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:12.977 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:12.977 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:12.977 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.008 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: librbd1 2026-03-31T17:45:13.008 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.011 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.011 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.011 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:13.029 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: librbd1 2026-03-31T17:45:13.029 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:13.031 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:13.032 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:13.032 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:13.159 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-rados 2026-03-31T17:45:13.159 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:13.161 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:13.162 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:13.162 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.176 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: python3-rados 2026-03-31T17:45:13.177 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.179 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.179 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.180 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:13.196 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: python3-rados 2026-03-31T17:45:13.197 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:13.198 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:13.199 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:13.199 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:13.319 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-rgw 2026-03-31T17:45:13.319 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:13.321 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:13.322 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:13.322 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.338 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: python3-rgw 2026-03-31T17:45:13.338 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.340 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.341 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.341 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:13.357 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: python3-rgw 2026-03-31T17:45:13.357 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:13.359 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:13.360 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:13.360 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:13.480 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-cephfs 2026-03-31T17:45:13.480 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:13.482 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:13.483 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:13.483 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.499 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: python3-cephfs 2026-03-31T17:45:13.499 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.501 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.501 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.502 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:13.517 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: python3-cephfs 2026-03-31T17:45:13.517 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:13.519 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:13.520 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:13.520 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:13.643 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: python3-rbd 2026-03-31T17:45:13.643 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:13.645 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:13.646 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:13.646 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.664 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: python3-rbd 2026-03-31T17:45:13.664 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.666 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.667 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.667 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:13.680 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: python3-rbd 2026-03-31T17:45:13.680 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:13.682 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:13.682 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:13.682 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:13.801 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: rbd-fuse 2026-03-31T17:45:13.801 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:13.803 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:13.804 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:13.804 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.823 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: rbd-fuse 2026-03-31T17:45:13.823 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.826 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.826 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.826 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:13.839 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: rbd-fuse 2026-03-31T17:45:13.839 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:13.842 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:13.842 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:13.842 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:13.961 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: rbd-mirror 2026-03-31T17:45:13.961 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:13.963 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:13.964 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:13.964 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:13.983 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: rbd-mirror 2026-03-31T17:45:13.983 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:13.985 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:13.986 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:13.986 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:14.001 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: rbd-mirror 2026-03-31T17:45:14.001 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:14.003 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:14.003 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:14.003 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:14.121 INFO:teuthology.orchestra.run.vm02.stdout:No match for argument: rbd-nbd 2026-03-31T17:45:14.121 INFO:teuthology.orchestra.run.vm02.stderr:No packages marked for removal. 2026-03-31T17:45:14.123 INFO:teuthology.orchestra.run.vm02.stdout:Dependencies resolved. 2026-03-31T17:45:14.124 INFO:teuthology.orchestra.run.vm02.stdout:Nothing to do. 2026-03-31T17:45:14.124 INFO:teuthology.orchestra.run.vm02.stdout:Complete! 2026-03-31T17:45:14.142 INFO:teuthology.orchestra.run.vm06.stdout:No match for argument: rbd-nbd 2026-03-31T17:45:14.142 INFO:teuthology.orchestra.run.vm06.stderr:No packages marked for removal. 2026-03-31T17:45:14.144 INFO:teuthology.orchestra.run.vm06.stdout:Dependencies resolved. 2026-03-31T17:45:14.145 INFO:teuthology.orchestra.run.vm06.stdout:Nothing to do. 2026-03-31T17:45:14.145 INFO:teuthology.orchestra.run.vm06.stdout:Complete! 2026-03-31T17:45:14.145 DEBUG:teuthology.orchestra.run.vm02:> sudo yum clean all 2026-03-31T17:45:14.160 INFO:teuthology.orchestra.run.vm07.stdout:No match for argument: rbd-nbd 2026-03-31T17:45:14.160 INFO:teuthology.orchestra.run.vm07.stderr:No packages marked for removal. 2026-03-31T17:45:14.162 INFO:teuthology.orchestra.run.vm07.stdout:Dependencies resolved. 2026-03-31T17:45:14.163 INFO:teuthology.orchestra.run.vm07.stdout:Nothing to do. 2026-03-31T17:45:14.163 INFO:teuthology.orchestra.run.vm07.stdout:Complete! 2026-03-31T17:45:14.166 DEBUG:teuthology.orchestra.run.vm06:> sudo yum clean all 2026-03-31T17:45:14.184 DEBUG:teuthology.orchestra.run.vm07:> sudo yum clean all 2026-03-31T17:45:14.266 INFO:teuthology.orchestra.run.vm02.stdout:56 files removed 2026-03-31T17:45:14.288 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-31T17:45:14.288 INFO:teuthology.orchestra.run.vm06.stdout:56 files removed 2026-03-31T17:45:14.307 DEBUG:teuthology.orchestra.run.vm06:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-31T17:45:14.308 INFO:teuthology.orchestra.run.vm07.stdout:56 files removed 2026-03-31T17:45:14.313 DEBUG:teuthology.orchestra.run.vm02:> sudo yum clean expire-cache 2026-03-31T17:45:14.327 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-31T17:45:14.330 DEBUG:teuthology.orchestra.run.vm06:> sudo yum clean expire-cache 2026-03-31T17:45:14.348 DEBUG:teuthology.orchestra.run.vm07:> sudo yum clean expire-cache 2026-03-31T17:45:14.460 INFO:teuthology.orchestra.run.vm02.stdout:Cache was expired 2026-03-31T17:45:14.461 INFO:teuthology.orchestra.run.vm02.stdout:0 files removed 2026-03-31T17:45:14.474 INFO:teuthology.orchestra.run.vm06.stdout:Cache was expired 2026-03-31T17:45:14.474 INFO:teuthology.orchestra.run.vm06.stdout:0 files removed 2026-03-31T17:45:14.478 DEBUG:teuthology.parallel:result is None 2026-03-31T17:45:14.491 DEBUG:teuthology.parallel:result is None 2026-03-31T17:45:14.497 INFO:teuthology.orchestra.run.vm07.stdout:Cache was expired 2026-03-31T17:45:14.497 INFO:teuthology.orchestra.run.vm07.stdout:0 files removed 2026-03-31T17:45:14.512 DEBUG:teuthology.parallel:result is None 2026-03-31T17:45:14.513 INFO:teuthology.task.install:Removing ceph sources lists on ubuntu@vm02.local 2026-03-31T17:45:14.513 INFO:teuthology.task.install:Removing ceph sources lists on ubuntu@vm06.local 2026-03-31T17:45:14.513 INFO:teuthology.task.install:Removing ceph sources lists on ubuntu@vm07.local 2026-03-31T17:45:14.513 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-31T17:45:14.513 DEBUG:teuthology.orchestra.run.vm06:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-31T17:45:14.513 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f /etc/yum.repos.d/ceph.repo 2026-03-31T17:45:14.536 DEBUG:teuthology.orchestra.run.vm02:> sudo mv -f /etc/yum/pluginconf.d/priorities.conf.orig /etc/yum/pluginconf.d/priorities.conf 2026-03-31T17:45:14.536 DEBUG:teuthology.orchestra.run.vm06:> sudo mv -f /etc/yum/pluginconf.d/priorities.conf.orig /etc/yum/pluginconf.d/priorities.conf 2026-03-31T17:45:14.537 DEBUG:teuthology.orchestra.run.vm07:> sudo mv -f /etc/yum/pluginconf.d/priorities.conf.orig /etc/yum/pluginconf.d/priorities.conf 2026-03-31T17:45:14.598 DEBUG:teuthology.parallel:result is None 2026-03-31T17:45:14.598 DEBUG:teuthology.parallel:result is None 2026-03-31T17:45:14.601 DEBUG:teuthology.parallel:result is None 2026-03-31T17:45:14.601 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-03-31T17:45:14.603 INFO:teuthology.task.clock:Checking final clock skew... 2026-03-31T17:45:14.603 DEBUG:teuthology.orchestra.run.vm02:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-31T17:45:14.640 DEBUG:teuthology.orchestra.run.vm06:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-31T17:45:14.641 DEBUG:teuthology.orchestra.run.vm07:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-03-31T17:45:14.652 INFO:teuthology.orchestra.run.vm02.stderr:bash: line 1: ntpq: command not found 2026-03-31T17:45:14.653 INFO:teuthology.orchestra.run.vm06.stderr:bash: line 1: ntpq: command not found 2026-03-31T17:45:14.654 INFO:teuthology.orchestra.run.vm07.stderr:bash: line 1: ntpq: command not found 2026-03-31T17:45:14.655 INFO:teuthology.orchestra.run.vm02.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-31T17:45:14.655 INFO:teuthology.orchestra.run.vm02.stdout:=============================================================================== 2026-03-31T17:45:14.655 INFO:teuthology.orchestra.run.vm02.stdout:^- 217.160.19.219 2 6 377 3 +3002us[+3002us] +/- 87ms 2026-03-31T17:45:14.655 INFO:teuthology.orchestra.run.vm02.stdout:^+ 185.13.148.71 2 6 377 2 -533us[ -533us] +/- 18ms 2026-03-31T17:45:14.655 INFO:teuthology.orchestra.run.vm02.stdout:^* ntp1.rrze.uni-erlangen.de 1 6 377 5 +518us[ +539us] +/- 14ms 2026-03-31T17:45:14.655 INFO:teuthology.orchestra.run.vm02.stdout:^- ip217-154-182-60.pbiaas.> 2 6 377 4 +4843us[+4843us] +/- 68ms 2026-03-31T17:45:14.656 INFO:teuthology.orchestra.run.vm06.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-31T17:45:14.656 INFO:teuthology.orchestra.run.vm06.stdout:=============================================================================== 2026-03-31T17:45:14.656 INFO:teuthology.orchestra.run.vm06.stdout:^+ 185.13.148.71 2 6 377 3 -694us[ -694us] +/- 18ms 2026-03-31T17:45:14.656 INFO:teuthology.orchestra.run.vm06.stdout:^* ntp1.rrze.uni-erlangen.de 1 6 377 6 +571us[ +607us] +/- 14ms 2026-03-31T17:45:14.656 INFO:teuthology.orchestra.run.vm06.stdout:^- ip217-154-182-60.pbiaas.> 2 6 377 3 +5054us[+5054us] +/- 68ms 2026-03-31T17:45:14.656 INFO:teuthology.orchestra.run.vm06.stdout:^- 217.160.19.219 2 6 377 4 +2980us[+2980us] +/- 87ms 2026-03-31T17:45:14.657 INFO:teuthology.orchestra.run.vm07.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-03-31T17:45:14.657 INFO:teuthology.orchestra.run.vm07.stdout:=============================================================================== 2026-03-31T17:45:14.657 INFO:teuthology.orchestra.run.vm07.stdout:^- 217.160.19.219 2 6 377 4 +2924us[+2936us] +/- 87ms 2026-03-31T17:45:14.657 INFO:teuthology.orchestra.run.vm07.stdout:^+ 185.13.148.71 2 6 377 3 -648us[ -636us] +/- 18ms 2026-03-31T17:45:14.657 INFO:teuthology.orchestra.run.vm07.stdout:^* ntp1.rrze.uni-erlangen.de 1 6 277 1 +552us[ +563us] +/- 14ms 2026-03-31T17:45:14.657 INFO:teuthology.orchestra.run.vm07.stdout:^- ip217-154-182-60.pbiaas.> 2 6 377 3 +5044us[+5056us] +/- 68ms 2026-03-31T17:45:14.657 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-03-31T17:45:14.660 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-03-31T17:45:14.660 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-03-31T17:45:14.662 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-03-31T17:45:14.664 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-03-31T17:45:14.666 INFO:teuthology.task.internal:Duration was 455.403328 seconds 2026-03-31T17:45:14.666 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-03-31T17:45:14.668 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-03-31T17:45:14.668 DEBUG:teuthology.orchestra.run.vm02:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-31T17:45:14.698 DEBUG:teuthology.orchestra.run.vm06:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-31T17:45:14.699 DEBUG:teuthology.orchestra.run.vm07:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-03-31T17:45:14.731 INFO:teuthology.orchestra.run.vm02.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-31T17:45:14.732 INFO:teuthology.orchestra.run.vm06.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-31T17:45:14.735 INFO:teuthology.orchestra.run.vm07.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-03-31T17:45:15.057 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-03-31T17:45:15.057 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm02.local 2026-03-31T17:45:15.057 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-31T17:45:15.074 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm06.local 2026-03-31T17:45:15.075 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:45:15.092 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@vm07.local 2026-03-31T17:45:15.093 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:45:15.115 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-03-31T17:45:15.115 DEBUG:teuthology.orchestra.run.vm02:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-31T17:45:15.116 DEBUG:teuthology.orchestra.run.vm06:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-31T17:45:15.135 DEBUG:teuthology.orchestra.run.vm07:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-31T17:45:15.566 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-03-31T17:45:15.566 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-31T17:45:15.567 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:45:15.568 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:45:15.587 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-31T17:45:15.587 INFO:teuthology.orchestra.run.vm02.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-31T17:45:15.587 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: gzip -5 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-31T17:45:15.587 INFO:teuthology.orchestra.run.vm02.stderr: --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-31T17:45:15.587 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-31T17:45:15.589 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-31T17:45:15.589 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-31T17:45:15.589 INFO:teuthology.orchestra.run.vm06.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-31T17:45:15.589 INFO:teuthology.orchestra.run.vm06.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-31T17:45:15.589 INFO:teuthology.orchestra.run.vm06.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-31T17:45:15.590 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-03-31T17:45:15.590 INFO:teuthology.orchestra.run.vm07.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-03-31T17:45:15.591 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0%gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-03-31T17:45:15.591 INFO:teuthology.orchestra.run.vm07.stderr: -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-03-31T17:45:15.591 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-03-31T17:45:15.718 INFO:teuthology.orchestra.run.vm02.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.1% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-31T17:45:15.721 INFO:teuthology.orchestra.run.vm07.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.2% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-31T17:45:15.738 INFO:teuthology.orchestra.run.vm06.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 98.3% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-03-31T17:45:15.740 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-03-31T17:45:15.743 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-03-31T17:45:15.743 DEBUG:teuthology.orchestra.run.vm02:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-31T17:45:15.781 DEBUG:teuthology.orchestra.run.vm06:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-31T17:45:15.802 DEBUG:teuthology.orchestra.run.vm07:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-03-31T17:45:15.823 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-03-31T17:45:15.826 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-31T17:45:15.828 DEBUG:teuthology.orchestra.run.vm06:> 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-31T17:45:15.845 DEBUG:teuthology.orchestra.run.vm07:> 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-31T17:45:15.849 INFO:teuthology.orchestra.run.vm02.stdout:kernel.core_pattern = core 2026-03-31T17:45:15.867 INFO:teuthology.orchestra.run.vm06.stdout:kernel.core_pattern = core 2026-03-31T17:45:15.885 INFO:teuthology.orchestra.run.vm07.stdout:kernel.core_pattern = core 2026-03-31T17:45:15.899 DEBUG:teuthology.orchestra.run.vm02:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-31T17:45:15.914 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:45:15.914 DEBUG:teuthology.orchestra.run.vm06:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-31T17:45:15.930 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:45:15.930 DEBUG:teuthology.orchestra.run.vm07:> test -e /home/ubuntu/cephtest/archive/coredump 2026-03-31T17:45:15.951 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-03-31T17:45:15.952 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-03-31T17:45:15.954 INFO:teuthology.task.internal:Transferring archived files... 2026-03-31T17:45:15.954 DEBUG:teuthology.misc:Transferring archived files from vm02:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm02 2026-03-31T17:45:15.954 DEBUG:teuthology.orchestra.run.vm02:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-31T17:45:15.979 DEBUG:teuthology.misc:Transferring archived files from vm06:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm06 2026-03-31T17:45:15.979 DEBUG:teuthology.orchestra.run.vm06:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-31T17:45:16.002 DEBUG:teuthology.misc:Transferring archived files from vm07:/home/ubuntu/cephtest/archive to /archive/kyr-2026-03-31_11:18:10-rados-tentacle-none-default-vps/4326/remote/vm07 2026-03-31T17:45:16.002 DEBUG:teuthology.orchestra.run.vm07:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-03-31T17:45:16.026 INFO:teuthology.task.internal:Removing archive directory... 2026-03-31T17:45:16.026 DEBUG:teuthology.orchestra.run.vm02:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-31T17:45:16.027 DEBUG:teuthology.orchestra.run.vm06:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-31T17:45:16.044 DEBUG:teuthology.orchestra.run.vm07:> rm -rf -- /home/ubuntu/cephtest/archive 2026-03-31T17:45:16.079 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-03-31T17:45:16.082 INFO:teuthology.task.internal:Not uploading archives. 2026-03-31T17:45:16.082 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-03-31T17:45:16.084 INFO:teuthology.task.internal:Tidying up after the test... 2026-03-31T17:45:16.084 DEBUG:teuthology.orchestra.run.vm02:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-31T17:45:16.085 DEBUG:teuthology.orchestra.run.vm06:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-31T17:45:16.098 DEBUG:teuthology.orchestra.run.vm07:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-03-31T17:45:16.098 INFO:teuthology.orchestra.run.vm02.stdout: 8532146 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 31 17:45 /home/ubuntu/cephtest 2026-03-31T17:45:16.111 INFO:teuthology.orchestra.run.vm06.stdout: 8532145 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 31 17:45 /home/ubuntu/cephtest 2026-03-31T17:45:16.134 INFO:teuthology.orchestra.run.vm07.stdout: 8532146 0 drwxr-xr-x 2 ubuntu ubuntu 6 Mar 31 17:45 /home/ubuntu/cephtest 2026-03-31T17:45:16.135 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-03-31T17:45:16.140 INFO:teuthology.run:Summary data: description: rados/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 455.4033281803131 flavor: default owner: kyr success: true 2026-03-31T17:45:16.140 DEBUG:teuthology.report:Pushing job info to http://localhost:8080 2026-03-31T17:45:16.157 INFO:teuthology.run:pass