2026-02-20T22:55:52.938 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-20T22:55:52.953 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-20T22:55:53.030 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676 branch: wip-pdonnell-testing-20260219.182737-tentacle description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: yweinste@redhat.com first_in_suite: false flavor: default job_id: '61676' kernel: branch: distro kdb: true sha1: distro last_in_suite: false machine_type: trial name: yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: wip-pdonnell-testing-20260219.182737-tentacle 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 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: f7870454149f22574086dd2ff55d050585136531 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: f7870454149f22574086dd2ff55d050585136531 selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: wip-pdonnell-testing-20260219.182737-tentacle sha1: f7870454149f22574086dd2ff55d050585136531 owner: scheduled_yuriw@soko04.front.sepia.ceph.com priority: 69 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 2599 sha1: f7870454149f22574086dd2ff55d050585136531 sleep_before_teardown: 0 subset: 111/120000 suite: orch suite_branch: wip-pdonnell-testing-20260219.182737-tentacle suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: f7870454149f22574086dd2ff55d050585136531 targets: trial004.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHPzu5m/yMYJWsQ6xa6ZjGC9VdRuyx69X9IxPo5WDomRttzfoO5ofaHVpQPW9AX53s6WSuTtujPkdv3SoBcInn4= trial064.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNaw4bCtCFt2bNaaPwrDwoh8zND0K8gEXK8OHXVbZcMvVEmF7mmrA49wq6jb5awzcRfl64qZzImyyGo6krvofg0= trial197.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCG2nHns+lgr8raq8dcXxH5KiA+XgRSp+j9hVoI16C8Iv+g3DK+fNQUNDsKHAfzUA9im/f6U0hkXXEwjUo4vdyY= tasks: - pexec: all: - sudo dnf remove nvme-cli -y - sudo dnf install nvmetcli nvme-cli -y - install: null - cephadm: null - cephadm.shell: host.a: - "set -ex\nHOSTNAMES=$(ceph orch host ls --format json | jq -r '.[] | .hostname')\n\ for host in $HOSTNAMES; do\n # find the hostname for \"host.c\" which will\ \ have no mgr\n HAS_MGRS=$(ceph orch ps --hostname ${host} --format json |\ \ jq 'any(.daemon_type == \"mgr\")')\n if [ \"$HAS_MGRS\" == \"false\" ]; then\n\ \ HOST_C=\"${host}\"\n fi\ndone\n# One last thing to worry about before\ \ draining the host\n# is that the teuthology test tends to put the explicit\n\ # hostnames in the placement for the mon service.\n# We want to make sure we\ \ can drain without providing\n# --force and there is a check for the host being\ \ removed\n# being listed explicitly in the placements. Therefore,\n# we should\ \ remove it from the mon placement.\nceph orch ls mon --export > mon.yaml\n\ sed /\"$HOST_C\"/d mon.yaml > mon_adjusted.yaml\nceph orch apply -i mon_adjusted.yaml\n\ # now drain that host\nceph orch host drain $HOST_C --zap-osd-devices\n# wait\ \ for drain to complete\nHOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\n\ while [ \"$HOST_C_DAEMONS\" != \"No daemons reported\" ]; do\n sleep 15\n \ \ HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C)\ndone\n# we want to check\ \ the ability to remove the host from\n# the CRUSH map, so we should first verify\ \ the host is in\n# the CRUSH map.\nceph osd getcrushmap -o compiled-crushmap\n\ crushtool -d compiled-crushmap -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\n\ if ! grep -q \"$HOST_C\" <<< \"$CRUSH_MAP\"; then\n printf \"Expected to see\ \ $HOST_C in CRUSH map. Saw:\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n# If the drain\ \ was successful, we should be able to remove the\n# host without force with\ \ no issues. If there are still daemons\n# we will get a response telling us\ \ to drain the host and a\n# non-zero return code\nceph orch host rm $HOST_C\ \ --rm-crush-entry\n# verify we've successfully removed the host from the CRUSH\ \ map\nsleep 30\nceph osd getcrushmap -o compiled-crushmap\ncrushtool -d compiled-crushmap\ \ -o crushmap.txt\nCRUSH_MAP=$(cat crushmap.txt)\nif grep -q \"$HOST_C\" <<<\ \ \"$CRUSH_MAP\"; then\n printf \"Saw $HOST_C in CRUSH map after it should\ \ have been removed.\\n\\n$CRUSH_MAP\"\n exit 1\nfi\n" teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: fa17720d0088c3ac28e473468bfc79eeaff5cd38 timestamp: 2026-02-20_16:19:15 tube: trial user: yuriw verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.1540699 2026-02-20T22:55:53.030 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa; will attempt to use it 2026-02-20T22:55:53.031 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_f7870454149f22574086dd2ff55d050585136531/qa/tasks 2026-02-20T22:55:53.031 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-20T22:55:53.032 INFO:teuthology.task.internal:Checking packages... 2026-02-20T22:55:53.032 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash 'f7870454149f22574086dd2ff55d050585136531' 2026-02-20T22:55:53.032 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-20T22:55:53.033 INFO:teuthology.packaging:ref: None 2026-02-20T22:55:53.033 INFO:teuthology.packaging:tag: None 2026-02-20T22:55:53.033 INFO:teuthology.packaging:branch: wip-pdonnell-testing-20260219.182737-tentacle 2026-02-20T22:55:53.033 INFO:teuthology.packaging:sha1: f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:55:53.033 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=wip-pdonnell-testing-20260219.182737-tentacle 2026-02-20T22:55:53.160 INFO:teuthology.task.internal:Found packages for ceph version 20.2.0-677.gf7870454 2026-02-20T22:55:53.161 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-20T22:55:53.176 INFO:teuthology.task.internal:no buildpackages task found 2026-02-20T22:55:53.176 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-20T22:55:53.186 INFO:teuthology.task.internal:Saving configuration 2026-02-20T22:55:53.197 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-20T22:55:53.208 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-20T22:55:53.284 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial004.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 22:52:22.052166', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHPzu5m/yMYJWsQ6xa6ZjGC9VdRuyx69X9IxPo5WDomRttzfoO5ofaHVpQPW9AX53s6WSuTtujPkdv3SoBcInn4='} 2026-02-20T22:55:53.340 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial064.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 22:52:22.052513', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBNaw4bCtCFt2bNaaPwrDwoh8zND0K8gEXK8OHXVbZcMvVEmF7mmrA49wq6jb5awzcRfl64qZzImyyGo6krvofg0='} 2026-02-20T22:55:53.400 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial197.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676', 'up': True, 'machine_type': 'trial', 'is_vm': False, 'vm_host': None, 'os_type': 'centos', 'os_version': '9.stream', 'arch': 'x86_64', 'locked': True, 'locked_since': '2026-02-20 22:52:22.051627', 'locked_by': 'scheduled_yuriw@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBCG2nHns+lgr8raq8dcXxH5KiA+XgRSp+j9hVoI16C8Iv+g3DK+fNQUNDsKHAfzUA9im/f6U0hkXXEwjUo4vdyY='} 2026-02-20T22:55:53.400 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-20T22:55:53.412 INFO:teuthology.task.internal:roles: ubuntu@trial004.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-02-20T22:55:53.412 INFO:teuthology.task.internal:roles: ubuntu@trial064.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-02-20T22:55:53.412 INFO:teuthology.task.internal:roles: ubuntu@trial197.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-02-20T22:55:53.412 INFO:teuthology.run_tasks:Running task console_log... 2026-02-20T22:55:53.605 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7655744edc60>, signals=[15]) 2026-02-20T22:55:53.605 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-20T22:55:53.615 INFO:teuthology.task.internal:Opening connections... 2026-02-20T22:55:53.615 DEBUG:teuthology.task.internal:connecting to ubuntu@trial004.front.sepia.ceph.com 2026-02-20T22:55:53.616 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial004.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:55:53.679 DEBUG:teuthology.task.internal:connecting to ubuntu@trial064.front.sepia.ceph.com 2026-02-20T22:55:53.679 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial064.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:55:53.742 DEBUG:teuthology.task.internal:connecting to ubuntu@trial197.front.sepia.ceph.com 2026-02-20T22:55:53.742 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial197.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:55:53.804 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-20T22:55:53.816 DEBUG:teuthology.orchestra.run.trial004:> uname -m 2026-02-20T22:55:53.832 INFO:teuthology.orchestra.run.trial004.stdout:x86_64 2026-02-20T22:55:53.832 DEBUG:teuthology.orchestra.run.trial004:> cat /etc/os-release 2026-02-20T22:55:53.888 INFO:teuthology.orchestra.run.trial004.stdout:NAME="CentOS Stream" 2026-02-20T22:55:53.888 INFO:teuthology.orchestra.run.trial004.stdout:VERSION="9" 2026-02-20T22:55:53.888 INFO:teuthology.orchestra.run.trial004.stdout:ID="centos" 2026-02-20T22:55:53.888 INFO:teuthology.orchestra.run.trial004.stdout:ID_LIKE="rhel fedora" 2026-02-20T22:55:53.888 INFO:teuthology.orchestra.run.trial004.stdout:VERSION_ID="9" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:PLATFORM_ID="platform:el9" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:ANSI_COLOR="0;31" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:LOGO="fedora-logo-icon" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:HOME_URL="https://centos.org/" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T22:55:53.889 INFO:teuthology.orchestra.run.trial004.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T22:55:53.889 INFO:teuthology.lock.ops:Updating trial004.front.sepia.ceph.com on lock server 2026-02-20T22:55:53.962 DEBUG:teuthology.orchestra.run.trial064:> uname -m 2026-02-20T22:55:53.978 INFO:teuthology.orchestra.run.trial064.stdout:x86_64 2026-02-20T22:55:53.978 DEBUG:teuthology.orchestra.run.trial064:> cat /etc/os-release 2026-02-20T22:55:54.034 INFO:teuthology.orchestra.run.trial064.stdout:NAME="CentOS Stream" 2026-02-20T22:55:54.034 INFO:teuthology.orchestra.run.trial064.stdout:VERSION="9" 2026-02-20T22:55:54.034 INFO:teuthology.orchestra.run.trial064.stdout:ID="centos" 2026-02-20T22:55:54.034 INFO:teuthology.orchestra.run.trial064.stdout:ID_LIKE="rhel fedora" 2026-02-20T22:55:54.034 INFO:teuthology.orchestra.run.trial064.stdout:VERSION_ID="9" 2026-02-20T22:55:54.034 INFO:teuthology.orchestra.run.trial064.stdout:PLATFORM_ID="platform:el9" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:ANSI_COLOR="0;31" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:LOGO="fedora-logo-icon" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:HOME_URL="https://centos.org/" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T22:55:54.035 INFO:teuthology.orchestra.run.trial064.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T22:55:54.035 INFO:teuthology.lock.ops:Updating trial064.front.sepia.ceph.com on lock server 2026-02-20T22:55:54.117 DEBUG:teuthology.orchestra.run.trial197:> uname -m 2026-02-20T22:55:54.133 INFO:teuthology.orchestra.run.trial197.stdout:x86_64 2026-02-20T22:55:54.133 DEBUG:teuthology.orchestra.run.trial197:> cat /etc/os-release 2026-02-20T22:55:54.189 INFO:teuthology.orchestra.run.trial197.stdout:NAME="CentOS Stream" 2026-02-20T22:55:54.189 INFO:teuthology.orchestra.run.trial197.stdout:VERSION="9" 2026-02-20T22:55:54.189 INFO:teuthology.orchestra.run.trial197.stdout:ID="centos" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:ID_LIKE="rhel fedora" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:VERSION_ID="9" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:PLATFORM_ID="platform:el9" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:ANSI_COLOR="0;31" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:LOGO="fedora-logo-icon" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:HOME_URL="https://centos.org/" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-20T22:55:54.190 INFO:teuthology.orchestra.run.trial197.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-20T22:55:54.190 INFO:teuthology.lock.ops:Updating trial197.front.sepia.ceph.com on lock server 2026-02-20T22:55:54.251 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-20T22:55:54.263 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-20T22:55:54.274 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-20T22:55:54.274 DEBUG:teuthology.orchestra.run.trial004:> test '!' -e /home/ubuntu/cephtest 2026-02-20T22:55:54.275 DEBUG:teuthology.orchestra.run.trial064:> test '!' -e /home/ubuntu/cephtest 2026-02-20T22:55:54.277 DEBUG:teuthology.orchestra.run.trial197:> test '!' -e /home/ubuntu/cephtest 2026-02-20T22:55:54.292 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-20T22:55:54.304 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-20T22:55:54.304 DEBUG:teuthology.orchestra.run.trial004:> test -z $(ls -A /var/lib/ceph) 2026-02-20T22:55:54.330 DEBUG:teuthology.orchestra.run.trial064:> test -z $(ls -A /var/lib/ceph) 2026-02-20T22:55:54.332 DEBUG:teuthology.orchestra.run.trial197:> test -z $(ls -A /var/lib/ceph) 2026-02-20T22:55:54.349 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-20T22:55:54.551 INFO:teuthology.run_tasks:Running task kernel... 2026-02-20T22:55:54.570 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': True, 'sha1': 'distro'} 2026-02-20T22:55:54.570 INFO:teuthology.task.kernel:config {'host.a': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}, 'host.b': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}, 'host.c': {'branch': 'distro', 'kdb': True, 'sha1': 'distro'}}, timeout 300 2026-02-20T22:55:54.570 DEBUG:teuthology.orchestra.run.trial004:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T22:55:54.570 DEBUG:teuthology.orchestra.run.trial064:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T22:55:54.570 DEBUG:teuthology.orchestra.run.trial197:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-20T22:55:54.584 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:55:54.585 DEBUG:teuthology.orchestra.run.trial064:> uname -r 2026-02-20T22:55:54.585 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:55:54.585 DEBUG:teuthology.orchestra.run.trial004:> uname -r 2026-02-20T22:55:54.585 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:55:54.586 DEBUG:teuthology.orchestra.run.trial197:> uname -r 2026-02-20T22:55:54.640 INFO:teuthology.orchestra.run.trial004.stdout:5.14.0-681.el9.x86_64 2026-02-20T22:55:54.640 INFO:teuthology.task.kernel:Running kernel on trial004: 5.14.0-681.el9.x86_64 2026-02-20T22:55:54.641 DEBUG:teuthology.orchestra.run.trial004:> sudo yum install -y kernel 2026-02-20T22:55:54.641 INFO:teuthology.orchestra.run.trial064.stdout:5.14.0-681.el9.x86_64 2026-02-20T22:55:54.641 INFO:teuthology.task.kernel:Running kernel on trial064: 5.14.0-681.el9.x86_64 2026-02-20T22:55:54.641 DEBUG:teuthology.orchestra.run.trial064:> sudo yum install -y kernel 2026-02-20T22:55:54.641 INFO:teuthology.orchestra.run.trial197.stdout:5.14.0-681.el9.x86_64 2026-02-20T22:55:54.641 INFO:teuthology.task.kernel:Running kernel on trial197: 5.14.0-681.el9.x86_64 2026-02-20T22:55:54.642 DEBUG:teuthology.orchestra.run.trial197:> sudo yum install -y kernel 2026-02-20T22:55:55.325 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - BaseOS 30 MB/s | 8.9 MB 00:00 2026-02-20T22:55:55.756 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - BaseOS 12 MB/s | 8.9 MB 00:00 2026-02-20T22:55:58.239 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - AppStream 14 MB/s | 27 MB 00:01 2026-02-20T22:55:58.364 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-20T22:56:01.790 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - CRB 7.3 MB/s | 7.8 MB 00:01 2026-02-20T22:56:02.620 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - Extras packages 188 kB/s | 20 kB 00:00 2026-02-20T22:56:03.045 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - BaseOS 1.1 MB/s | 8.9 MB 00:08 2026-02-20T22:56:03.338 INFO:teuthology.orchestra.run.trial064.stdout:Extra Packages for Enterprise Linux 31 MB/s | 20 MB 00:00 2026-02-20T22:56:06.476 INFO:teuthology.orchestra.run.trial064.stdout:lab-extras 1.3 MB/s | 50 kB 00:00 2026-02-20T22:56:06.711 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - AppStream 8.5 MB/s | 27 MB 00:03 2026-02-20T22:56:06.893 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - CRB 1.2 MB/s | 7.8 MB 00:06 2026-02-20T22:56:07.495 INFO:teuthology.orchestra.run.trial064.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T22:56:07.495 INFO:teuthology.orchestra.run.trial064.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T22:56:07.514 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T22:56:07.515 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T22:56:07.515 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T22:56:07.538 DEBUG:teuthology.orchestra.run.trial064:> echo no | sudo yum reinstall kernel || true 2026-02-20T22:56:07.837 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:01 ago on Fri 20 Feb 2026 10:56:06 PM UTC. 2026-02-20T22:56:07.918 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T22:56:07.919 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout: Package Architecture Version Repository Size 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout:Reinstalling: 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 803 k 2026-02-20T22:56:07.920 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 0 2026-02-20T22:56:07.921 INFO:teuthology.orchestra.run.trial064.stderr:Operation aborted. 2026-02-20T22:56:07.939 INFO:teuthology.orchestra.run.trial064.stdout:Is this ok [y/N]: 2026-02-20T22:56:07.940 DEBUG:teuthology.orchestra.run.trial064:> sudo yum reinstall -y kernel || true 2026-02-20T22:56:08.240 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 10:56:06 PM UTC. 2026-02-20T22:56:08.320 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout: Package Architecture Version Repository Size 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:Reinstalling: 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 803 k 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 0 2026-02-20T22:56:08.321 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T22:56:08.395 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - Extras packages 26 kB/s | 20 kB 00:00 2026-02-20T22:56:08.575 INFO:teuthology.orchestra.run.trial064.stdout:kernel-5.14.0-681.el9.x86_64.rpm 4.9 MB/s | 803 kB 00:00 2026-02-20T22:56:08.575 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:56:08.575 INFO:teuthology.orchestra.run.trial064.stdout:Total 3.1 MB/s | 803 kB 00:00 2026-02-20T22:56:08.586 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T22:56:08.619 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T22:56:08.619 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T22:56:08.624 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T22:56:08.624 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T22:56:08.648 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T22:56:08.652 INFO:teuthology.orchestra.run.trial064.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:56:08.652 INFO:teuthology.orchestra.run.trial064.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:08.766 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:08.766 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:56:08.821 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:08.821 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:56:08.821 INFO:teuthology.orchestra.run.trial064.stdout:Reinstalled: 2026-02-20T22:56:08.821 INFO:teuthology.orchestra.run.trial064.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T22:56:08.821 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:56:08.822 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T22:56:08.848 DEBUG:teuthology.orchestra.run.trial064:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T22:56:08.873 INFO:teuthology.orchestra.run.trial064.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T22:56:08.874 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T22:56:08.874 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T22:56:08.874 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-20T22:56:08.874 DEBUG:teuthology.orchestra.run.trial064:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T22:56:08.938 INFO:teuthology.orchestra.run.trial064.stdout:ttyS1 2026-02-20T22:56:08.965 DEBUG:teuthology.parallel:result is None 2026-02-20T22:56:09.165 INFO:teuthology.orchestra.run.trial004.stdout:Extra Packages for Enterprise Linux 29 MB/s | 20 MB 00:00 2026-02-20T22:56:09.942 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - CRB 8.9 MB/s | 7.8 MB 00:00 2026-02-20T22:56:11.834 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - Extras packages 17 kB/s | 20 kB 00:01 2026-02-20T22:56:12.349 INFO:teuthology.orchestra.run.trial004.stdout:lab-extras 2.5 MB/s | 50 kB 00:00 2026-02-20T22:56:13.045 INFO:teuthology.orchestra.run.trial197.stdout:Extra Packages for Enterprise Linux 18 MB/s | 20 MB 00:01 2026-02-20T22:56:13.356 INFO:teuthology.orchestra.run.trial004.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T22:56:13.357 INFO:teuthology.orchestra.run.trial004.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T22:56:13.375 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:56:13.376 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T22:56:13.376 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T22:56:13.399 DEBUG:teuthology.orchestra.run.trial004:> echo no | sudo yum reinstall kernel || true 2026-02-20T22:56:13.700 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:01 ago on Fri 20 Feb 2026 10:56:12 PM UTC. 2026-02-20T22:56:13.780 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:56:13.781 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:56:13.781 INFO:teuthology.orchestra.run.trial004.stdout: Package Architecture Version Repository Size 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout:Reinstalling: 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 803 k 2026-02-20T22:56:13.782 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 0 2026-02-20T22:56:13.783 INFO:teuthology.orchestra.run.trial004.stderr:Operation aborted. 2026-02-20T22:56:13.800 INFO:teuthology.orchestra.run.trial004.stdout:Is this ok [y/N]: 2026-02-20T22:56:13.801 DEBUG:teuthology.orchestra.run.trial004:> sudo yum reinstall -y kernel || true 2026-02-20T22:56:14.099 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:02 ago on Fri 20 Feb 2026 10:56:12 PM UTC. 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout: Package Architecture Version Repository Size 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout:Reinstalling: 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T22:56:14.179 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:56:14.180 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:56:14.180 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 803 k 2026-02-20T22:56:14.180 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 0 2026-02-20T22:56:14.180 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T22:56:14.297 INFO:teuthology.orchestra.run.trial004.stdout:kernel-5.14.0-681.el9.x86_64.rpm 25 MB/s | 803 kB 00:00 2026-02-20T22:56:14.298 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:56:14.298 INFO:teuthology.orchestra.run.trial004.stdout:Total 6.7 MB/s | 803 kB 00:00 2026-02-20T22:56:14.308 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T22:56:14.343 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T22:56:14.343 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T22:56:14.347 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T22:56:14.347 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T22:56:14.370 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T22:56:14.374 INFO:teuthology.orchestra.run.trial004.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:56:14.374 INFO:teuthology.orchestra.run.trial004.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:14.483 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:14.484 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:56:14.536 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:14.536 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:56:14.536 INFO:teuthology.orchestra.run.trial004.stdout:Reinstalled: 2026-02-20T22:56:14.536 INFO:teuthology.orchestra.run.trial004.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T22:56:14.536 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:56:14.537 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T22:56:14.565 DEBUG:teuthology.orchestra.run.trial004:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T22:56:14.589 INFO:teuthology.orchestra.run.trial004.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T22:56:14.590 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T22:56:14.590 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T22:56:14.590 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-20T22:56:14.590 DEBUG:teuthology.orchestra.run.trial004:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T22:56:14.655 INFO:teuthology.orchestra.run.trial004.stdout:ttyS1 2026-02-20T22:56:14.676 DEBUG:teuthology.parallel:result is None 2026-02-20T22:56:16.171 INFO:teuthology.orchestra.run.trial197.stdout:lab-extras 2.7 MB/s | 50 kB 00:00 2026-02-20T22:56:17.178 INFO:teuthology.orchestra.run.trial197.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-20T22:56:17.179 INFO:teuthology.orchestra.run.trial197.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-20T22:56:17.197 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:56:17.198 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T22:56:17.198 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:56:17.221 DEBUG:teuthology.orchestra.run.trial197:> echo no | sudo yum reinstall kernel || true 2026-02-20T22:56:17.523 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:01 ago on Fri 20 Feb 2026 10:56:16 PM UTC. 2026-02-20T22:56:17.602 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout:Reinstalling: 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:56:17.604 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:56:17.605 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:56:17.605 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 803 k 2026-02-20T22:56:17.605 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 0 2026-02-20T22:56:17.605 INFO:teuthology.orchestra.run.trial197.stderr:Operation aborted. 2026-02-20T22:56:17.624 INFO:teuthology.orchestra.run.trial197.stdout:Is this ok [y/N]: 2026-02-20T22:56:17.624 DEBUG:teuthology.orchestra.run.trial197:> sudo yum reinstall -y kernel || true 2026-02-20T22:56:17.919 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:01 ago on Fri 20 Feb 2026 10:56:16 PM UTC. 2026-02-20T22:56:17.999 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout:Reinstalling: 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:56:18.000 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:56:18.001 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 803 k 2026-02-20T22:56:18.001 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 0 2026-02-20T22:56:18.001 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:56:18.216 INFO:teuthology.orchestra.run.trial197.stdout:kernel-5.14.0-681.el9.x86_64.rpm 5.0 MB/s | 803 kB 00:00 2026-02-20T22:56:18.217 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:56:18.217 INFO:teuthology.orchestra.run.trial197.stdout:Total 3.6 MB/s | 803 kB 00:00 2026-02-20T22:56:18.226 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:56:18.259 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:56:18.259 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:56:18.263 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:56:18.263 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:56:18.287 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:56:18.292 INFO:teuthology.orchestra.run.trial197.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:56:18.292 INFO:teuthology.orchestra.run.trial197.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:18.402 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:18.402 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-20T22:56:18.457 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-20T22:56:18.457 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:56:18.457 INFO:teuthology.orchestra.run.trial197.stdout:Reinstalled: 2026-02-20T22:56:18.457 INFO:teuthology.orchestra.run.trial197.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-20T22:56:18.457 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:56:18.457 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:56:18.483 DEBUG:teuthology.orchestra.run.trial197:> rpm -q kernel | sort -rV | head -n 1 2026-02-20T22:56:18.507 INFO:teuthology.orchestra.run.trial197.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-20T22:56:18.508 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-20T22:56:18.508 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-20T22:56:18.508 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2026-02-20T22:56:18.508 DEBUG:teuthology.orchestra.run.trial197:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-20T22:56:18.570 INFO:teuthology.orchestra.run.trial197.stdout:ttyS1 2026-02-20T22:56:18.590 DEBUG:teuthology.parallel:result is None 2026-02-20T22:56:18.590 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-20T22:56:18.603 INFO:teuthology.task.internal:Creating test directory... 2026-02-20T22:56:18.603 DEBUG:teuthology.orchestra.run.trial004:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T22:56:18.607 DEBUG:teuthology.orchestra.run.trial064:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T22:56:18.610 DEBUG:teuthology.orchestra.run.trial197:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-20T22:56:18.647 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-20T22:56:18.663 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-20T22:56:18.676 INFO:teuthology.task.internal:Creating archive directory... 2026-02-20T22:56:18.677 DEBUG:teuthology.orchestra.run.trial004:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T22:56:18.679 DEBUG:teuthology.orchestra.run.trial064:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T22:56:18.681 DEBUG:teuthology.orchestra.run.trial197:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-20T22:56:18.710 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-20T22:56:18.728 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-20T22:56:18.728 DEBUG:teuthology.orchestra.run.trial004:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-20T22:56:18.736 DEBUG:teuthology.orchestra.run.trial064:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-20T22:56:18.739 DEBUG:teuthology.orchestra.run.trial197:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2026-02-20T22:56:18.759 INFO:teuthology.orchestra.run.trial004.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:56:18.761 INFO:teuthology.orchestra.run.trial064.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:56:18.767 INFO:teuthology.orchestra.run.trial197.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:56:18.768 INFO:teuthology.orchestra.run.trial004.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:56:18.770 INFO:teuthology.orchestra.run.trial064.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:56:18.776 INFO:teuthology.orchestra.run.trial197.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-20T22:56:18.778 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-20T22:56:18.789 INFO:teuthology.task.internal:Configuring sudo... 2026-02-20T22:56:18.790 DEBUG:teuthology.orchestra.run.trial004:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T22:56:18.811 DEBUG:teuthology.orchestra.run.trial064:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T22:56:18.814 DEBUG:teuthology.orchestra.run.trial197:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-20T22:56:18.841 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-20T22:56:18.861 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-20T22:56:18.861 DEBUG:teuthology.orchestra.run.trial004:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T22:56:18.876 DEBUG:teuthology.orchestra.run.trial064:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T22:56:18.878 DEBUG:teuthology.orchestra.run.trial197:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-20T22:56:18.898 DEBUG:teuthology.orchestra.run.trial004:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:56:19.044 DEBUG:teuthology.orchestra.run.trial004:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:56:19.068 DEBUG:teuthology.orchestra.run.trial004:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:56:19.213 DEBUG:teuthology.orchestra.run.trial004:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:56:19.236 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T22:56:19.237 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T22:56:19.300 DEBUG:teuthology.orchestra.run.trial064:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:56:19.401 DEBUG:teuthology.orchestra.run.trial064:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:56:19.426 DEBUG:teuthology.orchestra.run.trial064:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:56:19.546 DEBUG:teuthology.orchestra.run.trial064:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:56:19.571 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T22:56:19.571 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T22:56:19.635 DEBUG:teuthology.orchestra.run.trial197:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:56:19.735 DEBUG:teuthology.orchestra.run.trial197:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T22:56:19.759 DEBUG:teuthology.orchestra.run.trial197:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:56:19.899 DEBUG:teuthology.orchestra.run.trial197:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T22:56:19.922 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T22:56:19.922 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-20T22:56:19.986 DEBUG:teuthology.orchestra.run.trial004:> sudo service rsyslog restart 2026-02-20T22:56:19.988 DEBUG:teuthology.orchestra.run.trial064:> sudo service rsyslog restart 2026-02-20T22:56:19.989 DEBUG:teuthology.orchestra.run.trial197:> sudo service rsyslog restart 2026-02-20T22:56:20.013 INFO:teuthology.orchestra.run.trial004.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T22:56:20.016 INFO:teuthology.orchestra.run.trial064.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T22:56:20.052 INFO:teuthology.orchestra.run.trial197.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T22:56:20.576 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-20T22:56:20.588 INFO:teuthology.task.internal:Starting timer... 2026-02-20T22:56:20.589 INFO:teuthology.run_tasks:Running task pcp... 2026-02-20T22:56:20.614 INFO:teuthology.run_tasks:Running task selinux... 2026-02-20T22:56:20.632 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-02-20T22:56:20.632 DEBUG:teuthology.orchestra.run.trial004:> sudo service auditd rotate 2026-02-20T22:56:20.661 INFO:teuthology.orchestra.run.trial004.stdout:Rotating logs: 2026-02-20T22:56:20.663 DEBUG:teuthology.orchestra.run.trial064:> sudo service auditd rotate 2026-02-20T22:56:20.692 INFO:teuthology.orchestra.run.trial064.stdout:Rotating logs: 2026-02-20T22:56:20.694 DEBUG:teuthology.orchestra.run.trial197:> sudo service auditd rotate 2026-02-20T22:56:20.724 INFO:teuthology.orchestra.run.trial197.stdout:Rotating logs: 2026-02-20T22:56:20.726 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-20T22:56:20.727 DEBUG:teuthology.orchestra.run.trial004:> /usr/sbin/getenforce 2026-02-20T22:56:20.743 INFO:teuthology.orchestra.run.trial004.stdout:Permissive 2026-02-20T22:56:20.744 DEBUG:teuthology.orchestra.run.trial064:> /usr/sbin/getenforce 2026-02-20T22:56:20.760 INFO:teuthology.orchestra.run.trial064.stdout:Permissive 2026-02-20T22:56:20.760 DEBUG:teuthology.orchestra.run.trial197:> /usr/sbin/getenforce 2026-02-20T22:56:20.782 INFO:teuthology.orchestra.run.trial197.stdout:Permissive 2026-02-20T22:56:20.783 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial004.front.sepia.ceph.com': 'permissive', 'ubuntu@trial064.front.sepia.ceph.com': 'permissive', 'ubuntu@trial197.front.sepia.ceph.com': 'permissive'} 2026-02-20T22:56:20.783 DEBUG:teuthology.orchestra.run.trial004:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-20T22:56:20.807 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:56:20.808 DEBUG:teuthology.orchestra.run.trial064:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-20T22:56:20.834 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:56:20.834 DEBUG:teuthology.orchestra.run.trial197:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-20T22:56:20.859 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T22:56:20.860 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-20T22:56:20.860 DEBUG:teuthology.orchestra.run.trial004:> sudo /usr/sbin/setenforce permissive 2026-02-20T22:56:20.886 DEBUG:teuthology.orchestra.run.trial064:> sudo /usr/sbin/setenforce permissive 2026-02-20T22:56:20.910 DEBUG:teuthology.orchestra.run.trial197:> sudo /usr/sbin/setenforce permissive 2026-02-20T22:56:20.933 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-20T22:56:20.949 DEBUG:teuthology.repo_utils:Setting repo remote to https://git.ceph.com/ceph-cm-ansible.git 2026-02-20T22:56:20.953 INFO:teuthology.repo_utils:Fetching git.ceph.com_ceph-cm-ansible_main from origin 2026-02-20T22:56:21.084 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-20T22:56:21.094 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2026-02-20T22:56:21.095 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial004.front.sepia.ceph.com,trial064.front.sepia.ceph.com,trial197.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-20T22:59:10.606 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial004.front.sepia.ceph.com'), Remote(name='ubuntu@trial064.front.sepia.ceph.com'), Remote(name='ubuntu@trial197.front.sepia.ceph.com')] 2026-02-20T22:59:10.607 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial004.front.sepia.ceph.com' 2026-02-20T22:59:10.609 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial004.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:59:10.720 DEBUG:teuthology.orchestra.run.trial004:> true 2026-02-20T22:59:10.793 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial004.front.sepia.ceph.com' 2026-02-20T22:59:10.794 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial064.front.sepia.ceph.com' 2026-02-20T22:59:10.794 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial064.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:59:10.887 DEBUG:teuthology.orchestra.run.trial064:> true 2026-02-20T22:59:10.961 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial064.front.sepia.ceph.com' 2026-02-20T22:59:10.961 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-20T22:59:10.962 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial197.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-20T22:59:11.065 DEBUG:teuthology.orchestra.run.trial197:> true 2026-02-20T22:59:11.141 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial197.front.sepia.ceph.com' 2026-02-20T22:59:11.142 INFO:teuthology.run_tasks:Running task clock... 2026-02-20T22:59:11.150 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-20T22:59:11.151 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T22:59:11.151 DEBUG:teuthology.orchestra.run.trial004:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T22:59:11.153 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T22:59:11.153 DEBUG:teuthology.orchestra.run.trial064:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T22:59:11.155 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-20T22:59:11.156 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T22:59:11.179 INFO:teuthology.orchestra.run.trial004.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T22:59:11.180 INFO:teuthology.orchestra.run.trial064.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T22:59:11.192 INFO:teuthology.orchestra.run.trial064.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T22:59:11.192 INFO:teuthology.orchestra.run.trial004.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T22:59:11.207 INFO:teuthology.orchestra.run.trial197.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-20T22:59:11.212 INFO:teuthology.orchestra.run.trial064.stderr:sudo: ntpd: command not found 2026-02-20T22:59:11.213 INFO:teuthology.orchestra.run.trial004.stderr:sudo: ntpd: command not found 2026-02-20T22:59:11.219 INFO:teuthology.orchestra.run.trial197.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-20T22:59:11.222 INFO:teuthology.orchestra.run.trial064.stdout:506 Cannot talk to daemon 2026-02-20T22:59:11.223 INFO:teuthology.orchestra.run.trial004.stdout:506 Cannot talk to daemon 2026-02-20T22:59:11.234 INFO:teuthology.orchestra.run.trial064.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T22:59:11.235 INFO:teuthology.orchestra.run.trial004.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T22:59:11.240 INFO:teuthology.orchestra.run.trial197.stderr:sudo: ntpd: command not found 2026-02-20T22:59:11.246 INFO:teuthology.orchestra.run.trial064.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T22:59:11.247 INFO:teuthology.orchestra.run.trial004.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T22:59:11.249 INFO:teuthology.orchestra.run.trial197.stdout:506 Cannot talk to daemon 2026-02-20T22:59:11.261 INFO:teuthology.orchestra.run.trial197.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-20T22:59:11.272 INFO:teuthology.orchestra.run.trial197.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-20T22:59:11.294 INFO:teuthology.orchestra.run.trial064.stderr:bash: line 1: ntpq: command not found 2026-02-20T22:59:11.295 INFO:teuthology.orchestra.run.trial004.stderr:bash: line 1: ntpq: command not found 2026-02-20T22:59:11.296 INFO:teuthology.orchestra.run.trial064.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T22:59:11.296 INFO:teuthology.orchestra.run.trial064.stdout:=============================================================================== 2026-02-20T22:59:11.298 INFO:teuthology.orchestra.run.trial004.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T22:59:11.298 INFO:teuthology.orchestra.run.trial004.stdout:=============================================================================== 2026-02-20T22:59:11.317 INFO:teuthology.orchestra.run.trial197.stderr:bash: line 1: ntpq: command not found 2026-02-20T22:59:11.336 INFO:teuthology.orchestra.run.trial197.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T22:59:11.336 INFO:teuthology.orchestra.run.trial197.stdout:=============================================================================== 2026-02-20T22:59:11.336 INFO:teuthology.orchestra.run.trial197.stdout:^? kc1cloud.147.72.155.23.m> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:59:11.336 INFO:teuthology.orchestra.run.trial197.stdout:^? time-he.den.codehof.net 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:59:11.336 INFO:teuthology.orchestra.run.trial197.stdout:^? owners.kjsl.com 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:59:11.337 INFO:teuthology.orchestra.run.trial197.stdout:^? kjsl-fmt2-net.fmt2.kjsl.> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-20T22:59:11.338 INFO:teuthology.run_tasks:Running task pexec... 2026-02-20T22:59:11.350 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-20T22:59:11.351 DEBUG:teuthology.orchestra.run.trial004:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T22:59:11.351 DEBUG:teuthology.orchestra.run.trial064:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T22:59:11.351 DEBUG:teuthology.orchestra.run.trial197:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-20T22:59:11.353 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial064.front.sepia.ceph.com 2026-02-20T22:59:11.353 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T22:59:11.353 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-20T22:59:11.353 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial004.front.sepia.ceph.com 2026-02-20T22:59:11.353 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T22:59:11.353 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-20T22:59:11.379 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial197.front.sepia.ceph.com 2026-02-20T22:59:11.379 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-20T22:59:11.379 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-20T22:59:11.523 INFO:teuthology.orchestra.run.trial004.stdout:No match for argument: nvme-cli 2026-02-20T22:59:11.523 INFO:teuthology.orchestra.run.trial004.stderr:No packages marked for removal. 2026-02-20T22:59:11.524 INFO:teuthology.orchestra.run.trial064.stdout:No match for argument: nvme-cli 2026-02-20T22:59:11.524 INFO:teuthology.orchestra.run.trial064.stderr:No packages marked for removal. 2026-02-20T22:59:11.525 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:59:11.525 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T22:59:11.526 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T22:59:11.526 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T22:59:11.527 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T22:59:11.527 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T22:59:11.551 INFO:teuthology.orchestra.run.trial197.stdout:No match for argument: nvme-cli 2026-02-20T22:59:11.551 INFO:teuthology.orchestra.run.trial197.stderr:No packages marked for removal. 2026-02-20T22:59:11.553 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:11.553 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T22:59:11.554 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:11.828 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:33 ago on Fri 20 Feb 2026 10:58:38 PM UTC. 2026-02-20T22:59:11.831 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:32 ago on Fri 20 Feb 2026 10:58:39 PM UTC. 2026-02-20T22:59:11.859 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:31 ago on Fri 20 Feb 2026 10:58:40 PM UTC. 2026-02-20T22:59:11.909 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:59:11.909 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:11.909 INFO:teuthology.orchestra.run.trial004.stdout: Package Architecture Version Repository Size 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Install 6 Packages 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 2.3 M 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 11 M 2026-02-20T22:59:11.910 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T22:59:11.914 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: Package Architecture Version Repository Size 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Install 6 Packages 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 2.3 M 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 11 M 2026-02-20T22:59:11.915 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T22:59:11.940 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:11.941 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:11.941 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-20T22:59:11.941 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:11.941 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:11.941 INFO:teuthology.orchestra.run.trial197.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-20T22:59:11.941 INFO:teuthology.orchestra.run.trial197.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout:Install 6 Packages 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:11.942 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 2.3 M 2026-02-20T22:59:11.943 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 11 M 2026-02-20T22:59:11.943 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:12.063 INFO:teuthology.orchestra.run.trial197.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 1.1 MB/s | 44 kB 00:00 2026-02-20T22:59:12.068 INFO:teuthology.orchestra.run.trial197.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 1.7 MB/s | 72 kB 00:00 2026-02-20T22:59:12.081 INFO:teuthology.orchestra.run.trial197.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 4.5 MB/s | 84 kB 00:00 2026-02-20T22:59:12.089 INFO:teuthology.orchestra.run.trial197.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 7.0 MB/s | 150 kB 00:00 2026-02-20T22:59:12.109 INFO:teuthology.orchestra.run.trial197.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 14 MB/s | 1.2 MB 00:00 2026-02-20T22:59:12.116 INFO:teuthology.orchestra.run.trial197.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 24 MB/s | 837 kB 00:00 2026-02-20T22:59:12.117 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:12.117 INFO:teuthology.orchestra.run.trial197.stdout:Total 13 MB/s | 2.3 MB 00:00 2026-02-20T22:59:12.169 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:59:12.176 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:59:12.177 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:59:12.242 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:59:12.243 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:59:12.282 INFO:teuthology.orchestra.run.trial004.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 645 kB/s | 44 kB 00:00 2026-02-20T22:59:12.283 INFO:teuthology.orchestra.run.trial004.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 1.0 MB/s | 72 kB 00:00 2026-02-20T22:59:12.325 INFO:teuthology.orchestra.run.trial004.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.9 MB/s | 84 kB 00:00 2026-02-20T22:59:12.328 INFO:teuthology.orchestra.run.trial004.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 3.3 MB/s | 150 kB 00:00 2026-02-20T22:59:12.348 INFO:teuthology.orchestra.run.trial004.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 8.6 MB/s | 1.2 MB 00:00 2026-02-20T22:59:12.373 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:59:12.381 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-20T22:59:12.390 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-20T22:59:12.392 INFO:teuthology.orchestra.run.trial004.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 12 MB/s | 837 kB 00:00 2026-02-20T22:59:12.392 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:12.392 INFO:teuthology.orchestra.run.trial004.stdout:Total 4.8 MB/s | 2.3 MB 00:00 2026-02-20T22:59:12.395 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-20T22:59:12.401 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-20T22:59:12.402 INFO:teuthology.orchestra.run.trial197.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-20T22:59:12.444 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T22:59:12.451 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T22:59:12.451 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T22:59:12.516 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T22:59:12.516 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T22:59:12.534 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-20T22:59:12.537 INFO:teuthology.orchestra.run.trial197.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-20T22:59:12.580 INFO:teuthology.orchestra.run.trial064.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 76 kB/s | 44 kB 00:00 2026-02-20T22:59:12.616 INFO:teuthology.orchestra.run.trial064.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 117 kB/s | 72 kB 00:00 2026-02-20T22:59:12.645 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T22:59:12.653 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-20T22:59:12.662 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-20T22:59:12.667 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-20T22:59:12.673 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-20T22:59:12.674 INFO:teuthology.orchestra.run.trial004.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-20T22:59:12.804 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-20T22:59:12.807 INFO:teuthology.orchestra.run.trial004.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-20T22:59:12.819 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-20T22:59:12.820 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T22:59:12.820 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:12.914 INFO:teuthology.orchestra.run.trial064.stdout:(3/6): nvme-cli-2.16-1.el9.x86_64.rpm 1.3 MB/s | 1.2 MB 00:00 2026-02-20T22:59:13.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-20T22:59:13.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-20T22:59:13.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-20T22:59:13.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-20T22:59:13.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-20T22:59:13.089 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-20T22:59:13.089 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T22:59:13.089 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:13.110 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-20T22:59:13.110 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:13.110 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T22:59:13.110 INFO:teuthology.orchestra.run.trial197.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T22:59:13.110 INFO:teuthology.orchestra.run.trial197.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T22:59:13.111 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T22:59:13.111 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:13.111 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:13.141 DEBUG:teuthology.parallel:result is None 2026-02-20T22:59:13.218 INFO:teuthology.orchestra.run.trial064.stdout:(4/6): python3-kmod-0.9-32.el9.x86_64.rpm 132 kB/s | 84 kB 00:00 2026-02-20T22:59:13.322 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-20T22:59:13.322 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-20T22:59:13.322 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-20T22:59:13.323 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-20T22:59:13.323 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-20T22:59:13.324 INFO:teuthology.orchestra.run.trial064.stdout:(5/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 213 kB/s | 150 kB 00:00 2026-02-20T22:59:13.383 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-20T22:59:13.383 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:13.383 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T22:59:13.384 INFO:teuthology.orchestra.run.trial004.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T22:59:13.384 INFO:teuthology.orchestra.run.trial004.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T22:59:13.384 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T22:59:13.384 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:13.384 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T22:59:13.413 DEBUG:teuthology.parallel:result is None 2026-02-20T22:59:13.811 INFO:teuthology.orchestra.run.trial064.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 934 kB/s | 837 kB 00:00 2026-02-20T22:59:13.811 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:13.811 INFO:teuthology.orchestra.run.trial064.stdout:Total 1.2 MB/s | 2.3 MB 00:01 2026-02-20T22:59:13.862 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T22:59:13.869 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T22:59:13.869 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T22:59:13.937 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T22:59:13.937 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T22:59:14.069 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T22:59:14.076 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-20T22:59:14.085 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-20T22:59:14.091 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-20T22:59:14.097 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-20T22:59:14.098 INFO:teuthology.orchestra.run.trial064.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-20T22:59:14.232 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-20T22:59:14.235 INFO:teuthology.orchestra.run.trial064.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-20T22:59:14.510 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-20T22:59:14.510 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-20T22:59:14.511 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:14.753 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-20T22:59:14.754 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-20T22:59:14.754 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-20T22:59:14.754 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-20T22:59:14.754 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-20T22:59:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-20T22:59:14.807 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:14.807 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T22:59:14.808 INFO:teuthology.orchestra.run.trial064.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-20T22:59:14.808 INFO:teuthology.orchestra.run.trial064.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-20T22:59:14.808 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-20T22:59:14.808 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:14.808 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T22:59:14.838 DEBUG:teuthology.parallel:result is None 2026-02-20T22:59:14.839 INFO:teuthology.run_tasks:Running task install... 2026-02-20T22:59:14.853 DEBUG:teuthology.task.install:project ceph 2026-02-20T22:59:14.853 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': 'f7870454149f22574086dd2ff55d050585136531'}} 2026-02-20T22:59:14.853 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': 'f7870454149f22574086dd2ff55d050585136531'} 2026-02-20T22:59:14.853 INFO:teuthology.task.install:Using flavor: default 2026-02-20T22:59:14.862 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-common', 'ceph-fuse', 'ceph-test', 'ceph-volume', 'radosgw', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'libcephfs2', 'libcephfs-dev', 'librados2', 'librbd1', 'rbd-fuse'], 'rpm': ['ceph-radosgw', 'ceph-test', 'ceph', 'ceph-base', 'cephadm', 'ceph-immutable-object-cache', 'ceph-mgr', 'ceph-mgr-dashboard', 'ceph-mgr-diskprediction-local', 'ceph-mgr-rook', 'ceph-mgr-cephadm', 'ceph-fuse', 'ceph-volume', 'librados-devel', 'libcephfs2', 'libcephfs-devel', 'librados2', 'librbd1', 'python3-rados', 'python3-rgw', 'python3-cephfs', 'python3-rbd', 'rbd-fuse', 'rbd-mirror', 'rbd-nbd']} 2026-02-20T22:59:14.862 INFO:teuthology.task.install:extra packages: [] 2026-02-20T22:59:14.862 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'tag': None, 'wait_for_package': False} 2026-02-20T22:59:14.863 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:59:14.865 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'tag': None, 'wait_for_package': False} 2026-02-20T22:59:14.866 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:59:14.867 DEBUG:teuthology.task.install.rpm:_update_package_list_and_install: config is {'branch': None, 'cleanup': None, 'debuginfo': None, 'downgrade_packages': [], 'exclude_packages': [], 'extra_packages': [], 'extra_system_packages': [], 'extras': None, 'enable_coprs': [], 'flavor': 'default', 'install_ceph_packages': True, 'packages': {}, 'project': 'ceph', 'repos_only': False, 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'tag': None, 'wait_for_package': False} 2026-02-20T22:59:14.867 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T22:59:15.117 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/ 2026-02-20T22:59:15.117 INFO:teuthology.task.install.rpm:Package version is 20.2.0-677.gf7870454 2026-02-20T22:59:15.125 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/ 2026-02-20T22:59:15.125 INFO:teuthology.task.install.rpm:Package version is 20.2.0-677.gf7870454 2026-02-20T22:59:15.135 INFO:teuthology.task.install.rpm:Pulling from https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/ 2026-02-20T22:59:15.135 INFO:teuthology.task.install.rpm:Package version is 20.2.0-677.gf7870454 2026-02-20T22:59:15.334 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-20T22:59:15.335 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T22:59:15.335 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-20T22:59:15.336 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-20T22:59:15.336 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T22:59:15.336 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-20T22:59:15.343 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-20T22:59:15.343 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T22:59:15.343 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-20T22:59:15.365 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-20T22:59:15.365 DEBUG:teuthology.orchestra.run.trial004:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/f7870454149f22574086dd2ff55d050585136531/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-20T22:59:15.365 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-20T22:59:15.365 DEBUG:teuthology.orchestra.run.trial064:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/f7870454149f22574086dd2ff55d050585136531/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-20T22:59:15.371 INFO:teuthology.task.install.rpm:Installing packages: ceph-radosgw, ceph-test, ceph, ceph-base, cephadm, ceph-immutable-object-cache, ceph-mgr, ceph-mgr-dashboard, ceph-mgr-diskprediction-local, ceph-mgr-rook, ceph-mgr-cephadm, ceph-fuse, ceph-volume, librados-devel, libcephfs2, libcephfs-devel, librados2, librbd1, python3-rados, python3-rgw, python3-cephfs, python3-rbd, rbd-fuse, rbd-mirror, rbd-nbd on remote rpm x86_64 2026-02-20T22:59:15.371 DEBUG:teuthology.orchestra.run.trial197:> if test -f /etc/yum.repos.d/ceph.repo ; then sudo sed -i -e ':a;N;$!ba;s/enabled=1\ngpg/enabled=1\npriority=1\ngpg/g' -e 's;ref/[a-zA-Z0-9_-]*/;sha1/f7870454149f22574086dd2ff55d050585136531/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-20T22:59:15.431 DEBUG:teuthology.orchestra.run.trial064:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-20T22:59:15.432 DEBUG:teuthology.orchestra.run.trial004:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-20T22:59:15.439 DEBUG:teuthology.orchestra.run.trial197:> sudo touch -a /etc/yum/pluginconf.d/priorities.conf ; test -e /etc/yum/pluginconf.d/priorities.conf.orig || sudo cp -af /etc/yum/pluginconf.d/priorities.conf /etc/yum/pluginconf.d/priorities.conf.orig 2026-02-20T22:59:15.503 DEBUG:teuthology.orchestra.run.trial064:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-20T22:59:15.506 DEBUG:teuthology.orchestra.run.trial004:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-20T22:59:15.512 DEBUG:teuthology.orchestra.run.trial197:> grep check_obsoletes /etc/yum/pluginconf.d/priorities.conf && sudo sed -i 's/check_obsoletes.*0/check_obsoletes = 1/g' /etc/yum/pluginconf.d/priorities.conf || echo 'check_obsoletes = 1' | sudo tee -a /etc/yum/pluginconf.d/priorities.conf 2026-02-20T22:59:15.567 INFO:teuthology.orchestra.run.trial064.stdout:check_obsoletes = 1 2026-02-20T22:59:15.569 DEBUG:teuthology.orchestra.run.trial064:> sudo yum clean all 2026-02-20T22:59:15.570 INFO:teuthology.orchestra.run.trial004.stdout:check_obsoletes = 1 2026-02-20T22:59:15.572 DEBUG:teuthology.orchestra.run.trial004:> sudo yum clean all 2026-02-20T22:59:15.578 INFO:teuthology.orchestra.run.trial197.stdout:check_obsoletes = 1 2026-02-20T22:59:15.580 DEBUG:teuthology.orchestra.run.trial197:> sudo yum clean all 2026-02-20T22:59:15.726 INFO:teuthology.orchestra.run.trial064.stdout:41 files removed 2026-02-20T22:59:15.730 INFO:teuthology.orchestra.run.trial004.stdout:41 files removed 2026-02-20T22:59:15.739 INFO:teuthology.orchestra.run.trial197.stdout:41 files removed 2026-02-20T22:59:15.741 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-radosgw 2026-02-20T22:59:15.744 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-radosgw 2026-02-20T22:59:15.753 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-radosgw 2026-02-20T22:59:16.017 INFO:teuthology.orchestra.run.trial004.stdout:ceph packages for x86_64 679 kB/s | 87 kB 00:00 2026-02-20T22:59:16.021 INFO:teuthology.orchestra.run.trial197.stdout:ceph packages for x86_64 687 kB/s | 87 kB 00:00 2026-02-20T22:59:16.037 INFO:teuthology.orchestra.run.trial064.stdout:ceph packages for x86_64 571 kB/s | 87 kB 00:00 2026-02-20T22:59:16.158 INFO:teuthology.orchestra.run.trial004.stdout:ceph noarch packages 157 kB/s | 18 kB 00:00 2026-02-20T22:59:16.167 INFO:teuthology.orchestra.run.trial197.stdout:ceph noarch packages 149 kB/s | 18 kB 00:00 2026-02-20T22:59:16.180 INFO:teuthology.orchestra.run.trial064.stdout:ceph noarch packages 154 kB/s | 18 kB 00:00 2026-02-20T22:59:16.286 INFO:teuthology.orchestra.run.trial004.stdout:ceph source packages 18 kB/s | 1.9 kB 00:00 2026-02-20T22:59:16.295 INFO:teuthology.orchestra.run.trial197.stdout:ceph source packages 18 kB/s | 1.9 kB 00:00 2026-02-20T22:59:16.311 INFO:teuthology.orchestra.run.trial064.stdout:ceph source packages 18 kB/s | 1.9 kB 00:00 2026-02-20T22:59:17.128 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - BaseOS 11 MB/s | 8.9 MB 00:00 2026-02-20T22:59:17.926 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - BaseOS 5.5 MB/s | 8.9 MB 00:01 2026-02-20T22:59:18.172 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - BaseOS 4.8 MB/s | 8.9 MB 00:01 2026-02-20T22:59:20.205 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - AppStream 10 MB/s | 27 MB 00:02 2026-02-20T22:59:21.541 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - AppStream 9.4 MB/s | 27 MB 00:02 2026-02-20T22:59:21.646 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - AppStream 8.4 MB/s | 27 MB 00:03 2026-02-20T22:59:23.585 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - CRB 7.8 MB/s | 7.8 MB 00:01 2026-02-20T22:59:24.120 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - CRB 32 MB/s | 7.8 MB 00:00 2026-02-20T22:59:25.026 INFO:teuthology.orchestra.run.trial064.stdout:CentOS Stream 9 - Extras packages 107 kB/s | 20 kB 00:00 2026-02-20T22:59:25.066 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - CRB 7.3 MB/s | 7.8 MB 00:01 2026-02-20T22:59:25.474 INFO:teuthology.orchestra.run.trial197.stdout:CentOS Stream 9 - Extras packages 17 kB/s | 20 kB 00:01 2026-02-20T22:59:25.977 INFO:teuthology.orchestra.run.trial197.stdout:Extra Packages for Enterprise Linux 46 MB/s | 20 MB 00:00 2026-02-20T22:59:26.988 INFO:teuthology.orchestra.run.trial004.stdout:CentOS Stream 9 - Extras packages 17 kB/s | 20 kB 00:01 2026-02-20T22:59:27.898 INFO:teuthology.orchestra.run.trial004.stdout:Extra Packages for Enterprise Linux 24 MB/s | 20 MB 00:00 2026-02-20T22:59:29.148 INFO:teuthology.orchestra.run.trial197.stdout:lab-extras 2.6 MB/s | 50 kB 00:00 2026-02-20T22:59:30.333 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: ceph-radosgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout:Upgrading: 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: librados2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 3.5 M 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: librbd1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.8 M 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: ceph-base x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.9 M 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: ceph-selinux x86_64 2:20.2.0-677.gf7870454.el9 ceph 25 k 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 869 k 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-20T22:59:30.334 INFO:teuthology.orchestra.run.trial197.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: libradosstriper1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 250 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: librgw2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.4 M 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-argparse x86_64 2:20.2.0-677.gf7870454.el9 ceph 45 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 175 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: python3-cephfs x86_64 2:20.2.0-677.gf7870454.el9 ceph 163 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: python3-rados x86_64 2:20.2.0-677.gf7870454.el9 ceph 323 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: python3-rbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 305 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: python3-rgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 99 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout:Installing weak dependencies: 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout:Install 32 Packages 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout:Upgrade 2 Packages 2026-02-20T22:59:30.335 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:30.336 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 78 M 2026-02-20T22:59:30.336 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:30.901 INFO:teuthology.orchestra.run.trial197.stdout:(1/34): ceph-base-20.2.0-677.gf7870454.el9.x86_ 16 MB/s | 5.9 MB 00:00 2026-02-20T22:59:30.940 INFO:teuthology.orchestra.run.trial197.stdout:(2/34): ceph-selinux-20.2.0-677.gf7870454.el9.x 646 kB/s | 25 kB 00:00 2026-02-20T22:59:30.994 INFO:teuthology.orchestra.run.trial197.stdout:(3/34): libcephfs2-20.2.0-677.gf7870454.el9.x86 16 MB/s | 869 kB 00:00 2026-02-20T22:59:31.037 INFO:teuthology.orchestra.run.trial197.stdout:(4/34): libradosstriper1-20.2.0-677.gf7870454.e 5.8 MB/s | 250 kB 00:00 2026-02-20T22:59:31.122 INFO:teuthology.orchestra.run.trial004.stdout:lab-extras 2.7 MB/s | 50 kB 00:00 2026-02-20T22:59:31.221 INFO:teuthology.orchestra.run.trial064.stdout:Extra Packages for Enterprise Linux 3.3 MB/s | 20 MB 00:06 2026-02-20T22:59:31.381 INFO:teuthology.orchestra.run.trial197.stdout:(5/34): librgw2-20.2.0-677.gf7870454.el9.x86_64 19 MB/s | 6.4 MB 00:00 2026-02-20T22:59:31.422 INFO:teuthology.orchestra.run.trial197.stdout:(6/34): python3-ceph-argparse-20.2.0-677.gf7870 1.1 MB/s | 45 kB 00:00 2026-02-20T22:59:31.465 INFO:teuthology.orchestra.run.trial197.stdout:(7/34): python3-ceph-common-20.2.0-677.gf787045 3.9 MB/s | 175 kB 00:00 2026-02-20T22:59:31.508 INFO:teuthology.orchestra.run.trial197.stdout:(8/34): python3-cephfs-20.2.0-677.gf7870454.el9 3.7 MB/s | 163 kB 00:00 2026-02-20T22:59:31.555 INFO:teuthology.orchestra.run.trial197.stdout:(9/34): python3-rados-20.2.0-677.gf7870454.el9. 6.8 MB/s | 323 kB 00:00 2026-02-20T22:59:31.600 INFO:teuthology.orchestra.run.trial197.stdout:(10/34): python3-rbd-20.2.0-677.gf7870454.el9.x 6.6 MB/s | 305 kB 00:00 2026-02-20T22:59:31.642 INFO:teuthology.orchestra.run.trial197.stdout:(11/34): python3-rgw-20.2.0-677.gf7870454.el9.x 2.3 MB/s | 99 kB 00:00 2026-02-20T22:59:31.685 INFO:teuthology.orchestra.run.trial197.stdout:(12/34): ceph-common-20.2.0-677.gf7870454.el9.x 21 MB/s | 24 MB 00:01 2026-02-20T22:59:31.720 INFO:teuthology.orchestra.run.trial197.stdout:(13/34): ceph-radosgw-20.2.0-677.gf7870454.el9. 20 MB/s | 24 MB 00:01 2026-02-20T22:59:31.735 INFO:teuthology.orchestra.run.trial197.stdout:(14/34): pciutils-3.7.0-7.el9.x86_64.rpm 1.9 MB/s | 93 kB 00:00 2026-02-20T22:59:31.738 INFO:teuthology.orchestra.run.trial197.stdout:(15/34): mailcap-2.1.49-5.el9.noarch.rpm 345 kB/s | 33 kB 00:00 2026-02-20T22:59:31.766 INFO:teuthology.orchestra.run.trial197.stdout:(16/34): boost-program-options-1.75.0-13.el9.x8 2.2 MB/s | 104 kB 00:00 2026-02-20T22:59:31.777 INFO:teuthology.orchestra.run.trial197.stdout:(17/34): librabbitmq-0.11.0-7.el9.x86_64.rpm 4.0 MB/s | 45 kB 00:00 2026-02-20T22:59:31.782 INFO:teuthology.orchestra.run.trial197.stdout:(18/34): libnbd-1.20.3-4.el9.x86_64.rpm 3.4 MB/s | 164 kB 00:00 2026-02-20T22:59:31.789 INFO:teuthology.orchestra.run.trial197.stdout:(19/34): libpmemobj-1.12.1-1.el9.x86_64.rpm 3.1 MB/s | 160 kB 00:00 2026-02-20T22:59:31.803 INFO:teuthology.orchestra.run.trial197.stdout:(20/34): lttng-ust-2.12.0-6.el9.x86_64.rpm 14 MB/s | 292 kB 00:00 2026-02-20T22:59:31.810 INFO:teuthology.orchestra.run.trial197.stdout:(21/34): qatlib-25.08.0-2.el9.x86_64.rpm 11 MB/s | 240 kB 00:00 2026-02-20T22:59:31.812 INFO:teuthology.orchestra.run.trial197.stdout:(22/34): librdkafka-1.6.1-102.el9.x86_64.rpm 18 MB/s | 662 kB 00:00 2026-02-20T22:59:31.813 INFO:teuthology.orchestra.run.trial197.stdout:(23/34): qatlib-service-25.08.0-2.el9.x86_64.rp 3.7 MB/s | 37 kB 00:00 2026-02-20T22:59:31.821 INFO:teuthology.orchestra.run.trial197.stdout:(24/34): qatzip-libs-1.3.1-1.el9.x86_64.rpm 6.2 MB/s | 66 kB 00:00 2026-02-20T22:59:31.869 INFO:teuthology.orchestra.run.trial197.stdout:(25/34): libarrow-doc-9.0.0-15.el9.noarch.rpm 507 kB/s | 25 kB 00:00 2026-02-20T22:59:31.903 INFO:teuthology.orchestra.run.trial197.stdout:(26/34): liboath-2.6.12-1.el9.x86_64.rpm 1.4 MB/s | 49 kB 00:00 2026-02-20T22:59:31.926 INFO:teuthology.orchestra.run.trial197.stdout:(27/34): gperftools-libs-2.9.1-3.el9.x86_64.rpm 2.6 MB/s | 308 kB 00:00 2026-02-20T22:59:31.927 INFO:teuthology.orchestra.run.trial197.stdout:(28/34): libunwind-1.6.2-1.el9.x86_64.rpm 2.7 MB/s | 67 kB 00:00 2026-02-20T22:59:31.965 INFO:teuthology.orchestra.run.trial197.stdout:(29/34): re2-20211101-20.el9.x86_64.rpm 4.9 MB/s | 191 kB 00:00 2026-02-20T22:59:31.977 INFO:teuthology.orchestra.run.trial197.stdout:(30/34): parquet-libs-9.0.0-15.el9.x86_64.rpm 16 MB/s | 838 kB 00:00 2026-02-20T22:59:31.985 INFO:teuthology.orchestra.run.trial197.stdout:(31/34): libarrow-9.0.0-15.el9.x86_64.rpm 26 MB/s | 4.4 MB 00:00 2026-02-20T22:59:32.031 INFO:teuthology.orchestra.run.trial197.stdout:(32/34): thrift-0.15.0-4.el9.x86_64.rpm 24 MB/s | 1.6 MB 00:00 2026-02-20T22:59:32.092 INFO:teuthology.orchestra.run.trial197.stdout:(33/34): librados2-20.2.0-677.gf7870454.el9.x86 31 MB/s | 3.5 MB 00:00 2026-02-20T22:59:32.096 INFO:teuthology.orchestra.run.trial197.stdout:(34/34): librbd1-20.2.0-677.gf7870454.el9.x86_6 26 MB/s | 2.8 MB 00:00 2026-02-20T22:59:32.098 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:32.098 INFO:teuthology.orchestra.run.trial197.stdout:Total 44 MB/s | 78 MB 00:01 2026-02-20T22:59:32.185 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:59:32.202 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:59:32.202 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:59:32.320 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: ceph-radosgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout:Upgrading: 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: librados2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 3.5 M 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: librbd1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.8 M 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: ceph-base x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.9 M 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: ceph-selinux x86_64 2:20.2.0-677.gf7870454.el9 ceph 25 k 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-20T22:59:32.321 INFO:teuthology.orchestra.run.trial004.stdout: libcephfs2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 869 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: libradosstriper1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 250 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: librgw2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.4 M 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: python3-ceph-argparse x86_64 2:20.2.0-677.gf7870454.el9 ceph 45 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: python3-ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 175 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: python3-cephfs x86_64 2:20.2.0-677.gf7870454.el9 ceph 163 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: python3-rados x86_64 2:20.2.0-677.gf7870454.el9 ceph 323 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: python3-rbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 305 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: python3-rgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 99 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout:Installing weak dependencies: 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout:Install 32 Packages 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout:Upgrade 2 Packages 2026-02-20T22:59:32.322 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:32.323 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 78 M 2026-02-20T22:59:32.323 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T22:59:32.477 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:59:32.478 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:59:32.818 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:59:32.829 INFO:teuthology.orchestra.run.trial197.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/36 2026-02-20T22:59:32.983 INFO:teuthology.orchestra.run.trial197.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/36 2026-02-20T22:59:32.987 INFO:teuthology.orchestra.run.trial197.stdout: Upgrading : librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:33.018 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:33.054 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:59:33.055 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:33.068 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:33.079 INFO:teuthology.orchestra.run.trial197.stdout: Installing : liboath-2.6.12-1.el9.x86_64 6/36 2026-02-20T22:59:33.082 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/36 2026-02-20T22:59:33.085 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/36 2026-02-20T22:59:33.089 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 9/36 2026-02-20T22:59:33.098 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 10/36 2026-02-20T22:59:33.109 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:59:33.110 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:33.123 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:33.155 INFO:teuthology.orchestra.run.trial197.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/36 2026-02-20T22:59:33.159 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/36 2026-02-20T22:59:33.165 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 15/36 2026-02-20T22:59:33.167 INFO:teuthology.orchestra.run.trial197.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 16/36 2026-02-20T22:59:33.171 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 17/36 2026-02-20T22:59:33.197 INFO:teuthology.orchestra.run.trial004.stdout:(1/34): ceph-base-20.2.0-677.gf7870454.el9.x86_ 16 MB/s | 5.9 MB 00:00 2026-02-20T22:59:33.244 INFO:teuthology.orchestra.run.trial004.stdout:(2/34): ceph-selinux-20.2.0-677.gf7870454.el9.x 543 kB/s | 25 kB 00:00 2026-02-20T22:59:33.294 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 18/36 2026-02-20T22:59:33.294 INFO:teuthology.orchestra.run.trial197.stdout: Upgrading : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:59:33.308 INFO:teuthology.orchestra.run.trial004.stdout:(3/34): libcephfs2-20.2.0-677.gf7870454.el9.x86 13 MB/s | 869 kB 00:00 2026-02-20T22:59:33.319 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:59:33.322 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 20/36 2026-02-20T22:59:33.328 INFO:teuthology.orchestra.run.trial197.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 21/36 2026-02-20T22:59:33.363 INFO:teuthology.orchestra.run.trial004.stdout:(4/34): libradosstriper1-20.2.0-677.gf7870454.e 4.4 MB/s | 250 kB 00:00 2026-02-20T22:59:33.605 INFO:teuthology.orchestra.run.trial197.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 22/36 2026-02-20T22:59:33.606 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:59:33.622 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:59:33.625 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 24/36 2026-02-20T22:59:33.630 INFO:teuthology.orchestra.run.trial197.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 25/36 2026-02-20T22:59:33.632 INFO:teuthology.orchestra.run.trial197.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 26/36 2026-02-20T22:59:33.633 INFO:teuthology.orchestra.run.trial197.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:59:33.651 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:59:33.654 INFO:teuthology.orchestra.run.trial197.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 28/36 2026-02-20T22:59:33.687 INFO:teuthology.orchestra.run.trial197.stdout: Installing : mailcap-2.1.49-5.el9.noarch 29/36 2026-02-20T22:59:33.689 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 30/36 2026-02-20T22:59:33.774 INFO:teuthology.orchestra.run.trial004.stdout:(5/34): librgw2-20.2.0-677.gf7870454.el9.x86_64 16 MB/s | 6.4 MB 00:00 2026-02-20T22:59:33.815 INFO:teuthology.orchestra.run.trial004.stdout:(6/34): python3-ceph-argparse-20.2.0-677.gf7870 1.1 MB/s | 45 kB 00:00 2026-02-20T22:59:33.858 INFO:teuthology.orchestra.run.trial004.stdout:(7/34): python3-ceph-common-20.2.0-677.gf787045 4.0 MB/s | 175 kB 00:00 2026-02-20T22:59:33.902 INFO:teuthology.orchestra.run.trial004.stdout:(8/34): python3-cephfs-20.2.0-677.gf7870454.el9 3.7 MB/s | 163 kB 00:00 2026-02-20T22:59:33.948 INFO:teuthology.orchestra.run.trial004.stdout:(9/34): python3-rados-20.2.0-677.gf7870454.el9. 6.8 MB/s | 323 kB 00:00 2026-02-20T22:59:33.999 INFO:teuthology.orchestra.run.trial004.stdout:(10/34): ceph-common-20.2.0-677.gf7870454.el9.x 20 MB/s | 24 MB 00:01 2026-02-20T22:59:34.032 INFO:teuthology.orchestra.run.trial004.stdout:(11/34): ceph-radosgw-20.2.0-677.gf7870454.el9. 20 MB/s | 24 MB 00:01 2026-02-20T22:59:34.033 INFO:teuthology.orchestra.run.trial004.stdout:(12/34): python3-rgw-20.2.0-677.gf7870454.el9.x 2.9 MB/s | 99 kB 00:00 2026-02-20T22:59:34.034 INFO:teuthology.orchestra.run.trial004.stdout:(13/34): python3-rbd-20.2.0-677.gf7870454.el9.x 3.5 MB/s | 305 kB 00:00 2026-02-20T22:59:34.066 INFO:teuthology.orchestra.run.trial004.stdout:(14/34): mailcap-2.1.49-5.el9.noarch.rpm 1.0 MB/s | 33 kB 00:00 2026-02-20T22:59:34.075 INFO:teuthology.orchestra.run.trial004.stdout:(15/34): pciutils-3.7.0-7.el9.x86_64.rpm 2.2 MB/s | 93 kB 00:00 2026-02-20T22:59:34.079 INFO:teuthology.orchestra.run.trial004.stdout:(16/34): boost-program-options-1.75.0-13.el9.x8 2.3 MB/s | 104 kB 00:00 2026-02-20T22:59:34.088 INFO:teuthology.orchestra.run.trial004.stdout:(17/34): librabbitmq-0.11.0-7.el9.x86_64.rpm 4.8 MB/s | 45 kB 00:00 2026-02-20T22:59:34.094 INFO:teuthology.orchestra.run.trial004.stdout:(18/34): libpmemobj-1.12.1-1.el9.x86_64.rpm 8.6 MB/s | 160 kB 00:00 2026-02-20T22:59:34.098 INFO:teuthology.orchestra.run.trial004.stdout:(19/34): libnbd-1.20.3-4.el9.x86_64.rpm 5.0 MB/s | 164 kB 00:00 2026-02-20T22:59:34.113 INFO:teuthology.orchestra.run.trial004.stdout:(20/34): lttng-ust-2.12.0-6.el9.x86_64.rpm 15 MB/s | 292 kB 00:00 2026-02-20T22:59:34.117 INFO:teuthology.orchestra.run.trial004.stdout:(21/34): librdkafka-1.6.1-102.el9.x86_64.rpm 23 MB/s | 662 kB 00:00 2026-02-20T22:59:34.118 INFO:teuthology.orchestra.run.trial004.stdout:(22/34): qatlib-25.08.0-2.el9.x86_64.rpm 12 MB/s | 240 kB 00:00 2026-02-20T22:59:34.122 INFO:teuthology.orchestra.run.trial004.stdout:(23/34): qatlib-service-25.08.0-2.el9.x86_64.rp 4.0 MB/s | 37 kB 00:00 2026-02-20T22:59:34.126 INFO:teuthology.orchestra.run.trial004.stdout:(24/34): qatzip-libs-1.3.1-1.el9.x86_64.rpm 6.9 MB/s | 66 kB 00:00 2026-02-20T22:59:34.229 INFO:teuthology.orchestra.run.trial004.stdout:(25/34): libarrow-doc-9.0.0-15.el9.noarch.rpm 240 kB/s | 25 kB 00:00 2026-02-20T22:59:34.323 INFO:teuthology.orchestra.run.trial004.stdout:(26/34): liboath-2.6.12-1.el9.x86_64.rpm 524 kB/s | 49 kB 00:00 2026-02-20T22:59:34.390 INFO:teuthology.orchestra.run.trial064.stdout:lab-extras 2.5 MB/s | 50 kB 00:00 2026-02-20T22:59:34.415 INFO:teuthology.orchestra.run.trial004.stdout:(27/34): libunwind-1.6.2-1.el9.x86_64.rpm 729 kB/s | 67 kB 00:00 2026-02-20T22:59:34.459 INFO:teuthology.orchestra.run.trial004.stdout:(28/34): gperftools-libs-2.9.1-3.el9.x86_64.rpm 905 kB/s | 308 kB 00:00 2026-02-20T22:59:34.634 INFO:teuthology.orchestra.run.trial004.stdout:(29/34): re2-20211101-20.el9.x86_64.rpm 1.1 MB/s | 191 kB 00:00 2026-02-20T22:59:34.762 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:34.764 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:34.826 INFO:teuthology.orchestra.run.trial004.stdout:(30/34): libarrow-9.0.0-15.el9.x86_64.rpm 6.3 MB/s | 4.4 MB 00:00 2026-02-20T22:59:34.894 INFO:teuthology.orchestra.run.trial004.stdout:(31/34): thrift-0.15.0-4.el9.x86_64.rpm 6.1 MB/s | 1.6 MB 00:00 2026-02-20T22:59:34.910 INFO:teuthology.orchestra.run.trial004.stdout:(32/34): librados2-20.2.0-677.gf7870454.el9.x86 42 MB/s | 3.5 MB 00:00 2026-02-20T22:59:34.968 INFO:teuthology.orchestra.run.trial004.stdout:(33/34): librbd1-20.2.0-677.gf7870454.el9.x86_6 39 MB/s | 2.8 MB 00:00 2026-02-20T22:59:35.062 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:35.065 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:59:35.111 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:59:35.111 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-20T22:59:35.111 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-20T22:59:35.111 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:35.115 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:35.421 INFO:teuthology.orchestra.run.trial004.stdout:(34/34): parquet-libs-9.0.0-15.el9.x86_64.rpm 833 kB/s | 838 kB 00:01 2026-02-20T22:59:35.422 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:35.422 INFO:teuthology.orchestra.run.trial004.stdout:Total 25 MB/s | 78 MB 00:03 2026-02-20T22:59:35.519 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T22:59:35.536 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T22:59:35.536 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T22:59:35.596 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout: ceph-radosgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout:Upgrading: 2026-02-20T22:59:35.597 INFO:teuthology.orchestra.run.trial064.stdout: librados2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 3.5 M 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: librbd1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.8 M 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: ceph-base x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.9 M 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 M 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: ceph-selinux x86_64 2:20.2.0-677.gf7870454.el9 ceph 25 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: libcephfs2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 869 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-20T22:59:35.598 INFO:teuthology.orchestra.run.trial064.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: libradosstriper1 x86_64 2:20.2.0-677.gf7870454.el9 ceph 250 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: librgw2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.4 M 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: python3-ceph-argparse x86_64 2:20.2.0-677.gf7870454.el9 ceph 45 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: python3-ceph-common x86_64 2:20.2.0-677.gf7870454.el9 ceph 175 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: python3-cephfs x86_64 2:20.2.0-677.gf7870454.el9 ceph 163 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: python3-rados x86_64 2:20.2.0-677.gf7870454.el9 ceph 323 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: python3-rbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 305 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: python3-rgw x86_64 2:20.2.0-677.gf7870454.el9 ceph 99 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-20T22:59:35.599 INFO:teuthology.orchestra.run.trial064.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout:Installing weak dependencies: 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout:Install 32 Packages 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout:Upgrade 2 Packages 2026-02-20T22:59:35.600 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:35.601 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 78 M 2026-02-20T22:59:35.601 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T22:59:35.814 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T22:59:35.814 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T22:59:36.149 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T22:59:36.161 INFO:teuthology.orchestra.run.trial004.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/36 2026-02-20T22:59:36.206 INFO:teuthology.orchestra.run.trial064.stdout:(1/34): ceph-base-20.2.0-677.gf7870454.el9.x86_ 15 MB/s | 5.9 MB 00:00 2026-02-20T22:59:36.247 INFO:teuthology.orchestra.run.trial064.stdout:(2/34): ceph-selinux-20.2.0-677.gf7870454.el9.x 605 kB/s | 25 kB 00:00 2026-02-20T22:59:36.308 INFO:teuthology.orchestra.run.trial064.stdout:(3/34): libcephfs2-20.2.0-677.gf7870454.el9.x86 14 MB/s | 869 kB 00:00 2026-02-20T22:59:36.316 INFO:teuthology.orchestra.run.trial004.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/36 2026-02-20T22:59:36.320 INFO:teuthology.orchestra.run.trial004.stdout: Upgrading : librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:36.349 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:36.359 INFO:teuthology.orchestra.run.trial064.stdout:(4/34): libradosstriper1-20.2.0-677.gf7870454.e 4.8 MB/s | 250 kB 00:00 2026-02-20T22:59:36.388 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:59:36.389 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:36.401 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:36.409 INFO:teuthology.orchestra.run.trial004.stdout: Installing : liboath-2.6.12-1.el9.x86_64 6/36 2026-02-20T22:59:36.411 INFO:teuthology.orchestra.run.trial004.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/36 2026-02-20T22:59:36.416 INFO:teuthology.orchestra.run.trial004.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/36 2026-02-20T22:59:36.420 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 9/36 2026-02-20T22:59:36.429 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 10/36 2026-02-20T22:59:36.441 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:59:36.442 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:36.455 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:36.488 INFO:teuthology.orchestra.run.trial004.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/36 2026-02-20T22:59:36.492 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/36 2026-02-20T22:59:36.499 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 15/36 2026-02-20T22:59:36.502 INFO:teuthology.orchestra.run.trial004.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 16/36 2026-02-20T22:59:36.506 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 17/36 2026-02-20T22:59:36.629 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 18/36 2026-02-20T22:59:36.630 INFO:teuthology.orchestra.run.trial004.stdout: Upgrading : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:59:36.658 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:59:36.660 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 20/36 2026-02-20T22:59:36.668 INFO:teuthology.orchestra.run.trial004.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 21/36 2026-02-20T22:59:36.725 INFO:teuthology.orchestra.run.trial064.stdout:(5/34): librgw2-20.2.0-677.gf7870454.el9.x86_64 17 MB/s | 6.4 MB 00:00 2026-02-20T22:59:36.764 INFO:teuthology.orchestra.run.trial064.stdout:(6/34): python3-ceph-argparse-20.2.0-677.gf7870 1.1 MB/s | 45 kB 00:00 2026-02-20T22:59:36.804 INFO:teuthology.orchestra.run.trial064.stdout:(7/34): python3-ceph-common-20.2.0-677.gf787045 4.2 MB/s | 175 kB 00:00 2026-02-20T22:59:36.871 INFO:teuthology.orchestra.run.trial064.stdout:(8/34): ceph-common-20.2.0-677.gf7870454.el9.x8 23 MB/s | 24 MB 00:01 2026-02-20T22:59:36.872 INFO:teuthology.orchestra.run.trial064.stdout:(9/34): python3-cephfs-20.2.0-677.gf7870454.el9 2.4 MB/s | 163 kB 00:00 2026-02-20T22:59:36.894 INFO:teuthology.orchestra.run.trial064.stdout:(10/34): python3-rados-20.2.0-677.gf7870454.el9 14 MB/s | 323 kB 00:00 2026-02-20T22:59:36.899 INFO:teuthology.orchestra.run.trial064.stdout:(11/34): python3-rbd-20.2.0-677.gf7870454.el9.x 11 MB/s | 305 kB 00:00 2026-02-20T22:59:36.917 INFO:teuthology.orchestra.run.trial064.stdout:(12/34): python3-rgw-20.2.0-677.gf7870454.el9.x 4.3 MB/s | 99 kB 00:00 2026-02-20T22:59:36.949 INFO:teuthology.orchestra.run.trial004.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 22/36 2026-02-20T22:59:36.951 INFO:teuthology.orchestra.run.trial004.stdout: Installing : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:59:36.967 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:59:36.971 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 24/36 2026-02-20T22:59:36.975 INFO:teuthology.orchestra.run.trial004.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 25/36 2026-02-20T22:59:36.977 INFO:teuthology.orchestra.run.trial004.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 26/36 2026-02-20T22:59:36.978 INFO:teuthology.orchestra.run.trial004.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:59:36.996 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:59:36.999 INFO:teuthology.orchestra.run.trial004.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 28/36 2026-02-20T22:59:37.011 INFO:teuthology.orchestra.run.trial064.stdout:(13/34): ceph-radosgw-20.2.0-677.gf7870454.el9. 20 MB/s | 24 MB 00:01 2026-02-20T22:59:37.031 INFO:teuthology.orchestra.run.trial004.stdout: Installing : mailcap-2.1.49-5.el9.noarch 29/36 2026-02-20T22:59:37.033 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 30/36 2026-02-20T22:59:37.439 INFO:teuthology.orchestra.run.trial064.stdout:(14/34): pciutils-3.7.0-7.el9.x86_64.rpm 178 kB/s | 93 kB 00:00 2026-02-20T22:59:37.607 INFO:teuthology.orchestra.run.trial064.stdout:(15/34): boost-program-options-1.75.0-13.el9.x8 175 kB/s | 104 kB 00:00 2026-02-20T22:59:37.616 INFO:teuthology.orchestra.run.trial064.stdout:(16/34): libnbd-1.20.3-4.el9.x86_64.rpm 927 kB/s | 164 kB 00:00 2026-02-20T22:59:37.707 INFO:teuthology.orchestra.run.trial064.stdout:(17/34): libpmemobj-1.12.1-1.el9.x86_64.rpm 1.6 MB/s | 160 kB 00:00 2026-02-20T22:59:37.734 INFO:teuthology.orchestra.run.trial064.stdout:(18/34): librabbitmq-0.11.0-7.el9.x86_64.rpm 386 kB/s | 45 kB 00:00 2026-02-20T22:59:37.885 INFO:teuthology.orchestra.run.trial064.stdout:(19/34): librdkafka-1.6.1-102.el9.x86_64.rpm 3.6 MB/s | 662 kB 00:00 2026-02-20T22:59:37.911 INFO:teuthology.orchestra.run.trial064.stdout:(20/34): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.6 MB/s | 292 kB 00:00 2026-02-20T22:59:37.984 INFO:teuthology.orchestra.run.trial064.stdout:(21/34): qatlib-25.08.0-2.el9.x86_64.rpm 2.4 MB/s | 240 kB 00:00 2026-02-20T22:59:38.009 INFO:teuthology.orchestra.run.trial064.stdout:(22/34): qatlib-service-25.08.0-2.el9.x86_64.rp 378 kB/s | 37 kB 00:00 2026-02-20T22:59:38.083 INFO:teuthology.orchestra.run.trial064.stdout:(23/34): qatzip-libs-1.3.1-1.el9.x86_64.rpm 673 kB/s | 66 kB 00:00 2026-02-20T22:59:38.110 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:38.112 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:38.173 INFO:teuthology.orchestra.run.trial064.stdout:(24/34): gperftools-libs-2.9.1-3.el9.x86_64.rpm 1.8 MB/s | 308 kB 00:00 2026-02-20T22:59:38.193 INFO:teuthology.orchestra.run.trial064.stdout:(25/34): libarrow-doc-9.0.0-15.el9.noarch.rpm 1.2 MB/s | 25 kB 00:00 2026-02-20T22:59:38.215 INFO:teuthology.orchestra.run.trial064.stdout:(26/34): liboath-2.6.12-1.el9.x86_64.rpm 2.2 MB/s | 49 kB 00:00 2026-02-20T22:59:38.238 INFO:teuthology.orchestra.run.trial064.stdout:(27/34): libunwind-1.6.2-1.el9.x86_64.rpm 2.9 MB/s | 67 kB 00:00 2026-02-20T22:59:38.297 INFO:teuthology.orchestra.run.trial064.stdout:(28/34): parquet-libs-9.0.0-15.el9.x86_64.rpm 14 MB/s | 838 kB 00:00 2026-02-20T22:59:38.319 INFO:teuthology.orchestra.run.trial064.stdout:(29/34): libarrow-9.0.0-15.el9.x86_64.rpm 19 MB/s | 4.4 MB 00:00 2026-02-20T22:59:38.320 INFO:teuthology.orchestra.run.trial064.stdout:(30/34): re2-20211101-20.el9.x86_64.rpm 8.2 MB/s | 191 kB 00:00 2026-02-20T22:59:38.355 INFO:teuthology.orchestra.run.trial064.stdout:(31/34): thrift-0.15.0-4.el9.x86_64.rpm 43 MB/s | 1.6 MB 00:00 2026-02-20T22:59:38.407 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:38.411 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:59:38.444 INFO:teuthology.orchestra.run.trial064.stdout:(32/34): librados2-20.2.0-677.gf7870454.el9.x86 28 MB/s | 3.5 MB 00:00 2026-02-20T22:59:38.448 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:59:38.449 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-20T22:59:38.449 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-20T22:59:38.449 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:38.452 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:38.482 INFO:teuthology.orchestra.run.trial064.stdout:(33/34): librbd1-20.2.0-677.gf7870454.el9.x86_6 23 MB/s | 2.8 MB 00:00 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /sys 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /proc 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /mnt 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /var/tmp 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /home 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /root 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout:skipping the directory /tmp 2026-02-20T22:59:39.610 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:40.638 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:59:40.661 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:59:40.661 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:40.662 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-20T22:59:40.662 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:59:40.662 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:59:40.662 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:40.663 INFO:teuthology.orchestra.run.trial197.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:59:40.676 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:59:40.676 INFO:teuthology.orchestra.run.trial197.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:59:40.734 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:59:40.734 INFO:teuthology.orchestra.run.trial197.stdout:Creating group 'qat' with GID 992. 2026-02-20T22:59:40.734 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:41.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 1/36 2026-02-20T22:59:41.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2/36 2026-02-20T22:59:41.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:41.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:59:41.058 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 6/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 7/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 8/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 9/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 10/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 13/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 14/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 15/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 16/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 17/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 18/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 19/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 20/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 21/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 22/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 23/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 24/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 25/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 26/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 27/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 28/36 2026-02-20T22:59:41.059 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 29/36 2026-02-20T22:59:41.060 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 30/36 2026-02-20T22:59:41.060 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : re2-1:20211101-20.el9.x86_64 31/36 2026-02-20T22:59:41.060 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 32/36 2026-02-20T22:59:41.060 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librados2-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:41.060 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 34/36 2026-02-20T22:59:41.060 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 35/36 2026-02-20T22:59:41.119 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout:Upgraded: 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout: librados2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-20T22:59:41.120 INFO:teuthology.orchestra.run.trial197.stdout: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-20T22:59:41.121 INFO:teuthology.orchestra.run.trial197.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.122 INFO:teuthology.orchestra.run.trial197.stdout: python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: re2-1:20211101-20.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:41.123 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:41.161 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-test 2026-02-20T22:59:41.467 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:12 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: ceph-test x86_64 2:20.2.0-677.gf7870454.el9 ceph 84 M 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: libcephsqlite x86_64 2:20.2.0-677.gf7870454.el9 ceph 164 k 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:Install 5 Packages 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:41.549 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 85 M 2026-02-20T22:59:41.550 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 365 M 2026-02-20T22:59:41.550 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:42.061 INFO:teuthology.orchestra.run.trial197.stdout:(1/5): libcephsqlite-20.2.0-677.gf7870454.el9.x 1.8 MB/s | 164 kB 00:00 2026-02-20T22:59:42.332 INFO:teuthology.orchestra.run.trial197.stdout:(2/5): libxslt-1.1.34-12.el9.x86_64.rpm 648 kB/s | 233 kB 00:00 2026-02-20T22:59:42.380 INFO:teuthology.orchestra.run.trial197.stdout:(3/5): socat-1.7.4.1-8.el9.x86_64.rpm 950 kB/s | 303 kB 00:00 2026-02-20T22:59:42.631 INFO:teuthology.orchestra.run.trial197.stdout:(4/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 213 kB/s | 64 kB 00:00 2026-02-20T22:59:42.961 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:42.961 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /sys 2026-02-20T22:59:42.961 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /proc 2026-02-20T22:59:42.962 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /mnt 2026-02-20T22:59:42.962 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /var/tmp 2026-02-20T22:59:42.962 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /home 2026-02-20T22:59:42.962 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /root 2026-02-20T22:59:42.962 INFO:teuthology.orchestra.run.trial004.stdout:skipping the directory /tmp 2026-02-20T22:59:42.962 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:43.631 INFO:teuthology.orchestra.run.trial197.stdout:(5/5): ceph-test-20.2.0-677.gf7870454.el9.x86_6 51 MB/s | 84 MB 00:01 2026-02-20T22:59:43.633 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:43.633 INFO:teuthology.orchestra.run.trial197.stdout:Total 41 MB/s | 85 MB 00:02 2026-02-20T22:59:43.660 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:59:43.669 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:59:43.670 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:59:43.956 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:59:43.957 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:59:43.990 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:59:44.013 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T22:59:44.013 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:44.014 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-20T22:59:44.014 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:59:44.014 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T22:59:44.014 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:44.015 INFO:teuthology.orchestra.run.trial004.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:59:44.026 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T22:59:44.026 INFO:teuthology.orchestra.run.trial004.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:59:44.079 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:59:44.079 INFO:teuthology.orchestra.run.trial004.stdout:Creating group 'qat' with GID 992. 2026-02-20T22:59:44.079 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:44.269 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:59:44.274 INFO:teuthology.orchestra.run.trial197.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-20T22:59:44.278 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-20T22:59:44.286 INFO:teuthology.orchestra.run.trial197.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-20T22:59:44.287 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 1/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 6/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 7/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 8/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 9/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 10/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 13/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 14/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 15/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 16/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 17/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 18/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 19/36 2026-02-20T22:59:44.415 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 20/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 21/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 22/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 23/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 24/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 25/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 26/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 27/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 28/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 29/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 30/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : re2-1:20211101-20.el9.x86_64 31/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 32/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librados2-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 34/36 2026-02-20T22:59:44.416 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 35/36 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout:Upgraded: 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: librados2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-20T22:59:44.479 INFO:teuthology.orchestra.run.trial004.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: re2-1:20211101-20.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:44.480 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T22:59:44.523 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-test 2026-02-20T22:59:44.834 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:13 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T22:59:44.916 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout: ceph-test x86_64 2:20.2.0-677.gf7870454.el9 ceph 84 M 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout: libcephsqlite x86_64 2:20.2.0-677.gf7870454.el9 ceph 164 k 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-20T22:59:44.918 INFO:teuthology.orchestra.run.trial004.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout:Install 5 Packages 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 85 M 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 365 M 2026-02-20T22:59:44.919 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T22:59:45.380 INFO:teuthology.orchestra.run.trial004.stdout:(1/5): libcephsqlite-20.2.0-677.gf7870454.el9.x 1.8 MB/s | 164 kB 00:00 2026-02-20T22:59:45.445 INFO:teuthology.orchestra.run.trial004.stdout:(2/5): libxslt-1.1.34-12.el9.x86_64.rpm 1.5 MB/s | 233 kB 00:00 2026-02-20T22:59:45.491 INFO:teuthology.orchestra.run.trial004.stdout:(3/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.3 MB/s | 64 kB 00:00 2026-02-20T22:59:45.496 INFO:teuthology.orchestra.run.trial004.stdout:(4/5): socat-1.7.4.1-8.el9.x86_64.rpm 2.6 MB/s | 303 kB 00:00 2026-02-20T22:59:46.946 INFO:teuthology.orchestra.run.trial004.stdout:(5/5): ceph-test-20.2.0-677.gf7870454.el9.x86_6 51 MB/s | 84 MB 00:01 2026-02-20T22:59:46.947 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:46.947 INFO:teuthology.orchestra.run.trial004.stdout:Total 42 MB/s | 85 MB 00:02 2026-02-20T22:59:46.972 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T22:59:46.982 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T22:59:46.982 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T22:59:47.271 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T22:59:47.271 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T22:59:47.587 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T22:59:47.593 INFO:teuthology.orchestra.run.trial004.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-20T22:59:47.599 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-20T22:59:47.606 INFO:teuthology.orchestra.run.trial004.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-20T22:59:47.607 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:59:48.085 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:59:48.103 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:59:48.421 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:59:48.421 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 1/5 2026-02-20T22:59:48.421 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2/5 2026-02-20T22:59:48.421 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-20T22:59:48.421 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:48.476 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:48.514 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph 2026-02-20T22:59:48.820 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:19 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:48.902 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout: ceph x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.5 k 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mds x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.3 M 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr x86_64 2:20.2.0-677.gf7870454.el9 ceph 961 k 2026-02-20T22:59:48.904 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-modules-core noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 290 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mon x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.0 M 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: ceph-osd x86_64 2:20.2.0-677.gf7870454.el9 ceph 17 M 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-20T22:59:48.905 INFO:teuthology.orchestra.run.trial197.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-20T22:59:48.906 INFO:teuthology.orchestra.run.trial197.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:48.907 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:48.908 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:48.908 INFO:teuthology.orchestra.run.trial197.stdout:Install 39 Packages 2026-02-20T22:59:48.908 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:48.908 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 30 M 2026-02-20T22:59:48.909 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 99 M 2026-02-20T22:59:48.909 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:49.774 INFO:teuthology.orchestra.run.trial197.stdout:(1/39): ceph-20.2.0-677.gf7870454.el9.x86_64.rp 127 kB/s | 6.5 kB 00:00 2026-02-20T22:59:49.859 INFO:teuthology.orchestra.run.trial197.stdout:(2/39): ceph-mgr-20.2.0-677.gf7870454.el9.x86_6 6.9 MB/s | 961 kB 00:00 2026-02-20T22:59:49.888 INFO:teuthology.orchestra.run.trial197.stdout:(3/39): ceph-mds-20.2.0-677.gf7870454.el9.x86_6 14 MB/s | 2.3 MB 00:00 2026-02-20T22:59:49.931 INFO:teuthology.orchestra.run.trial197.stdout:(4/39): ceph-mgr-modules-core-20.2.0-677.gf7870 6.6 MB/s | 290 kB 00:00 2026-02-20T22:59:50.021 INFO:teuthology.orchestra.run.trial197.stdout:(5/39): ceph-mon-20.2.0-677.gf7870454.el9.x86_6 20 MB/s | 5.0 MB 00:00 2026-02-20T22:59:50.263 INFO:teuthology.orchestra.run.trial197.stdout:(6/39): ceph-osd-20.2.0-677.gf7870454.el9.x86_6 42 MB/s | 17 MB 00:00 2026-02-20T22:59:50.415 INFO:teuthology.orchestra.run.trial197.stdout:(7/39): ledmon-libs-1.1.0-3.el9.x86_64.rpm 83 kB/s | 40 kB 00:00 2026-02-20T22:59:50.522 INFO:teuthology.orchestra.run.trial197.stdout:(8/39): libconfig-1.7.2-9.el9.x86_64.rpm 144 kB/s | 72 kB 00:00 2026-02-20T22:59:50.700 INFO:teuthology.orchestra.run.trial197.stdout:(9/39): python3-ply-3.11-14.el9.noarch.rpm 599 kB/s | 106 kB 00:00 2026-02-20T22:59:50.800 INFO:teuthology.orchestra.run.trial197.stdout:(10/39): python3-pycparser-2.20-6.el9.noarch.rp 1.3 MB/s | 135 kB 00:00 2026-02-20T22:59:50.829 INFO:teuthology.orchestra.run.trial197.stdout:(11/39): python3-cryptography-36.0.1-5.el9.x86_ 3.0 MB/s | 1.2 MB 00:00 2026-02-20T22:59:50.900 INFO:teuthology.orchestra.run.trial197.stdout:(12/39): python3-requests-2.25.1-10.el9.noarch. 1.2 MB/s | 126 kB 00:00 2026-02-20T22:59:50.929 INFO:teuthology.orchestra.run.trial197.stdout:(13/39): python3-urllib3-1.26.5-7.el9.noarch.rp 2.1 MB/s | 218 kB 00:00 2026-02-20T22:59:50.990 INFO:teuthology.orchestra.run.trial197.stdout:(14/39): python3-cffi-1.14.5-5.el9.x86_64.rpm 348 kB/s | 253 kB 00:00 2026-02-20T22:59:51.000 INFO:teuthology.orchestra.run.trial197.stdout:(15/39): unzip-6.0-59.el9.x86_64.rpm 1.8 MB/s | 182 kB 00:00 2026-02-20T22:59:51.028 INFO:teuthology.orchestra.run.trial197.stdout:(16/39): zip-3.0-35.el9.x86_64.rpm 2.6 MB/s | 266 kB 00:00 2026-02-20T22:59:51.231 INFO:teuthology.orchestra.run.trial197.stdout:(17/39): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 1.0 MB/s | 246 kB 00:00 2026-02-20T22:59:51.237 INFO:teuthology.orchestra.run.trial197.stdout:(18/39): lua-5.4.4-4.el9.x86_64.rpm 796 kB/s | 188 kB 00:00 2026-02-20T22:59:51.266 INFO:teuthology.orchestra.run.trial197.stdout:(19/39): python3-libstoragemgmt-1.10.1-1.el9.x8 744 kB/s | 177 kB 00:00 2026-02-20T22:59:51.317 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T22:59:51.335 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:59:51.391 INFO:teuthology.orchestra.run.trial197.stdout:(20/39): python3-packaging-20.9-5.el9.noarch.rp 483 kB/s | 77 kB 00:00 2026-02-20T22:59:51.395 INFO:teuthology.orchestra.run.trial197.stdout:(21/39): python3-toml-0.10.2-6.el9.noarch.rpm 263 kB/s | 42 kB 00:00 2026-02-20T22:59:51.424 INFO:teuthology.orchestra.run.trial197.stdout:(22/39): lua-devel-5.4.4-4.el9.x86_64.rpm 141 kB/s | 22 kB 00:00 2026-02-20T22:59:51.675 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T22:59:51.675 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 1/5 2026-02-20T22:59:51.675 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2/5 2026-02-20T22:59:51.675 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-20T22:59:51.675 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-20T22:59:51.730 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-20T22:59:51.731 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:51.732 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T22:59:51.734 INFO:teuthology.orchestra.run.trial197.stdout:(23/39): python3-autocommand-2.2.2-8.el9.noarch 87 kB/s | 29 kB 00:00 2026-02-20T22:59:51.768 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph 2026-02-20T22:59:51.804 INFO:teuthology.orchestra.run.trial197.stdout:(24/39): python3-backports-tarfile-1.2.0-1.el9. 158 kB/s | 60 kB 00:00 2026-02-20T22:59:51.900 INFO:teuthology.orchestra.run.trial197.stdout:(25/39): luarocks-3.9.2-5.el9.noarch.rpm 297 kB/s | 151 kB 00:00 2026-02-20T22:59:51.949 INFO:teuthology.orchestra.run.trial197.stdout:(26/39): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 201 kB/s | 43 kB 00:00 2026-02-20T22:59:52.076 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:21 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T22:59:52.140 INFO:teuthology.orchestra.run.trial197.stdout:(27/39): python3-cheroot-10.0.1-4.el9.noarch.rp 516 kB/s | 173 kB 00:00 2026-02-20T22:59:52.159 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout: ceph x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.5 k 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mds x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.3 M 2026-02-20T22:59:52.161 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr x86_64 2:20.2.0-677.gf7870454.el9 ceph 961 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-modules-core noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 290 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mon x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.0 M 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: ceph-osd x86_64 2:20.2.0-677.gf7870454.el9 ceph 17 M 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-20T22:59:52.162 INFO:teuthology.orchestra.run.trial004.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-20T22:59:52.163 INFO:teuthology.orchestra.run.trial004.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T22:59:52.164 INFO:teuthology.orchestra.run.trial004.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout:Install 39 Packages 2026-02-20T22:59:52.165 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T22:59:52.166 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 30 M 2026-02-20T22:59:52.166 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 99 M 2026-02-20T22:59:52.166 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T22:59:52.377 INFO:teuthology.orchestra.run.trial197.stdout:(28/39): python3-jaraco-classes-3.2.1-5.el9.noa 75 kB/s | 18 kB 00:00 2026-02-20T22:59:52.378 INFO:teuthology.orchestra.run.trial197.stdout:(29/39): python3-jaraco-8.2.1-3.el9.noarch.rpm 25 kB/s | 11 kB 00:00 2026-02-20T22:59:52.495 INFO:teuthology.orchestra.run.trial197.stdout:(30/39): python3-cherrypy-18.6.1-2.el9.noarch.r 602 kB/s | 358 kB 00:00 2026-02-20T22:59:52.501 INFO:teuthology.orchestra.run.trial004.stdout:(1/39): ceph-20.2.0-677.gf7870454.el9.x86_64.rp 115 kB/s | 6.5 kB 00:00 2026-02-20T22:59:52.575 INFO:teuthology.orchestra.run.trial004.stdout:(2/39): ceph-mgr-20.2.0-677.gf7870454.el9.x86_6 7.2 MB/s | 961 kB 00:00 2026-02-20T22:59:52.595 INFO:teuthology.orchestra.run.trial004.stdout:(3/39): ceph-mds-20.2.0-677.gf7870454.el9.x86_6 16 MB/s | 2.3 MB 00:00 2026-02-20T22:59:52.618 INFO:teuthology.orchestra.run.trial197.stdout:(31/39): python3-jaraco-functools-3.5.0-2.el9.n 158 kB/s | 19 kB 00:00 2026-02-20T22:59:52.623 INFO:teuthology.orchestra.run.trial197.stdout:(32/39): python3-jaraco-collections-3.0.0-8.el9 94 kB/s | 23 kB 00:00 2026-02-20T22:59:52.630 INFO:teuthology.orchestra.run.trial004.stdout:(4/39): ceph-mgr-modules-core-20.2.0-677.gf7870 8.3 MB/s | 290 kB 00:00 2026-02-20T22:59:52.745 INFO:teuthology.orchestra.run.trial004.stdout:(5/39): ledmon-libs-1.1.0-3.el9.x86_64.rpm 352 kB/s | 40 kB 00:00 2026-02-20T22:59:52.768 INFO:teuthology.orchestra.run.trial004.stdout:(6/39): ceph-mon-20.2.0-677.gf7870454.el9.x86_6 19 MB/s | 5.0 MB 00:00 2026-02-20T22:59:52.804 INFO:teuthology.orchestra.run.trial004.stdout:(7/39): libconfig-1.7.2-9.el9.x86_64.rpm 1.2 MB/s | 72 kB 00:00 2026-02-20T22:59:52.862 INFO:teuthology.orchestra.run.trial197.stdout:(33/39): python3-jaraco-text-4.0.0-2.el9.noarch 108 kB/s | 26 kB 00:00 2026-02-20T22:59:52.875 INFO:teuthology.orchestra.run.trial197.stdout:(34/39): python3-jaraco-context-6.0.1-3.el9.noa 39 kB/s | 20 kB 00:00 2026-02-20T22:59:52.885 INFO:teuthology.orchestra.run.trial197.stdout:(35/39): python3-more-itertools-8.12.0-2.el9.no 302 kB/s | 79 kB 00:00 2026-02-20T22:59:52.924 INFO:teuthology.orchestra.run.trial004.stdout:(8/39): python3-cffi-1.14.5-5.el9.x86_64.rpm 1.6 MB/s | 253 kB 00:00 2026-02-20T22:59:52.928 INFO:teuthology.orchestra.run.trial004.stdout:(9/39): python3-cryptography-36.0.1-5.el9.x86_6 10 MB/s | 1.2 MB 00:00 2026-02-20T22:59:52.956 INFO:teuthology.orchestra.run.trial004.stdout:(10/39): python3-ply-3.11-14.el9.noarch.rpm 3.3 MB/s | 106 kB 00:00 2026-02-20T22:59:52.956 INFO:teuthology.orchestra.run.trial004.stdout:(11/39): python3-pycparser-2.20-6.el9.noarch.rp 4.8 MB/s | 135 kB 00:00 2026-02-20T22:59:52.982 INFO:teuthology.orchestra.run.trial004.stdout:(12/39): ceph-osd-20.2.0-677.gf7870454.el9.x86_ 42 MB/s | 17 MB 00:00 2026-02-20T22:59:52.983 INFO:teuthology.orchestra.run.trial004.stdout:(13/39): python3-requests-2.25.1-10.el9.noarch. 4.7 MB/s | 126 kB 00:00 2026-02-20T22:59:52.996 INFO:teuthology.orchestra.run.trial004.stdout:(14/39): python3-urllib3-1.26.5-7.el9.noarch.rp 5.4 MB/s | 218 kB 00:00 2026-02-20T22:59:53.011 INFO:teuthology.orchestra.run.trial004.stdout:(15/39): zip-3.0-35.el9.x86_64.rpm 9.4 MB/s | 266 kB 00:00 2026-02-20T22:59:53.102 INFO:teuthology.orchestra.run.trial197.stdout:(36/39): python3-portend-3.1.0-2.el9.noarch.rpm 68 kB/s | 16 kB 00:00 2026-02-20T22:59:53.111 INFO:teuthology.orchestra.run.trial197.stdout:(37/39): python3-tempora-5.0.0-2.el9.noarch.rpm 158 kB/s | 36 kB 00:00 2026-02-20T22:59:53.127 INFO:teuthology.orchestra.run.trial004.stdout:(16/39): unzip-6.0-59.el9.x86_64.rpm 1.2 MB/s | 182 kB 00:00 2026-02-20T22:59:53.158 INFO:teuthology.orchestra.run.trial064.stdout:(34/34): mailcap-2.1.49-5.el9.noarch.rpm 2.0 kB/s | 33 kB 00:16 2026-02-20T22:59:53.165 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:53.165 INFO:teuthology.orchestra.run.trial064.stdout:Total 4.4 MB/s | 78 MB 00:17 2026-02-20T22:59:53.194 INFO:teuthology.orchestra.run.trial197.stdout:(38/39): python3-pyOpenSSL-21.0.0-1.el9.noarch. 282 kB/s | 90 kB 00:00 2026-02-20T22:59:53.252 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T22:59:53.268 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T22:59:53.269 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T22:59:53.344 INFO:teuthology.orchestra.run.trial197.stdout:(39/39): python3-zc-lockfile-2.0-10.el9.noarch. 83 kB/s | 20 kB 00:00 2026-02-20T22:59:53.347 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:53.347 INFO:teuthology.orchestra.run.trial197.stdout:Total 6.8 MB/s | 30 MB 00:04 2026-02-20T22:59:53.488 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:59:53.508 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:59:53.508 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:59:53.555 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T22:59:53.555 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T22:59:53.651 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:59:53.651 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:59:53.718 INFO:teuthology.orchestra.run.trial004.stdout:(17/39): lua-5.4.4-4.el9.x86_64.rpm 266 kB/s | 188 kB 00:00 2026-02-20T22:59:53.782 INFO:teuthology.orchestra.run.trial004.stdout:(18/39): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 313 kB/s | 246 kB 00:00 2026-02-20T22:59:53.838 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:59:53.840 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/39 2026-02-20T22:59:53.845 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/39 2026-02-20T22:59:53.849 INFO:teuthology.orchestra.run.trial197.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/39 2026-02-20T22:59:53.851 INFO:teuthology.orchestra.run.trial197.stdout: Installing : unzip-6.0-59.el9.x86_64 4/39 2026-02-20T22:59:53.857 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 5/39 2026-02-20T22:59:53.876 INFO:teuthology.orchestra.run.trial004.stdout:(19/39): python3-packaging-20.9-5.el9.noarch.rp 488 kB/s | 77 kB 00:00 2026-02-20T22:59:53.881 INFO:teuthology.orchestra.run.trial197.stdout: Installing : zip-3.0-35.el9.x86_64 6/39 2026-02-20T22:59:53.884 INFO:teuthology.orchestra.run.trial197.stdout: Installing : luarocks-3.9.2-5.el9.noarch 7/39 2026-02-20T22:59:53.889 INFO:teuthology.orchestra.run.trial197.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 8/39 2026-02-20T22:59:53.890 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T22:59:53.894 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 9/39 2026-02-20T22:59:53.900 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 10/39 2026-02-20T22:59:53.901 INFO:teuthology.orchestra.run.trial064.stdout: Installing : thrift-0.15.0-4.el9.x86_64 1/36 2026-02-20T22:59:53.904 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 11/39 2026-02-20T22:59:53.909 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 12/39 2026-02-20T22:59:53.913 INFO:teuthology.orchestra.run.trial004.stdout:(20/39): python3-libstoragemgmt-1.10.1-1.el9.x8 225 kB/s | 177 kB 00:00 2026-02-20T22:59:53.915 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 13/39 2026-02-20T22:59:53.918 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 14/39 2026-02-20T22:59:53.924 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 15/39 2026-02-20T22:59:53.928 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 16/39 2026-02-20T22:59:53.935 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 17/39 2026-02-20T22:59:53.938 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 18/39 2026-02-20T22:59:53.941 INFO:teuthology.orchestra.run.trial004.stdout:(21/39): python3-toml-0.10.2-6.el9.noarch.rpm 262 kB/s | 42 kB 00:00 2026-02-20T22:59:53.948 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 19/39 2026-02-20T22:59:53.971 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:59:53.971 INFO:teuthology.orchestra.run.trial004.stdout:(22/39): lua-devel-5.4.4-4.el9.x86_64.rpm 237 kB/s | 22 kB 00:00 2026-02-20T22:59:53.983 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 21/39 2026-02-20T22:59:53.990 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 22/39 2026-02-20T22:59:54.003 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/39 2026-02-20T22:59:54.018 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/39 2026-02-20T22:59:54.055 INFO:teuthology.orchestra.run.trial064.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 2/36 2026-02-20T22:59:54.058 INFO:teuthology.orchestra.run.trial064.stdout: Upgrading : librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:54.068 INFO:teuthology.orchestra.run.trial004.stdout:(23/39): python3-autocommand-2.2.2-8.el9.noarch 233 kB/s | 29 kB 00:00 2026-02-20T22:59:54.089 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: librados2-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T22:59:54.093 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/39 2026-02-20T22:59:54.102 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 26/39 2026-02-20T22:59:54.107 INFO:teuthology.orchestra.run.trial004.stdout:(24/39): python3-backports-tarfile-1.2.0-1.el9. 443 kB/s | 60 kB 00:00 2026-02-20T22:59:54.125 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/39 2026-02-20T22:59:54.126 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T22:59:54.127 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:54.140 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T22:59:54.142 INFO:teuthology.orchestra.run.trial004.stdout:(25/39): luarocks-3.9.2-5.el9.noarch.rpm 661 kB/s | 151 kB 00:00 2026-02-20T22:59:54.147 INFO:teuthology.orchestra.run.trial064.stdout: Installing : liboath-2.6.12-1.el9.x86_64 6/36 2026-02-20T22:59:54.150 INFO:teuthology.orchestra.run.trial064.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 7/36 2026-02-20T22:59:54.153 INFO:teuthology.orchestra.run.trial064.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 8/36 2026-02-20T22:59:54.154 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 28/39 2026-02-20T22:59:54.157 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 9/36 2026-02-20T22:59:54.159 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/39 2026-02-20T22:59:54.166 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 10/36 2026-02-20T22:59:54.178 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T22:59:54.178 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:54.192 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T22:59:54.205 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/39 2026-02-20T22:59:54.222 INFO:teuthology.orchestra.run.trial064.stdout: Installing : re2-1:20211101-20.el9.x86_64 13/36 2026-02-20T22:59:54.227 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 14/36 2026-02-20T22:59:54.234 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 15/36 2026-02-20T22:59:54.236 INFO:teuthology.orchestra.run.trial064.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 16/36 2026-02-20T22:59:54.240 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 17/36 2026-02-20T22:59:54.249 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 31/39 2026-02-20T22:59:54.250 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:59:54.274 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T22:59:54.274 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:54.274 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-20T22:59:54.274 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:59:54.275 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T22:59:54.275 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:54.280 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 33/39 2026-02-20T22:59:54.298 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:59:54.298 INFO:teuthology.orchestra.run.trial197.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-20T22:59:54.298 INFO:teuthology.orchestra.run.trial197.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-20T22:59:54.298 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:54.306 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:59:54.331 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T22:59:54.331 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-20T22:59:54.331 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:54.363 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 18/36 2026-02-20T22:59:54.364 INFO:teuthology.orchestra.run.trial064.stdout: Upgrading : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:59:54.390 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 19/36 2026-02-20T22:59:54.392 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 20/36 2026-02-20T22:59:54.398 INFO:teuthology.orchestra.run.trial064.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 21/36 2026-02-20T22:59:54.678 INFO:teuthology.orchestra.run.trial064.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 22/36 2026-02-20T22:59:54.679 INFO:teuthology.orchestra.run.trial064.stdout: Installing : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:59:54.696 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 23/36 2026-02-20T22:59:54.700 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 24/36 2026-02-20T22:59:54.705 INFO:teuthology.orchestra.run.trial064.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 25/36 2026-02-20T22:59:54.707 INFO:teuthology.orchestra.run.trial064.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 26/36 2026-02-20T22:59:54.708 INFO:teuthology.orchestra.run.trial064.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:59:54.726 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 27/36 2026-02-20T22:59:54.729 INFO:teuthology.orchestra.run.trial064.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 28/36 2026-02-20T22:59:54.761 INFO:teuthology.orchestra.run.trial064.stdout: Installing : mailcap-2.1.49-5.el9.noarch 29/36 2026-02-20T22:59:54.762 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 30/36 2026-02-20T22:59:55.041 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 35/39 2026-02-20T22:59:55.043 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:59:55.069 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T22:59:55.070 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:55.070 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-20T22:59:55.070 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:59:55.070 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T22:59:55.070 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:55.298 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:59:55.320 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T22:59:55.320 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:55.320 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-20T22:59:55.320 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:59:55.320 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T22:59:55.321 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:55.425 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:59:55.447 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T22:59:55.447 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:55.447 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-20T22:59:55.447 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:59:55.447 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T22:59:55.447 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:55.464 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:59:55.784 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T22:59:55.784 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-2:20.2.0-677.gf7870454.el9.x86_64 1/39 2026-02-20T22:59:55.784 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2/39 2026-02-20T22:59:55.784 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 3/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 4/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 5/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 6/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 7/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 8/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 9/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 10/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-ply-3.11-14.el9.noarch 11/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 12/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 13/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 14/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : unzip-6.0-59.el9.x86_64 15/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : zip-3.0-35.el9.x86_64 16/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 17/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : lua-5.4.4-4.el9.x86_64 18/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 19/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 21/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 22/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 23/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 24/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 25/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 26/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 27/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 28/39 2026-02-20T22:59:55.785 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 29/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 30/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 31/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 32/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 33/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 34/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 35/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 36/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 37/39 2026-02-20T22:59:55.786 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 38/39 2026-02-20T22:59:55.835 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:55.837 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:55.842 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 39/39 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ceph-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: lua-5.4.4-4.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-20T22:59:55.843 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-ply-3.11-14.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: unzip-6.0-59.el9.x86_64 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: zip-3.0-35.el9.x86_64 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:55.844 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:55.878 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-base 2026-02-20T22:59:56.133 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 31/36 2026-02-20T22:59:56.136 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:59:56.177 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 32/36 2026-02-20T22:59:56.178 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-20T22:59:56.178 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-20T22:59:56.178 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T22:59:56.181 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T22:59:56.184 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:27 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:56.248 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:59:56.266 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:56.266 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T22:59:56.266 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:56.287 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install cephadm 2026-02-20T22:59:56.584 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:27 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:56.666 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout: cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 1.0 M 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:56.667 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:56.668 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T22:59:56.668 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:56.668 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 1.0 M 2026-02-20T22:59:56.668 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 1.0 M 2026-02-20T22:59:56.668 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:56.789 INFO:teuthology.orchestra.run.trial197.stdout:cephadm-20.2.0-677.gf7870454.el9.noarch.rpm 8.2 MB/s | 1.0 MB 00:00 2026-02-20T22:59:56.790 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:56.790 INFO:teuthology.orchestra.run.trial197.stdout:Total 8.1 MB/s | 1.0 MB 00:00 2026-02-20T22:59:56.790 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:59:56.793 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:59:56.793 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:59:56.797 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:59:56.797 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:59:56.815 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:59:56.873 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:59:56.887 INFO:teuthology.orchestra.run.trial197.stdout: Installing : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:59:56.953 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:59:57.007 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T22:59:57.007 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.007 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T22:59:57.007 INFO:teuthology.orchestra.run.trial197.stdout: cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T22:59:57.007 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.008 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:57.035 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-immutable-object-cache 2026-02-20T22:59:57.343 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-677.gf7870454.el9 ceph 154 k 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 154 k 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 447 k 2026-02-20T22:59:57.425 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:57.513 INFO:teuthology.orchestra.run.trial197.stdout:ceph-immutable-object-cache-20.2.0-677.gf787045 1.7 MB/s | 154 kB 00:00 2026-02-20T22:59:57.513 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T22:59:57.513 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-20T22:59:57.513 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T22:59:57.518 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T22:59:57.518 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T22:59:57.544 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T22:59:57.545 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T22:59:57.594 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T22:59:57.596 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:59:57.618 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:59:57.618 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T22:59:57.618 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-20T22:59:57.618 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.918 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T22:59:57.918 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.918 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T22:59:57.918 INFO:teuthology.orchestra.run.trial197.stdout: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T22:59:57.918 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:57.918 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:57.944 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr 2026-02-20T22:59:58.248 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:29 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:58.313 INFO:teuthology.orchestra.run.trial197.stdout:Package ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T22:59:58.330 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:58.331 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T22:59:58.331 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T22:59:58.351 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-dashboard 2026-02-20T22:59:58.660 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:29 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T22:59:58.743 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T22:59:58.743 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:58.743 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T22:59:58.743 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-dashboard noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 11 M 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: ceph-grafana-dashboards noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 43 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: ceph-prometheus-alerts noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 17 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-20T22:59:58.744 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout:Install 14 Packages 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 16 M 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 158 M 2026-02-20T22:59:58.745 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T22:59:59.556 INFO:teuthology.orchestra.run.trial197.stdout:(1/14): ceph-prometheus-alerts-20.2.0-677.gf787 260 kB/s | 17 kB 00:00 2026-02-20T22:59:59.562 INFO:teuthology.orchestra.run.trial197.stdout:(2/14): ceph-grafana-dashboards-20.2.0-677.gf78 591 kB/s | 43 kB 00:00 2026-02-20T22:59:59.779 INFO:teuthology.orchestra.run.trial197.stdout:(3/14): ceph-mgr-dashboard-20.2.0-677.gf7870454 37 MB/s | 11 MB 00:00 2026-02-20T23:00:00.197 INFO:teuthology.orchestra.run.trial197.stdout:(4/14): python3-jmespath-1.0.1-1.el9.noarch.rpm 75 kB/s | 48 kB 00:00 2026-02-20T23:00:00.268 INFO:teuthology.orchestra.run.trial197.stdout:(5/14): protobuf-compiler-3.14.0-17.el9.x86_64. 12 MB/s | 862 kB 00:00 2026-02-20T23:00:00.420 INFO:teuthology.orchestra.run.trial197.stdout:(6/14): abseil-cpp-20211102.0-4.el9.x86_64.rpm 3.5 MB/s | 551 kB 00:00 2026-02-20T23:00:00.459 INFO:teuthology.orchestra.run.trial197.stdout:(7/14): grpc-data-1.46.7-10.el9.noarch.rpm 500 kB/s | 19 kB 00:00 2026-02-20T23:00:00.488 INFO:teuthology.orchestra.run.trial197.stdout:(8/14): python3-protobuf-3.14.0-17.el9.noarch.r 377 kB/s | 267 kB 00:00 2026-02-20T23:00:00.505 INFO:teuthology.orchestra.run.trial197.stdout:(9/14): protobuf-3.14.0-17.el9.x86_64.rpm 1.1 MB/s | 1.0 MB 00:00 2026-02-20T23:00:00.539 INFO:teuthology.orchestra.run.trial197.stdout:(10/14): python3-grpcio-1.46.7-10.el9.x86_64.rp 26 MB/s | 2.0 MB 00:00 2026-02-20T23:00:00.564 INFO:teuthology.orchestra.run.trial197.stdout:(11/14): python3-routes-2.5.1-5.el9.noarch.rpm 7.3 MB/s | 188 kB 00:00 2026-02-20T23:00:00.566 INFO:teuthology.orchestra.run.trial197.stdout:(12/14): python3-repoze-lru-0.7-16.el9.noarch.r 505 kB/s | 31 kB 00:00 2026-02-20T23:00:00.585 INFO:teuthology.orchestra.run.trial197.stdout:(13/14): python3-grpcio-tools-1.46.7-10.el9.x86 1.4 MB/s | 144 kB 00:00 2026-02-20T23:00:00.600 INFO:teuthology.orchestra.run.trial197.stdout:(14/14): python3-xmltodict-0.12.0-15.el9.noarch 619 kB/s | 22 kB 00:00 2026-02-20T23:00:00.602 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:00.602 INFO:teuthology.orchestra.run.trial197.stdout:Total 8.5 MB/s | 16 MB 00:01 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /sys 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /proc 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /mnt 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /var/tmp 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /home 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /root 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout:skipping the directory /tmp 2026-02-20T23:00:00.633 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:00.639 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:00.649 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:00.649 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:00.744 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:00.745 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:00.861 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:00.869 INFO:teuthology.orchestra.run.trial197.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 1/14 2026-02-20T23:00:00.872 INFO:teuthology.orchestra.run.trial197.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 2/14 2026-02-20T23:00:00.877 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 3/14 2026-02-20T23:00:00.888 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 4/14 2026-02-20T23:00:00.890 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 5/14 2026-02-20T23:00:00.917 INFO:teuthology.orchestra.run.trial197.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 6/14 2026-02-20T23:00:00.960 INFO:teuthology.orchestra.run.trial197.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 7/14 2026-02-20T23:00:00.989 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 8/14 2026-02-20T23:00:00.999 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 9/14 2026-02-20T23:00:01.006 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/14 2026-02-20T23:00:01.008 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 11/14 2026-02-20T23:00:01.015 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 12/14 2026-02-20T23:00:01.659 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T23:00:01.683 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 34/36 2026-02-20T23:00:01.683 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:01.683 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-20T23:00:01.683 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T23:00:01.683 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-20T23:00:01.683 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:01.685 INFO:teuthology.orchestra.run.trial064.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T23:00:01.697 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 35/36 2026-02-20T23:00:01.697 INFO:teuthology.orchestra.run.trial064.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T23:00:01.753 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T23:00:01.753 INFO:teuthology.orchestra.run.trial064.stdout:Creating group 'qat' with GID 992. 2026-02-20T23:00:01.753 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 1/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 3/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 4/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 5/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 6/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librgw2-2:20.2.0-677.gf7870454.el9.x86_64 7/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x 8/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86 9/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 10/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 11/36 2026-02-20T23:00:02.077 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 12/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 13/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 14/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 15/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 16/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 17/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 18/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 19/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 20/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 21/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 22/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 23/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 24/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 25/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 26/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 27/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 28/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 29/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 30/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : re2-1:20211101-20.el9.x86_64 31/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 32/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librados2-2:20.2.0-677.gf7870454.el9.x86_64 33/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 34/36 2026-02-20T23:00:02.078 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librbd1-2:20.2.0-677.gf7870454.el9.x86_64 35/36 2026-02-20T23:00:02.139 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 13/14 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 36/36 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout:Upgraded: 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: librados2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: librbd1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: ceph-radosgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: ceph-selinux-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libradosstriper1-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: librgw2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: python3-ceph-argparse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: python3-ceph-common-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.141 INFO:teuthology.orchestra.run.trial064.stdout: python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: re2-1:20211101-20.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:02.142 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:02.144 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T23:00:02.183 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-test 2026-02-20T23:00:02.345 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 1/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 2/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 3/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 4/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 5/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 6/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 7/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 8/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 9/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 10/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 11/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 12/14 2026-02-20T23:00:02.346 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 13/14 2026-02-20T23:00:02.401 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 14/14 2026-02-20T23:00:02.401 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:02.401 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:02.401 INFO:teuthology.orchestra.run.trial197.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-20T23:00:02.401 INFO:teuthology.orchestra.run.trial197.stdout: ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-20T23:00:02.402 INFO:teuthology.orchestra.run.trial197.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-20T23:00:02.403 INFO:teuthology.orchestra.run.trial197.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-20T23:00:02.403 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:02.403 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:02.433 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-20T23:00:02.489 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:28 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:02.572 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:02.573 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:02.573 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:02.573 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:02.573 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:02.573 INFO:teuthology.orchestra.run.trial064.stdout: ceph-test x86_64 2:20.2.0-677.gf7870454.el9 ceph 84 M 2026-02-20T23:00:02.573 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout: libcephsqlite x86_64 2:20.2.0-677.gf7870454.el9 ceph 164 k 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout:Install 5 Packages 2026-02-20T23:00:02.574 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:02.575 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 85 M 2026-02-20T23:00:02.575 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 365 M 2026-02-20T23:00:02.575 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:02.710 INFO:teuthology.orchestra.run.trial064.stdout:(1/5): libxslt-1.1.34-12.el9.x86_64.rpm 3.2 MB/s | 233 kB 00:00 2026-02-20T23:00:02.732 INFO:teuthology.orchestra.run.trial064.stdout:(2/5): libcephsqlite-20.2.0-677.gf7870454.el9.x 1.7 MB/s | 164 kB 00:00 2026-02-20T23:00:02.733 INFO:teuthology.orchestra.run.trial064.stdout:(3/5): socat-1.7.4.1-8.el9.x86_64.rpm 12 MB/s | 303 kB 00:00 2026-02-20T23:00:02.739 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:33 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:02.772 INFO:teuthology.orchestra.run.trial064.stdout:(4/5): xmlstarlet-1.6.1-20.el9.x86_64.rpm 1.6 MB/s | 64 kB 00:00 2026-02-20T23:00:02.821 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:02.823 INFO:teuthology.orchestra.run.trial197.stdout:====================================================================================== 2026-02-20T23:00:02.823 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T23:00:02.823 INFO:teuthology.orchestra.run.trial197.stdout:====================================================================================== 2026-02-20T23:00:02.823 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:02.823 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 7.4 M 2026-02-20T23:00:02.823 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-20T23:00:02.824 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout:====================================================================================== 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout:Install 12 Packages 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 43 M 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 234 M 2026-02-20T23:00:02.825 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:03.385 INFO:teuthology.orchestra.run.trial197.stdout:(1/12): ceph-mgr-diskprediction-local-20.2.0-67 17 MB/s | 7.4 MB 00:00 2026-02-20T23:00:03.412 INFO:teuthology.orchestra.run.trial197.stdout:(2/12): flexiblas-3.0.4-9.el9.x86_64.rpm 1.1 MB/s | 30 kB 00:00 2026-02-20T23:00:03.471 INFO:teuthology.orchestra.run.trial197.stdout:(3/12): flexiblas-netlib-3.0.4-9.el9.x86_64.rpm 51 MB/s | 3.0 MB 00:00 2026-02-20T23:00:03.480 INFO:teuthology.orchestra.run.trial197.stdout:(4/12): flexiblas-openblas-openmp-3.0.4-9.el9.x 1.6 MB/s | 15 kB 00:00 2026-02-20T23:00:03.489 INFO:teuthology.orchestra.run.trial197.stdout:(5/12): openblas-0.3.29-1.el9.x86_64.rpm 4.5 MB/s | 42 kB 00:00 2026-02-20T23:00:03.527 INFO:teuthology.orchestra.run.trial197.stdout:(6/12): openblas-openmp-0.3.29-1.el9.x86_64.rpm 142 MB/s | 5.3 MB 00:00 2026-02-20T23:00:03.539 INFO:teuthology.orchestra.run.trial197.stdout:(7/12): python3-devel-3.9.25-3.el9.x86_64.rpm 20 MB/s | 244 kB 00:00 2026-02-20T23:00:03.570 INFO:teuthology.orchestra.run.trial197.stdout:(8/12): python3-numpy-1.23.5-2.el9.x86_64.rpm 196 MB/s | 6.1 MB 00:00 2026-02-20T23:00:03.585 INFO:teuthology.orchestra.run.trial197.stdout:(9/12): libquadmath-11.5.0-14.el9.x86_64.rpm 289 kB/s | 184 kB 00:00 2026-02-20T23:00:03.586 INFO:teuthology.orchestra.run.trial197.stdout:(10/12): python3-numpy-f2py-1.23.5-2.el9.x86_64 28 MB/s | 442 kB 00:00 2026-02-20T23:00:03.740 INFO:teuthology.orchestra.run.trial197.stdout:(11/12): python3-scipy-1.9.3-2.el9.x86_64.rpm 124 MB/s | 19 MB 00:00 2026-02-20T23:00:03.825 INFO:teuthology.orchestra.run.trial197.stdout:(12/12): libgfortran-11.5.0-14.el9.x86_64.rpm 903 kB/s | 794 kB 00:00 2026-02-20T23:00:03.828 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:03.828 INFO:teuthology.orchestra.run.trial197.stdout:Total 43 MB/s | 43 MB 00:01 2026-02-20T23:00:03.990 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:04.004 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:04.004 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:04.151 INFO:teuthology.orchestra.run.trial004.stdout:(26/39): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 4.3 kB/s | 43 kB 00:10 2026-02-20T23:00:04.184 INFO:teuthology.orchestra.run.trial004.stdout:(27/39): python3-cheroot-10.0.1-4.el9.noarch.rp 17 kB/s | 173 kB 00:10 2026-02-20T23:00:04.208 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:04.208 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:04.222 INFO:teuthology.orchestra.run.trial004.stdout:(28/39): python3-jaraco-8.2.1-3.el9.noarch.rpm 161 kB/s | 11 kB 00:00 2026-02-20T23:00:04.232 INFO:teuthology.orchestra.run.trial004.stdout:(29/39): python3-jaraco-classes-3.2.1-5.el9.noa 365 kB/s | 18 kB 00:00 2026-02-20T23:00:04.258 INFO:teuthology.orchestra.run.trial004.stdout:(30/39): python3-jaraco-collections-3.0.0-8.el9 632 kB/s | 23 kB 00:00 2026-02-20T23:00:04.287 INFO:teuthology.orchestra.run.trial004.stdout:(31/39): python3-cherrypy-18.6.1-2.el9.noarch.r 35 kB/s | 358 kB 00:10 2026-02-20T23:00:04.304 INFO:teuthology.orchestra.run.trial004.stdout:(32/39): python3-jaraco-context-6.0.1-3.el9.noa 274 kB/s | 20 kB 00:00 2026-02-20T23:00:04.328 INFO:teuthology.orchestra.run.trial004.stdout:(33/39): python3-jaraco-functools-3.5.0-2.el9.n 277 kB/s | 19 kB 00:00 2026-02-20T23:00:04.368 INFO:teuthology.orchestra.run.trial004.stdout:(34/39): python3-more-itertools-8.12.0-2.el9.no 1.2 MB/s | 79 kB 00:00 2026-02-20T23:00:04.371 INFO:teuthology.orchestra.run.trial004.stdout:(35/39): python3-portend-3.1.0-2.el9.noarch.rpm 390 kB/s | 16 kB 00:00 2026-02-20T23:00:04.393 INFO:teuthology.orchestra.run.trial004.stdout:(36/39): python3-jaraco-text-4.0.0-2.el9.noarch 249 kB/s | 26 kB 00:00 2026-02-20T23:00:04.403 INFO:teuthology.orchestra.run.trial004.stdout:(37/39): python3-tempora-5.0.0-2.el9.noarch.rpm 1.1 MB/s | 36 kB 00:00 2026-02-20T23:00:04.410 INFO:teuthology.orchestra.run.trial004.stdout:(38/39): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.1 MB/s | 90 kB 00:00 2026-02-20T23:00:04.426 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:04.429 INFO:teuthology.orchestra.run.trial197.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 1/12 2026-02-20T23:00:04.435 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 2/12 2026-02-20T23:00:04.439 INFO:teuthology.orchestra.run.trial004.stdout:(39/39): python3-zc-lockfile-2.0-10.el9.noarch. 435 kB/s | 20 kB 00:00 2026-02-20T23:00:04.440 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:04.440 INFO:teuthology.orchestra.run.trial004.stdout:Total 2.5 MB/s | 30 MB 00:12 2026-02-20T23:00:04.469 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 3/12 2026-02-20T23:00:04.473 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 4/12 2026-02-20T23:00:04.533 INFO:teuthology.orchestra.run.trial197.stdout: Installing : openblas-0.3.29-1.el9.x86_64 5/12 2026-02-20T23:00:04.535 INFO:teuthology.orchestra.run.trial197.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 6/12 2026-02-20T23:00:04.557 INFO:teuthology.orchestra.run.trial197.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 7/12 2026-02-20T23:00:04.575 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:04.593 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:04.593 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:04.661 INFO:teuthology.orchestra.run.trial064.stdout:(5/5): ceph-test-20.2.0-677.gf7870454.el9.x86_6 41 MB/s | 84 MB 00:02 2026-02-20T23:00:04.662 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:04.662 INFO:teuthology.orchestra.run.trial064.stdout:Total 41 MB/s | 85 MB 00:02 2026-02-20T23:00:04.689 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:04.698 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:04.699 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:04.739 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:04.739 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:04.878 INFO:teuthology.orchestra.run.trial197.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 8/12 2026-02-20T23:00:04.927 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:04.928 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/39 2026-02-20T23:00:04.933 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/39 2026-02-20T23:00:04.938 INFO:teuthology.orchestra.run.trial004.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/39 2026-02-20T23:00:04.940 INFO:teuthology.orchestra.run.trial004.stdout: Installing : unzip-6.0-59.el9.x86_64 4/39 2026-02-20T23:00:04.946 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 5/39 2026-02-20T23:00:04.950 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 9/12 2026-02-20T23:00:04.970 INFO:teuthology.orchestra.run.trial004.stdout: Installing : zip-3.0-35.el9.x86_64 6/39 2026-02-20T23:00:04.973 INFO:teuthology.orchestra.run.trial004.stdout: Installing : luarocks-3.9.2-5.el9.noarch 7/39 2026-02-20T23:00:04.978 INFO:teuthology.orchestra.run.trial004.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 8/39 2026-02-20T23:00:04.983 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 9/39 2026-02-20T23:00:04.988 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:04.988 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:04.989 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 10/39 2026-02-20T23:00:04.993 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 11/39 2026-02-20T23:00:04.998 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 12/39 2026-02-20T23:00:05.004 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 13/39 2026-02-20T23:00:05.008 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 14/39 2026-02-20T23:00:05.013 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 15/39 2026-02-20T23:00:05.017 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 16/39 2026-02-20T23:00:05.024 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 17/39 2026-02-20T23:00:05.027 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 18/39 2026-02-20T23:00:05.037 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 19/39 2026-02-20T23:00:05.061 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T23:00:05.073 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 21/39 2026-02-20T23:00:05.080 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 22/39 2026-02-20T23:00:05.093 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/39 2026-02-20T23:00:05.109 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/39 2026-02-20T23:00:05.187 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/39 2026-02-20T23:00:05.195 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 26/39 2026-02-20T23:00:05.218 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/39 2026-02-20T23:00:05.249 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 28/39 2026-02-20T23:00:05.254 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/39 2026-02-20T23:00:05.302 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/39 2026-02-20T23:00:05.306 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:05.312 INFO:teuthology.orchestra.run.trial064.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 1/5 2026-02-20T23:00:05.316 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 2/5 2026-02-20T23:00:05.324 INFO:teuthology.orchestra.run.trial064.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 3/5 2026-02-20T23:00:05.324 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T23:00:05.344 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 31/39 2026-02-20T23:00:05.345 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T23:00:05.383 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T23:00:05.383 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:05.383 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-20T23:00:05.383 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T23:00:05.383 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T23:00:05.383 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:05.389 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 33/39 2026-02-20T23:00:05.407 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T23:00:05.407 INFO:teuthology.orchestra.run.trial004.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-20T23:00:05.407 INFO:teuthology.orchestra.run.trial004.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-20T23:00:05.407 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:05.415 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T23:00:05.440 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T23:00:05.440 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-20T23:00:05.440 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:05.617 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T23:00:06.073 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 11/12 2026-02-20T23:00:06.073 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T23:00:06.124 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 35/39 2026-02-20T23:00:06.125 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T23:00:06.152 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T23:00:06.152 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:06.152 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-20T23:00:06.152 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T23:00:06.153 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T23:00:06.153 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:06.367 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T23:00:06.373 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 1/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 2/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 3/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 4/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 5/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 6/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 7/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 8/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 9/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T23:00:06.374 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 11/12 2026-02-20T23:00:06.390 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T23:00:06.390 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:06.390 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-20T23:00:06.391 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T23:00:06.391 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T23:00:06.391 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:06.430 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 12/12 2026-02-20T23:00:06.430 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-diskprediction-local-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-20T23:00:06.431 INFO:teuthology.orchestra.run.trial197.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-20T23:00:06.432 INFO:teuthology.orchestra.run.trial197.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-20T23:00:06.432 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-20T23:00:06.432 INFO:teuthology.orchestra.run.trial197.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-20T23:00:06.432 INFO:teuthology.orchestra.run.trial197.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-20T23:00:06.432 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:06.432 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:06.469 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-rook 2026-02-20T23:00:06.486 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T23:00:06.508 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T23:00:06.509 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:06.509 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-20T23:00:06.509 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T23:00:06.509 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T23:00:06.509 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:06.526 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T23:00:06.779 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:37 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:06.851 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-2:20.2.0-677.gf7870454.el9.x86_64 1/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 3/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 4/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 5/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 6/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 7/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 8/39 2026-02-20T23:00:06.852 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 9/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 10/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-ply-3.11-14.el9.noarch 11/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 12/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 13/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 14/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : unzip-6.0-59.el9.x86_64 15/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : zip-3.0-35.el9.x86_64 16/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 17/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : lua-5.4.4-4.el9.x86_64 18/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 19/39 2026-02-20T23:00:06.853 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 21/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 22/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 23/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 24/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 25/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 26/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 27/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 28/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 29/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 30/39 2026-02-20T23:00:06.854 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 31/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 32/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 33/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 34/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 35/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 36/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 37/39 2026-02-20T23:00:06.855 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 38/39 2026-02-20T23:00:06.861 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:06.861 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-rook noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 50 k 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-20T23:00:06.862 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout:Install 10 Packages 2026-02-20T23:00:06.863 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:06.864 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 2.0 M 2026-02-20T23:00:06.864 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 25 M 2026-02-20T23:00:06.864 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:06.909 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 39/39 2026-02-20T23:00:06.909 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:06.909 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:06.909 INFO:teuthology.orchestra.run.trial004.stdout: ceph-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: lua-5.4.4-4.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-20T23:00:06.910 INFO:teuthology.orchestra.run.trial004.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-20T23:00:06.911 INFO:teuthology.orchestra.run.trial004.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-ply-3.11-14.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-20T23:00:06.912 INFO:teuthology.orchestra.run.trial004.stdout: unzip-6.0-59.el9.x86_64 2026-02-20T23:00:06.913 INFO:teuthology.orchestra.run.trial004.stdout: zip-3.0-35.el9.x86_64 2026-02-20T23:00:06.913 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:06.913 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:06.946 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-base 2026-02-20T23:00:07.255 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:36 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:07.320 INFO:teuthology.orchestra.run.trial004.stdout:Package ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:07.337 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:07.338 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:07.338 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:07.352 INFO:teuthology.orchestra.run.trial197.stdout:(1/10): ceph-mgr-rook-20.2.0-677.gf7870454.el9. 663 kB/s | 50 kB 00:00 2026-02-20T23:00:07.359 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install cephadm 2026-02-20T23:00:07.405 INFO:teuthology.orchestra.run.trial197.stdout:(2/10): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.2 MB/s | 159 kB 00:00 2026-02-20T23:00:07.410 INFO:teuthology.orchestra.run.trial197.stdout:(3/10): python3-pyasn1-modules-0.4.8-6.el9.noar 2.0 MB/s | 279 kB 00:00 2026-02-20T23:00:07.427 INFO:teuthology.orchestra.run.trial197.stdout:(4/10): python3-requests-oauthlib-1.3.0-12.el9. 714 kB/s | 54 kB 00:00 2026-02-20T23:00:07.662 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:36 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:07.664 INFO:teuthology.orchestra.run.trial197.stdout:(5/10): python3-certifi-2023.05.07-4.el9.noarch 56 kB/s | 14 kB 00:00 2026-02-20T23:00:07.686 INFO:teuthology.orchestra.run.trial197.stdout:(6/10): python3-cachetools-4.2.4-1.el9.noarch.r 115 kB/s | 32 kB 00:00 2026-02-20T23:00:07.744 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:07.745 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:07.745 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T23:00:07.745 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:07.745 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:07.745 INFO:teuthology.orchestra.run.trial004.stdout: cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 1.0 M 2026-02-20T23:00:07.745 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 1.0 M 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 1.0 M 2026-02-20T23:00:07.746 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:07.867 INFO:teuthology.orchestra.run.trial004.stdout:cephadm-20.2.0-677.gf7870454.el9.noarch.rpm 8.2 MB/s | 1.0 MB 00:00 2026-02-20T23:00:07.867 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:07.867 INFO:teuthology.orchestra.run.trial004.stdout:Total 8.1 MB/s | 1.0 MB 00:00 2026-02-20T23:00:07.867 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:07.870 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:07.870 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:07.874 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:07.874 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:07.892 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:07.956 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:07.970 INFO:teuthology.orchestra.run.trial004.stdout: Installing : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:08.031 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:08.088 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:08.088 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:08.088 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:08.088 INFO:teuthology.orchestra.run.trial004.stdout: cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:08.088 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:08.088 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:08.116 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-immutable-object-cache 2026-02-20T23:00:08.171 INFO:teuthology.orchestra.run.trial197.stdout:(7/10): python3-google-auth-2.45.0-1.el9.noarch 342 kB/s | 254 kB 00:00 2026-02-20T23:00:08.372 INFO:teuthology.orchestra.run.trial197.stdout:(8/10): python3-websocket-client-1.2.3-2.el9.no 446 kB/s | 90 kB 00:00 2026-02-20T23:00:08.426 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:37 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:08.439 INFO:teuthology.orchestra.run.trial197.stdout:(9/10): python3-rsa-4.9-2.el9.noarch.rpm 78 kB/s | 59 kB 00:00 2026-02-20T23:00:08.508 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:08.508 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:08.508 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repo Size 2026-02-20T23:00:08.508 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:08.508 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:08.508 INFO:teuthology.orchestra.run.trial004.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-677.gf7870454.el9 ceph 154 k 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 154 k 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 447 k 2026-02-20T23:00:08.509 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:08.527 INFO:teuthology.orchestra.run.trial197.stdout:(10/10): python3-kubernetes-26.1.0-3.el9.noarch 1.2 MB/s | 1.0 MB 00:00 2026-02-20T23:00:08.527 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:08.527 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.2 MB/s | 2.0 MB 00:01 2026-02-20T23:00:08.553 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:08.560 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:08.560 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:08.595 INFO:teuthology.orchestra.run.trial004.stdout:ceph-immutable-object-cache-20.2.0-677.gf787045 1.7 MB/s | 154 kB 00:00 2026-02-20T23:00:08.596 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:08.596 INFO:teuthology.orchestra.run.trial004.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-20T23:00:08.597 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:08.599 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:08.599 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:08.601 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:08.601 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:08.628 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:08.629 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:08.673 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:08.678 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:08.680 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T23:00:08.704 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T23:00:08.704 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:08.704 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-20T23:00:08.704 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:08.724 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/10 2026-02-20T23:00:08.737 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/10 2026-02-20T23:00:08.752 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/10 2026-02-20T23:00:08.757 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/10 2026-02-20T23:00:08.765 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/10 2026-02-20T23:00:08.805 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/10 2026-02-20T23:00:08.818 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T23:00:09.002 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T23:00:09.003 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:09.003 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:09.003 INFO:teuthology.orchestra.run.trial004.stdout: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:09.003 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:09.003 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:09.029 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-mgr 2026-02-20T23:00:09.137 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 8/10 2026-02-20T23:00:09.152 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 9/10 2026-02-20T23:00:09.153 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T23:00:09.236 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 4/5 2026-02-20T23:00:09.254 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T23:00:09.268 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T23:00:09.268 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 1/10 2026-02-20T23:00:09.269 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 2/10 2026-02-20T23:00:09.269 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 3/10 2026-02-20T23:00:09.269 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 4/10 2026-02-20T23:00:09.269 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 5/10 2026-02-20T23:00:09.269 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 6/10 2026-02-20T23:00:09.269 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T23:00:09.270 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 8/10 2026-02-20T23:00:09.270 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 9/10 2026-02-20T23:00:09.323 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 10/10 2026-02-20T23:00:09.323 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:09.323 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:09.323 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:09.323 INFO:teuthology.orchestra.run.trial197.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-20T23:00:09.323 INFO:teuthology.orchestra.run.trial197.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:09.324 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:09.338 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:38 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:09.353 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-mgr-cephadm 2026-02-20T23:00:09.402 INFO:teuthology.orchestra.run.trial004.stdout:Package ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:09.419 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:09.420 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:09.420 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:09.441 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-mgr-dashboard 2026-02-20T23:00:09.598 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 5/5 2026-02-20T23:00:09.598 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 1/5 2026-02-20T23:00:09.598 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2/5 2026-02-20T23:00:09.598 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 3/5 2026-02-20T23:00:09.599 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 4/5 2026-02-20T23:00:09.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 5/5 2026-02-20T23:00:09.652 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:09.652 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:09.652 INFO:teuthology.orchestra.run.trial064.stdout: ceph-test-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:09.652 INFO:teuthology.orchestra.run.trial064.stdout: libcephsqlite-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:09.653 INFO:teuthology.orchestra.run.trial064.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-20T23:00:09.653 INFO:teuthology.orchestra.run.trial064.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-20T23:00:09.653 INFO:teuthology.orchestra.run.trial064.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-20T23:00:09.653 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:09.653 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:09.665 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:40 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:09.691 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph 2026-02-20T23:00:09.748 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:09.749 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:09.749 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T23:00:09.749 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:09.749 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 173 k 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:09.750 INFO:teuthology.orchestra.run.trial197.stdout:Install 7 Packages 2026-02-20T23:00:09.751 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:09.751 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 7.1 M 2026-02-20T23:00:09.751 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 33 M 2026-02-20T23:00:09.751 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:09.751 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:38 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-dashboard noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 11 M 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T23:00:09.834 INFO:teuthology.orchestra.run.trial004.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: ceph-grafana-dashboards noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 43 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: ceph-prometheus-alerts noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 17 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout:Install 14 Packages 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 16 M 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 158 M 2026-02-20T23:00:09.835 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:10.005 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:36 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:10.088 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ceph x86_64 2:20.2.0-677.gf7870454.el9 ceph 6.5 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mds x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.3 M 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr x86_64 2:20.2.0-677.gf7870454.el9 ceph 961 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-modules-core noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 290 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mon x86_64 2:20.2.0-677.gf7870454.el9 ceph 5.0 M 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ceph-osd x86_64 2:20.2.0-677.gf7870454.el9 ceph 17 M 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-20T23:00:10.090 INFO:teuthology.orchestra.run.trial064.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-20T23:00:10.091 INFO:teuthology.orchestra.run.trial064.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout:Install 39 Packages 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 30 M 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 99 M 2026-02-20T23:00:10.092 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:10.303 INFO:teuthology.orchestra.run.trial197.stdout:(1/7): ceph-mgr-cephadm-20.2.0-677.gf7870454.el 2.0 MB/s | 173 kB 00:00 2026-02-20T23:00:10.380 INFO:teuthology.orchestra.run.trial197.stdout:(2/7): python3-jinja2-2.11.3-8.el9.noarch.rpm 1.5 MB/s | 249 kB 00:00 2026-02-20T23:00:10.387 INFO:teuthology.orchestra.run.trial197.stdout:(3/7): python3-markupsafe-1.1.1-12.el9.x86_64.r 410 kB/s | 35 kB 00:00 2026-02-20T23:00:10.412 INFO:teuthology.orchestra.run.trial197.stdout:(4/7): python3-natsort-7.1.1-5.el9.noarch.rpm 2.3 MB/s | 58 kB 00:00 2026-02-20T23:00:10.419 INFO:teuthology.orchestra.run.trial197.stdout:(5/7): python3-asyncssh-2.13.2-5.el9.noarch.rpm 14 MB/s | 548 kB 00:00 2026-02-20T23:00:10.421 INFO:teuthology.orchestra.run.trial197.stdout:(6/7): python3-typing-extensions-4.15.0-1.el9.n 9.7 MB/s | 86 kB 00:00 2026-02-20T23:00:10.425 INFO:teuthology.orchestra.run.trial004.stdout:(1/14): ceph-prometheus-alerts-20.2.0-677.gf787 250 kB/s | 17 kB 00:00 2026-02-20T23:00:10.428 INFO:teuthology.orchestra.run.trial004.stdout:(2/14): ceph-grafana-dashboards-20.2.0-677.gf78 594 kB/s | 43 kB 00:00 2026-02-20T23:00:10.437 INFO:teuthology.orchestra.run.trial064.stdout:(1/39): ceph-20.2.0-677.gf7870454.el9.x86_64.rp 114 kB/s | 6.5 kB 00:00 2026-02-20T23:00:10.498 INFO:teuthology.orchestra.run.trial197.stdout:(7/7): python3-babel-2.9.1-2.el9.noarch.rpm 21 MB/s | 6.0 MB 00:00 2026-02-20T23:00:10.499 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:10.499 INFO:teuthology.orchestra.run.trial197.stdout:Total 9.5 MB/s | 7.1 MB 00:00 2026-02-20T23:00:10.533 INFO:teuthology.orchestra.run.trial064.stdout:(2/39): ceph-mgr-20.2.0-677.gf7870454.el9.x86_6 6.2 MB/s | 961 kB 00:00 2026-02-20T23:00:10.539 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:10.545 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:10.545 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:10.617 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:10.618 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:10.692 INFO:teuthology.orchestra.run.trial064.stdout:(3/39): ceph-mds-20.2.0-677.gf7870454.el9.x86_6 7.5 MB/s | 2.3 MB 00:00 2026-02-20T23:00:10.707 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:10.752 INFO:teuthology.orchestra.run.trial064.stdout:(4/39): ceph-mgr-modules-core-20.2.0-677.gf7870 4.7 MB/s | 290 kB 00:00 2026-02-20T23:00:10.757 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 1/7 2026-02-20T23:00:10.763 INFO:teuthology.orchestra.run.trial064.stdout:(5/39): ledmon-libs-1.1.0-3.el9.x86_64.rpm 3.7 MB/s | 40 kB 00:00 2026-02-20T23:00:10.766 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/7 2026-02-20T23:00:10.770 INFO:teuthology.orchestra.run.trial064.stdout:(6/39): libconfig-1.7.2-9.el9.x86_64.rpm 9.2 MB/s | 72 kB 00:00 2026-02-20T23:00:10.772 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/7 2026-02-20T23:00:10.781 INFO:teuthology.orchestra.run.trial064.stdout:(7/39): python3-cffi-1.14.5-5.el9.x86_64.rpm 25 MB/s | 253 kB 00:00 2026-02-20T23:00:10.787 INFO:teuthology.orchestra.run.trial004.stdout:(3/14): ceph-mgr-dashboard-20.2.0-677.gf7870454 25 MB/s | 11 MB 00:00 2026-02-20T23:00:10.814 INFO:teuthology.orchestra.run.trial064.stdout:(8/39): python3-cryptography-36.0.1-5.el9.x86_6 38 MB/s | 1.2 MB 00:00 2026-02-20T23:00:10.820 INFO:teuthology.orchestra.run.trial064.stdout:(9/39): python3-ply-3.11-14.el9.noarch.rpm 18 MB/s | 106 kB 00:00 2026-02-20T23:00:10.826 INFO:teuthology.orchestra.run.trial064.stdout:(10/39): python3-pycparser-2.20-6.el9.noarch.rp 22 MB/s | 135 kB 00:00 2026-02-20T23:00:10.832 INFO:teuthology.orchestra.run.trial064.stdout:(11/39): python3-requests-2.25.1-10.el9.noarch. 21 MB/s | 126 kB 00:00 2026-02-20T23:00:10.839 INFO:teuthology.orchestra.run.trial064.stdout:(12/39): python3-urllib3-1.26.5-7.el9.noarch.rp 33 MB/s | 218 kB 00:00 2026-02-20T23:00:10.846 INFO:teuthology.orchestra.run.trial064.stdout:(13/39): unzip-6.0-59.el9.x86_64.rpm 26 MB/s | 182 kB 00:00 2026-02-20T23:00:10.852 INFO:teuthology.orchestra.run.trial064.stdout:(14/39): zip-3.0-35.el9.x86_64.rpm 42 MB/s | 266 kB 00:00 2026-02-20T23:00:10.977 INFO:teuthology.orchestra.run.trial064.stdout:(15/39): ceph-mon-20.2.0-677.gf7870454.el9.x86_ 9.4 MB/s | 5.0 MB 00:00 2026-02-20T23:00:10.994 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T23:00:11.013 INFO:teuthology.orchestra.run.trial004.stdout:(4/14): python3-jmespath-1.0.1-1.el9.noarch.rpm 81 kB/s | 48 kB 00:00 2026-02-20T23:00:11.018 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 5/7 2026-02-20T23:00:11.042 INFO:teuthology.orchestra.run.trial197.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 6/7 2026-02-20T23:00:11.043 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T23:00:11.080 INFO:teuthology.orchestra.run.trial004.stdout:(5/14): protobuf-compiler-3.14.0-17.el9.x86_64. 13 MB/s | 862 kB 00:00 2026-02-20T23:00:11.086 INFO:teuthology.orchestra.run.trial064.stdout:(16/39): ceph-osd-20.2.0-677.gf7870454.el9.x86_ 31 MB/s | 17 MB 00:00 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/7 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/7 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 3/7 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 5/7 2026-02-20T23:00:11.154 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 6/7 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 7/7 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:11.211 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:11.241 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-fuse 2026-02-20T23:00:11.315 INFO:teuthology.orchestra.run.trial004.stdout:(6/14): protobuf-3.14.0-17.el9.x86_64.rpm 1.1 MB/s | 1.0 MB 00:00 2026-02-20T23:00:11.337 INFO:teuthology.orchestra.run.trial004.stdout:(7/14): abseil-cpp-20211102.0-4.el9.x86_64.rpm 2.1 MB/s | 551 kB 00:00 2026-02-20T23:00:11.414 INFO:teuthology.orchestra.run.trial004.stdout:(8/14): grpc-data-1.46.7-10.el9.noarch.rpm 198 kB/s | 19 kB 00:00 2026-02-20T23:00:11.451 INFO:teuthology.orchestra.run.trial004.stdout:(9/14): python3-grpcio-1.46.7-10.el9.x86_64.rpm 18 MB/s | 2.0 MB 00:00 2026-02-20T23:00:11.485 INFO:teuthology.orchestra.run.trial004.stdout:(10/14): python3-repoze-lru-0.7-16.el9.noarch.r 900 kB/s | 31 kB 00:00 2026-02-20T23:00:11.521 INFO:teuthology.orchestra.run.trial004.stdout:(11/14): python3-routes-2.5.1-5.el9.noarch.rpm 5.1 MB/s | 188 kB 00:00 2026-02-20T23:00:11.528 INFO:teuthology.orchestra.run.trial004.stdout:(12/14): python3-protobuf-3.14.0-17.el9.noarch. 361 kB/s | 267 kB 00:00 2026-02-20T23:00:11.530 INFO:teuthology.orchestra.run.trial004.stdout:(13/14): python3-grpcio-tools-1.46.7-10.el9.x86 1.2 MB/s | 144 kB 00:00 2026-02-20T23:00:11.543 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:42 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:11.555 INFO:teuthology.orchestra.run.trial004.stdout:(14/14): python3-xmltodict-0.12.0-15.el9.noarch 639 kB/s | 22 kB 00:00 2026-02-20T23:00:11.558 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:11.558 INFO:teuthology.orchestra.run.trial004.stdout:Total 9.2 MB/s | 16 MB 00:01 2026-02-20T23:00:11.593 INFO:teuthology.orchestra.run.trial064.stdout:(17/39): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 332 kB/s | 246 kB 00:00 2026-02-20T23:00:11.594 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:11.603 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:11.603 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:11.627 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout: ceph-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 943 k 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:11.628 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:11.629 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T23:00:11.629 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:11.629 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 943 k 2026-02-20T23:00:11.629 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 2.7 M 2026-02-20T23:00:11.629 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:11.700 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:11.700 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:11.707 INFO:teuthology.orchestra.run.trial064.stdout:(18/39): lua-5.4.4-4.el9.x86_64.rpm 258 kB/s | 188 kB 00:00 2026-02-20T23:00:11.749 INFO:teuthology.orchestra.run.trial197.stdout:ceph-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 7.6 MB/s | 943 kB 00:00 2026-02-20T23:00:11.749 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:11.749 INFO:teuthology.orchestra.run.trial197.stdout:Total 7.6 MB/s | 943 kB 00:00 2026-02-20T23:00:11.749 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:11.754 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:11.754 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:11.788 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:11.788 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:11.813 INFO:teuthology.orchestra.run.trial064.stdout:(19/39): python3-libstoragemgmt-1.10.1-1.el9.x8 244 kB/s | 177 kB 00:00 2026-02-20T23:00:11.818 INFO:teuthology.orchestra.run.trial064.stdout:(20/39): lua-devel-5.4.4-4.el9.x86_64.rpm 4.7 MB/s | 22 kB 00:00 2026-02-20T23:00:11.819 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:11.827 INFO:teuthology.orchestra.run.trial004.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 1/14 2026-02-20T23:00:11.831 INFO:teuthology.orchestra.run.trial004.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 2/14 2026-02-20T23:00:11.836 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 3/14 2026-02-20T23:00:11.847 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 4/14 2026-02-20T23:00:11.849 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 5/14 2026-02-20T23:00:11.876 INFO:teuthology.orchestra.run.trial004.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 6/14 2026-02-20T23:00:11.877 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:11.895 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:11.919 INFO:teuthology.orchestra.run.trial004.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 7/14 2026-02-20T23:00:11.948 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 8/14 2026-02-20T23:00:11.958 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 9/14 2026-02-20T23:00:11.965 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/14 2026-02-20T23:00:11.968 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 11/14 2026-02-20T23:00:11.975 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 12/14 2026-02-20T23:00:12.024 INFO:teuthology.orchestra.run.trial064.stdout:(21/39): luarocks-3.9.2-5.el9.noarch.rpm 735 kB/s | 151 kB 00:00 2026-02-20T23:00:12.056 INFO:teuthology.orchestra.run.trial064.stdout:(22/39): python3-autocommand-2.2.2-8.el9.noarch 918 kB/s | 29 kB 00:00 2026-02-20T23:00:12.090 INFO:teuthology.orchestra.run.trial064.stdout:(23/39): python3-backports-tarfile-1.2.0-1.el9. 1.7 MB/s | 60 kB 00:00 2026-02-20T23:00:12.123 INFO:teuthology.orchestra.run.trial064.stdout:(24/39): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.3 MB/s | 43 kB 00:00 2026-02-20T23:00:12.129 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:12.185 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:12.186 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:12.186 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:12.186 INFO:teuthology.orchestra.run.trial197.stdout: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:12.186 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:12.186 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:12.187 INFO:teuthology.orchestra.run.trial064.stdout:(25/39): python3-cheroot-10.0.1-4.el9.noarch.rp 2.7 MB/s | 173 kB 00:00 2026-02-20T23:00:12.213 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install ceph-volume 2026-02-20T23:00:12.217 INFO:teuthology.orchestra.run.trial064.stdout:(26/39): python3-packaging-20.9-5.el9.noarch.rp 124 kB/s | 77 kB 00:00 2026-02-20T23:00:12.250 INFO:teuthology.orchestra.run.trial064.stdout:(27/39): python3-cherrypy-18.6.1-2.el9.noarch.r 5.5 MB/s | 358 kB 00:00 2026-02-20T23:00:12.251 INFO:teuthology.orchestra.run.trial064.stdout:(28/39): python3-jaraco-8.2.1-3.el9.noarch.rpm 318 kB/s | 11 kB 00:00 2026-02-20T23:00:12.255 INFO:teuthology.orchestra.run.trial064.stdout:(29/39): python3-toml-0.10.2-6.el9.noarch.rpm 76 kB/s | 42 kB 00:00 2026-02-20T23:00:12.283 INFO:teuthology.orchestra.run.trial064.stdout:(30/39): python3-jaraco-classes-3.2.1-5.el9.noa 552 kB/s | 18 kB 00:00 2026-02-20T23:00:12.284 INFO:teuthology.orchestra.run.trial064.stdout:(31/39): python3-jaraco-collections-3.0.0-8.el9 685 kB/s | 23 kB 00:00 2026-02-20T23:00:12.287 INFO:teuthology.orchestra.run.trial064.stdout:(32/39): python3-jaraco-context-6.0.1-3.el9.noa 620 kB/s | 20 kB 00:00 2026-02-20T23:00:12.314 INFO:teuthology.orchestra.run.trial064.stdout:(33/39): python3-jaraco-functools-3.5.0-2.el9.n 616 kB/s | 19 kB 00:00 2026-02-20T23:00:12.317 INFO:teuthology.orchestra.run.trial064.stdout:(34/39): python3-jaraco-text-4.0.0-2.el9.noarch 830 kB/s | 26 kB 00:00 2026-02-20T23:00:12.322 INFO:teuthology.orchestra.run.trial064.stdout:(35/39): python3-more-itertools-8.12.0-2.el9.no 2.3 MB/s | 79 kB 00:00 2026-02-20T23:00:12.346 INFO:teuthology.orchestra.run.trial064.stdout:(36/39): python3-portend-3.1.0-2.el9.noarch.rpm 518 kB/s | 16 kB 00:00 2026-02-20T23:00:12.352 INFO:teuthology.orchestra.run.trial064.stdout:(37/39): python3-pyOpenSSL-21.0.0-1.el9.noarch. 2.5 MB/s | 90 kB 00:00 2026-02-20T23:00:12.353 INFO:teuthology.orchestra.run.trial064.stdout:(38/39): python3-tempora-5.0.0-2.el9.noarch.rpm 1.1 MB/s | 36 kB 00:00 2026-02-20T23:00:12.379 INFO:teuthology.orchestra.run.trial064.stdout:(39/39): python3-zc-lockfile-2.0-10.el9.noarch. 603 kB/s | 20 kB 00:00 2026-02-20T23:00:12.382 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:12.383 INFO:teuthology.orchestra.run.trial064.stdout:Total 13 MB/s | 30 MB 00:02 2026-02-20T23:00:12.516 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:12.518 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:43 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:12.534 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:12.535 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:12.601 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repository Size 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout: ceph-volume noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 297 k 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T23:00:12.602 INFO:teuthology.orchestra.run.trial197.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout:Install 2 Packages 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 648 k 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 2.2 M 2026-02-20T23:00:12.603 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:12.678 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:12.678 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:12.787 INFO:teuthology.orchestra.run.trial197.stdout:(1/2): ceph-volume-20.2.0-677.gf7870454.el9.noa 3.0 MB/s | 297 kB 00:00 2026-02-20T23:00:12.865 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:12.867 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/39 2026-02-20T23:00:12.869 INFO:teuthology.orchestra.run.trial197.stdout:(2/2): cryptsetup-2.8.1-3.el9.x86_64.rpm 1.9 MB/s | 351 kB 00:00 2026-02-20T23:00:12.870 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:12.870 INFO:teuthology.orchestra.run.trial197.stdout:Total 2.4 MB/s | 648 kB 00:00 2026-02-20T23:00:12.872 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/39 2026-02-20T23:00:12.877 INFO:teuthology.orchestra.run.trial064.stdout: Installing : lua-5.4.4-4.el9.x86_64 3/39 2026-02-20T23:00:12.879 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:12.879 INFO:teuthology.orchestra.run.trial064.stdout: Installing : unzip-6.0-59.el9.x86_64 4/39 2026-02-20T23:00:12.885 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:12.885 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:12.886 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 5/39 2026-02-20T23:00:12.909 INFO:teuthology.orchestra.run.trial064.stdout: Installing : zip-3.0-35.el9.x86_64 6/39 2026-02-20T23:00:12.914 INFO:teuthology.orchestra.run.trial064.stdout: Installing : luarocks-3.9.2-5.el9.noarch 7/39 2026-02-20T23:00:12.919 INFO:teuthology.orchestra.run.trial064.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 8/39 2026-02-20T23:00:12.924 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 9/39 2026-02-20T23:00:12.928 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:12.928 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:12.930 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 10/39 2026-02-20T23:00:12.934 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 11/39 2026-02-20T23:00:12.940 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 12/39 2026-02-20T23:00:12.945 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 13/39 2026-02-20T23:00:12.948 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 14/39 2026-02-20T23:00:12.954 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 15/39 2026-02-20T23:00:12.958 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 16/39 2026-02-20T23:00:12.965 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 17/39 2026-02-20T23:00:12.968 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 18/39 2026-02-20T23:00:12.978 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 19/39 2026-02-20T23:00:13.001 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T23:00:13.007 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:13.014 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 21/39 2026-02-20T23:00:13.021 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 22/39 2026-02-20T23:00:13.034 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-ply-3.11-14.el9.noarch 23/39 2026-02-20T23:00:13.050 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 24/39 2026-02-20T23:00:13.069 INFO:teuthology.orchestra.run.trial197.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 1/2 2026-02-20T23:00:13.071 INFO:teuthology.orchestra.run.trial197.stdout: Installing : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T23:00:13.086 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T23:00:13.086 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:13.086 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-20T23:00:13.087 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:13.103 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 13/14 2026-02-20T23:00:13.108 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T23:00:13.126 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 25/39 2026-02-20T23:00:13.135 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 26/39 2026-02-20T23:00:13.158 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 27/39 2026-02-20T23:00:13.188 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 28/39 2026-02-20T23:00:13.194 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 29/39 2026-02-20T23:00:13.244 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 30/39 2026-02-20T23:00:13.288 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 31/39 2026-02-20T23:00:13.290 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T23:00:13.296 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T23:00:13.296 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 1/14 2026-02-20T23:00:13.296 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 2/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 3/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 4/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 5/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 6/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 7/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 8/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 9/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 10/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 11/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 12/14 2026-02-20T23:00:13.297 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 13/14 2026-02-20T23:00:13.314 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 32/39 2026-02-20T23:00:13.314 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:13.315 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-20T23:00:13.315 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T23:00:13.315 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-20T23:00:13.315 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:13.320 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 1/2 2026-02-20T23:00:13.321 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 33/39 2026-02-20T23:00:13.337 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T23:00:13.337 INFO:teuthology.orchestra.run.trial064.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-20T23:00:13.337 INFO:teuthology.orchestra.run.trial064.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-20T23:00:13.338 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:13.346 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 14/14 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout: ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:13.352 INFO:teuthology.orchestra.run.trial004.stdout: ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:13.353 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:13.369 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 34/39 2026-02-20T23:00:13.369 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-20T23:00:13.369 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:13.378 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 2/2 2026-02-20T23:00:13.378 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:13.378 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:13.378 INFO:teuthology.orchestra.run.trial197.stdout: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch cryptsetup-2.8.1-3.el9.x86_64 2026-02-20T23:00:13.378 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:13.378 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:13.387 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-20T23:00:13.408 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install librados-devel 2026-02-20T23:00:13.700 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:42 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:13.720 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:44 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:13.783 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:13.784 INFO:teuthology.orchestra.run.trial004.stdout:====================================================================================== 2026-02-20T23:00:13.784 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T23:00:13.784 INFO:teuthology.orchestra.run.trial004.stdout:====================================================================================== 2026-02-20T23:00:13.784 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 7.4 M 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-20T23:00:13.785 INFO:teuthology.orchestra.run.trial004.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout:====================================================================================== 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout:Install 12 Packages 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:13.786 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 43 M 2026-02-20T23:00:13.787 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 234 M 2026-02-20T23:00:13.787 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:13.803 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:13.803 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:13.803 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-20T23:00:13.803 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout: librados-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 126 k 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 126 k 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 449 k 2026-02-20T23:00:13.804 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:13.889 INFO:teuthology.orchestra.run.trial197.stdout:librados-devel-20.2.0-677.gf7870454.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-20T23:00:13.889 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:13.889 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-20T23:00:13.889 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:13.892 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:13.892 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:13.924 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:13.924 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:13.978 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:13.994 INFO:teuthology.orchestra.run.trial197.stdout: Installing : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:14.068 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 35/39 2026-02-20T23:00:14.070 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T23:00:14.074 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:14.095 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 36/39 2026-02-20T23:00:14.096 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:14.096 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-20T23:00:14.096 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T23:00:14.096 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-20T23:00:14.096 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:14.131 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:14.131 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:14.131 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:14.132 INFO:teuthology.orchestra.run.trial197.stdout: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:14.132 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:14.132 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:14.159 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install libcephfs2 2026-02-20T23:00:14.318 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T23:00:14.339 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 37/39 2026-02-20T23:00:14.339 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:14.339 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-20T23:00:14.339 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T23:00:14.339 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-20T23:00:14.339 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:14.362 INFO:teuthology.orchestra.run.trial004.stdout:(1/12): ceph-mgr-diskprediction-local-20.2.0-67 32 MB/s | 7.4 MB 00:00 2026-02-20T23:00:14.438 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T23:00:14.460 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 38/39 2026-02-20T23:00:14.460 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:14.460 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-20T23:00:14.460 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T23:00:14.460 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-20T23:00:14.460 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:14.468 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:45 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:14.477 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T23:00:14.533 INFO:teuthology.orchestra.run.trial197.stdout:Package libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:14.551 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:14.552 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:14.552 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:14.574 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install libcephfs-devel 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-2:20.2.0-677.gf7870454.el9.x86_64 39/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-2:20.2.0-677.gf7870454.el9.x86_64 1/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 3/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 4/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 5/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.n 6/39 2026-02-20T23:00:14.805 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 7/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 8/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 9/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 10/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-ply-3.11-14.el9.noarch 11/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 12/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 13/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 14/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : unzip-6.0-59.el9.x86_64 15/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : zip-3.0-35.el9.x86_64 16/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 17/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : lua-5.4.4-4.el9.x86_64 18/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 19/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 20/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 21/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 22/39 2026-02-20T23:00:14.806 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 23/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 24/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 25/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 26/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 27/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 28/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 29/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 30/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 31/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 32/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 33/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 34/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 35/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 36/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 37/39 2026-02-20T23:00:14.807 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 38/39 2026-02-20T23:00:14.808 INFO:teuthology.orchestra.run.trial004.stdout:(2/12): libquadmath-11.5.0-14.el9.x86_64.rpm 273 kB/s | 184 kB 00:00 2026-02-20T23:00:14.862 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 39/39 2026-02-20T23:00:14.862 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:14.862 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ceph-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mds-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-modules-core-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mon-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ceph-osd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: lua-5.4.4-4.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-20T23:00:14.863 INFO:teuthology.orchestra.run.trial064.stdout: python3-ply-3.11-14.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: unzip-6.0-59.el9.x86_64 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: zip-3.0-35.el9.x86_64 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:14.864 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:14.883 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:45 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:14.895 INFO:teuthology.orchestra.run.trial004.stdout:(3/12): flexiblas-3.0.4-9.el9.x86_64.rpm 55 kB/s | 30 kB 00:00 2026-02-20T23:00:14.900 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-base 2026-02-20T23:00:14.966 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:14.967 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:14.967 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 34 k 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout:Installing dependencies: 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-proxy2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 k 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:14.968 INFO:teuthology.orchestra.run.trial197.stdout:Install 2 Packages 2026-02-20T23:00:14.969 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:14.969 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 58 k 2026-02-20T23:00:14.969 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 207 k 2026-02-20T23:00:14.969 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:15.031 INFO:teuthology.orchestra.run.trial197.stdout:(1/2): libcephfs-devel-20.2.0-677.gf7870454.el9 544 kB/s | 34 kB 00:00 2026-02-20T23:00:15.032 INFO:teuthology.orchestra.run.trial197.stdout:(2/2): libcephfs-proxy2-20.2.0-677.gf7870454.el 375 kB/s | 24 kB 00:00 2026-02-20T23:00:15.033 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:15.033 INFO:teuthology.orchestra.run.trial197.stdout:Total 890 kB/s | 58 kB 00:00 2026-02-20T23:00:15.033 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:15.036 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:15.036 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:15.068 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:15.068 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:15.116 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:15.117 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:15.132 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:15.149 INFO:teuthology.orchestra.run.trial197.stdout: Installing : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:15.202 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:15.202 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:15.214 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:41 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:15.258 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:15.268 INFO:teuthology.orchestra.run.trial004.stdout:(4/12): libgfortran-11.5.0-14.el9.x86_64.rpm 698 kB/s | 794 kB 00:01 2026-02-20T23:00:15.280 INFO:teuthology.orchestra.run.trial064.stdout:Package ceph-base-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:15.284 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install librados2 2026-02-20T23:00:15.298 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:15.299 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:15.299 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:15.320 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install cephadm 2026-02-20T23:00:15.373 INFO:teuthology.orchestra.run.trial004.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-9.el9.x 31 kB/s | 15 kB 00:00 2026-02-20T23:00:15.595 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:46 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:15.617 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:41 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:15.661 INFO:teuthology.orchestra.run.trial197.stdout:Package librados2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:15.679 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:15.679 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:15.680 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:15.700 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:15.701 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout: cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 1.0 M 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:15.702 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 1.0 M 2026-02-20T23:00:15.703 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 1.0 M 2026-02-20T23:00:15.703 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:15.703 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install librbd1 2026-02-20T23:00:15.819 INFO:teuthology.orchestra.run.trial004.stdout:(6/12): openblas-0.3.29-1.el9.x86_64.rpm 76 kB/s | 42 kB 00:00 2026-02-20T23:00:15.821 INFO:teuthology.orchestra.run.trial064.stdout:cephadm-20.2.0-677.gf7870454.el9.noarch.rpm 8.3 MB/s | 1.0 MB 00:00 2026-02-20T23:00:15.822 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:15.822 INFO:teuthology.orchestra.run.trial064.stdout:Total 8.3 MB/s | 1.0 MB 00:00 2026-02-20T23:00:15.822 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:15.824 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:15.824 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:15.828 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:15.828 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:15.846 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:15.847 INFO:teuthology.orchestra.run.trial004.stdout:(7/12): flexiblas-netlib-3.0.4-9.el9.x86_64.rpm 2.9 MB/s | 3.0 MB 00:01 2026-02-20T23:00:15.904 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:15.918 INFO:teuthology.orchestra.run.trial064.stdout: Installing : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:15.980 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:16.012 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:16.035 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/1 2026-02-20T23:00:16.035 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.035 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:16.035 INFO:teuthology.orchestra.run.trial064.stdout: cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:16.035 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.035 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:16.062 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-immutable-object-cache 2026-02-20T23:00:16.077 INFO:teuthology.orchestra.run.trial197.stdout:Package librbd1-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:16.095 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:16.096 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:16.096 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:16.118 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-rados 2026-02-20T23:00:16.397 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:42 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:16.428 INFO:teuthology.orchestra.run.trial004.stdout:(8/12): openblas-openmp-0.3.29-1.el9.x86_64.rpm 5.0 MB/s | 5.3 MB 00:01 2026-02-20T23:00:16.430 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:16.480 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:16.480 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:16.480 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repo Size 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout: ceph-immutable-object-cache x86_64 2:20.2.0-677.gf7870454.el9 ceph 154 k 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 154 k 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 447 k 2026-02-20T23:00:16.481 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:16.495 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:16.514 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:16.514 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:16.515 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:16.536 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-rgw 2026-02-20T23:00:16.547 INFO:teuthology.orchestra.run.trial004.stdout:(9/12): python3-devel-3.9.25-3.el9.x86_64.rpm 335 kB/s | 244 kB 00:00 2026-02-20T23:00:16.566 INFO:teuthology.orchestra.run.trial064.stdout:ceph-immutable-object-cache-20.2.0-677.gf787045 1.8 MB/s | 154 kB 00:00 2026-02-20T23:00:16.567 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:16.567 INFO:teuthology.orchestra.run.trial064.stdout:Total 1.7 MB/s | 154 kB 00:00 2026-02-20T23:00:16.567 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:16.571 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:16.571 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:16.598 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:16.598 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:16.647 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:16.648 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T23:00:16.671 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T23:00:16.671 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:16.671 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-20T23:00:16.672 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.845 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:47 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:16.910 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:16.929 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:16.930 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:16.930 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:16.952 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-cephfs 2026-02-20T23:00:16.958 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-immutable-object-cache-2:20.2.0-677.gf7870454.e 1/1 2026-02-20T23:00:16.958 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.958 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:16.958 INFO:teuthology.orchestra.run.trial064.stdout: ceph-immutable-object-cache-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:16.959 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:16.959 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:16.976 INFO:teuthology.orchestra.run.trial004.stdout:(10/12): python3-numpy-1.23.5-2.el9.x86_64.rpm 5.4 MB/s | 6.1 MB 00:01 2026-02-20T23:00:16.986 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-mgr 2026-02-20T23:00:17.224 INFO:teuthology.orchestra.run.trial004.stdout:(11/12): python3-numpy-f2py-1.23.5-2.el9.x86_64 556 kB/s | 442 kB 00:00 2026-02-20T23:00:17.258 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:17.297 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:43 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:17.323 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:17.341 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:17.342 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:17.342 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:17.363 INFO:teuthology.orchestra.run.trial064.stdout:Package ceph-mgr-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:17.365 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install python3-rbd 2026-02-20T23:00:17.381 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:17.381 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:17.381 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:17.403 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-mgr-dashboard 2026-02-20T23:00:17.670 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:17.707 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:43 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:17.735 INFO:teuthology.orchestra.run.trial197.stdout:Package python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:17.753 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:17.754 INFO:teuthology.orchestra.run.trial197.stdout:Nothing to do. 2026-02-20T23:00:17.754 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:17.775 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install rbd-fuse 2026-02-20T23:00:17.790 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-dashboard noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 11 M 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout: ceph-grafana-dashboards noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 43 k 2026-02-20T23:00:17.791 INFO:teuthology.orchestra.run.trial064.stdout: ceph-prometheus-alerts noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 17 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-20T23:00:17.792 INFO:teuthology.orchestra.run.trial064.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-20T23:00:17.793 INFO:teuthology.orchestra.run.trial064.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-20T23:00:17.793 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:17.793 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:17.793 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:17.793 INFO:teuthology.orchestra.run.trial064.stdout:Install 14 Packages 2026-02-20T23:00:17.793 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:17.794 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 16 M 2026-02-20T23:00:17.794 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 158 M 2026-02-20T23:00:17.794 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:17.960 INFO:teuthology.orchestra.run.trial004.stdout:(12/12): python3-scipy-1.9.3-2.el9.x86_64.rpm 14 MB/s | 19 MB 00:01 2026-02-20T23:00:17.962 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:17.963 INFO:teuthology.orchestra.run.trial004.stdout:Total 10 MB/s | 43 MB 00:04 2026-02-20T23:00:18.088 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:49 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:18.122 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:18.136 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:18.136 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:18.171 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:18.172 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:18.172 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout: rbd-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 91 k 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 91 k 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 238 k 2026-02-20T23:00:18.173 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:18.248 INFO:teuthology.orchestra.run.trial197.stdout:rbd-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-20T23:00:18.248 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:18.248 INFO:teuthology.orchestra.run.trial197.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-20T23:00:18.248 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:18.253 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:18.253 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:18.284 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:18.285 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:18.336 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:18.340 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:18.340 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:18.353 INFO:teuthology.orchestra.run.trial197.stdout: Installing : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:18.410 INFO:teuthology.orchestra.run.trial064.stdout:(1/14): ceph-prometheus-alerts-20.2.0-677.gf787 245 kB/s | 17 kB 00:00 2026-02-20T23:00:18.412 INFO:teuthology.orchestra.run.trial064.stdout:(2/14): ceph-grafana-dashboards-20.2.0-677.gf78 595 kB/s | 43 kB 00:00 2026-02-20T23:00:18.432 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:18.489 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:18.489 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:18.489 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:18.489 INFO:teuthology.orchestra.run.trial197.stdout: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:18.489 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:18.489 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:18.517 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install rbd-mirror 2026-02-20T23:00:18.558 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:18.561 INFO:teuthology.orchestra.run.trial004.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 1/12 2026-02-20T23:00:18.568 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 2/12 2026-02-20T23:00:18.601 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 3/12 2026-02-20T23:00:18.606 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 4/12 2026-02-20T23:00:18.653 INFO:teuthology.orchestra.run.trial064.stdout:(3/14): ceph-mgr-dashboard-20.2.0-677.gf7870454 34 MB/s | 11 MB 00:00 2026-02-20T23:00:18.665 INFO:teuthology.orchestra.run.trial004.stdout: Installing : openblas-0.3.29-1.el9.x86_64 5/12 2026-02-20T23:00:18.667 INFO:teuthology.orchestra.run.trial004.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 6/12 2026-02-20T23:00:18.689 INFO:teuthology.orchestra.run.trial004.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 7/12 2026-02-20T23:00:18.828 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:49 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:18.912 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:18.912 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:18.912 INFO:teuthology.orchestra.run.trial197.stdout: Package Arch Version Repo Size 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout: rbd-mirror x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.9 M 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 2.9 M 2026-02-20T23:00:18.913 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 11 M 2026-02-20T23:00:18.914 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:19.010 INFO:teuthology.orchestra.run.trial004.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 8/12 2026-02-20T23:00:19.062 INFO:teuthology.orchestra.run.trial197.stdout:rbd-mirror-20.2.0-677.gf7870454.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-20T23:00:19.062 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:19.062 INFO:teuthology.orchestra.run.trial197.stdout:Total 19 MB/s | 2.9 MB 00:00 2026-02-20T23:00:19.062 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:19.067 INFO:teuthology.orchestra.run.trial064.stdout:(4/14): python3-jmespath-1.0.1-1.el9.noarch.rpm 73 kB/s | 48 kB 00:00 2026-02-20T23:00:19.067 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:19.067 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:19.081 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 9/12 2026-02-20T23:00:19.107 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:19.108 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:19.238 INFO:teuthology.orchestra.run.trial064.stdout:(5/14): protobuf-compiler-3.14.0-17.el9.x86_64. 4.9 MB/s | 862 kB 00:00 2026-02-20T23:00:19.293 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:19.295 INFO:teuthology.orchestra.run.trial197.stdout: Installing : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:19.319 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:19.319 INFO:teuthology.orchestra.run.trial197.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:19.319 INFO:teuthology.orchestra.run.trial197.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-20T23:00:19.319 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T23:00:19.319 INFO:teuthology.orchestra.run.trial197.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T23:00:19.319 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:19.507 INFO:teuthology.orchestra.run.trial064.stdout:(6/14): python3-protobuf-3.14.0-17.el9.noarch.r 316 kB/s | 267 kB 00:00 2026-02-20T23:00:19.636 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:19.636 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:19.636 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:19.636 INFO:teuthology.orchestra.run.trial197.stdout: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:19.636 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:19.636 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:19.665 DEBUG:teuthology.orchestra.run.trial197:> sudo yum -y install rbd-nbd 2026-02-20T23:00:19.745 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T23:00:19.901 INFO:teuthology.orchestra.run.trial064.stdout:(7/14): abseil-cpp-20211102.0-4.el9.x86_64.rpm 832 kB/s | 551 kB 00:00 2026-02-20T23:00:19.904 INFO:teuthology.orchestra.run.trial064.stdout:(8/14): grpc-data-1.46.7-10.el9.noarch.rpm 49 kB/s | 19 kB 00:00 2026-02-20T23:00:19.981 INFO:teuthology.orchestra.run.trial197.stdout:Last metadata expiration check: 0:00:50 ago on Fri 20 Feb 2026 10:59:29 PM UTC. 2026-02-20T23:00:20.064 INFO:teuthology.orchestra.run.trial197.stdout:Dependencies resolved. 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:Installing: 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout: rbd-nbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 180 k 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:Transaction Summary 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:================================================================================ 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:Install 1 Package 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:Total download size: 180 k 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:Installed size: 498 k 2026-02-20T23:00:20.065 INFO:teuthology.orchestra.run.trial197.stdout:Downloading Packages: 2026-02-20T23:00:20.152 INFO:teuthology.orchestra.run.trial197.stdout:rbd-nbd-20.2.0-677.gf7870454.el9.x86_64.rpm 2.0 MB/s | 180 kB 00:00 2026-02-20T23:00:20.152 INFO:teuthology.orchestra.run.trial197.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:20.152 INFO:teuthology.orchestra.run.trial197.stdout:Total 2.0 MB/s | 180 kB 00:00 2026-02-20T23:00:20.153 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction check 2026-02-20T23:00:20.157 INFO:teuthology.orchestra.run.trial197.stdout:Transaction check succeeded. 2026-02-20T23:00:20.157 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction test 2026-02-20T23:00:20.163 INFO:teuthology.orchestra.run.trial064.stdout:(9/14): python3-grpcio-1.46.7-10.el9.x86_64.rpm 7.8 MB/s | 2.0 MB 00:00 2026-02-20T23:00:20.166 INFO:teuthology.orchestra.run.trial064.stdout:(10/14): python3-grpcio-tools-1.46.7-10.el9.x86 551 kB/s | 144 kB 00:00 2026-02-20T23:00:20.189 INFO:teuthology.orchestra.run.trial197.stdout:Transaction test succeeded. 2026-02-20T23:00:20.189 INFO:teuthology.orchestra.run.trial197.stdout:Running transaction 2026-02-20T23:00:20.197 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 11/12 2026-02-20T23:00:20.198 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T23:00:20.210 INFO:teuthology.orchestra.run.trial064.stdout:(11/14): protobuf-3.14.0-17.el9.x86_64.rpm 571 kB/s | 1.0 MB 00:01 2026-02-20T23:00:20.241 INFO:teuthology.orchestra.run.trial064.stdout:(12/14): python3-repoze-lru-0.7-16.el9.noarch.r 393 kB/s | 31 kB 00:00 2026-02-20T23:00:20.246 INFO:teuthology.orchestra.run.trial197.stdout: Preparing : 1/1 2026-02-20T23:00:20.249 INFO:teuthology.orchestra.run.trial064.stdout:(13/14): python3-routes-2.5.1-5.el9.noarch.rpm 2.2 MB/s | 188 kB 00:00 2026-02-20T23:00:20.263 INFO:teuthology.orchestra.run.trial197.stdout: Installing : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:20.290 INFO:teuthology.orchestra.run.trial064.stdout:(14/14): python3-xmltodict-0.12.0-15.el9.noarch 279 kB/s | 22 kB 00:00 2026-02-20T23:00:20.294 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:20.294 INFO:teuthology.orchestra.run.trial064.stdout:Total 6.3 MB/s | 16 MB 00:02 2026-02-20T23:00:20.328 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:20.338 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:20.338 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:20.340 INFO:teuthology.orchestra.run.trial197.stdout: Running scriptlet: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:20.397 INFO:teuthology.orchestra.run.trial197.stdout: Verifying : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:20.397 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:20.397 INFO:teuthology.orchestra.run.trial197.stdout:Installed: 2026-02-20T23:00:20.398 INFO:teuthology.orchestra.run.trial197.stdout: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:20.398 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:00:20.398 INFO:teuthology.orchestra.run.trial197.stdout:Complete! 2026-02-20T23:00:20.427 DEBUG:teuthology.parallel:result is None 2026-02-20T23:00:20.434 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:20.434 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:20.478 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 1/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 2/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 3/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 4/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 5/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 6/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 7/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 8/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 9/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T23:00:20.479 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 11/12 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 12/12 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-diskprediction-local-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-20T23:00:20.538 INFO:teuthology.orchestra.run.trial004.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:20.539 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:20.551 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:20.559 INFO:teuthology.orchestra.run.trial064.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 1/14 2026-02-20T23:00:20.562 INFO:teuthology.orchestra.run.trial064.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 2/14 2026-02-20T23:00:20.567 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 3/14 2026-02-20T23:00:20.577 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-mgr-rook 2026-02-20T23:00:20.579 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 4/14 2026-02-20T23:00:20.581 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 5/14 2026-02-20T23:00:20.608 INFO:teuthology.orchestra.run.trial064.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 6/14 2026-02-20T23:00:20.651 INFO:teuthology.orchestra.run.trial064.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 7/14 2026-02-20T23:00:20.681 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 8/14 2026-02-20T23:00:20.691 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 9/14 2026-02-20T23:00:20.698 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 10/14 2026-02-20T23:00:20.701 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 11/14 2026-02-20T23:00:20.708 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 12/14 2026-02-20T23:00:20.885 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:49 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:20.967 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-rook noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 50 k 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-20T23:00:20.968 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout:Install 10 Packages 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 2.0 M 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 25 M 2026-02-20T23:00:20.969 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:21.819 INFO:teuthology.orchestra.run.trial004.stdout:(1/10): ceph-mgr-rook-20.2.0-677.gf7870454.el9. 658 kB/s | 50 kB 00:00 2026-02-20T23:00:21.853 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 13/14 2026-02-20T23:00:21.858 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T23:00:22.049 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 14/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9 1/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noar 2/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9. 3/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 4/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 5/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 6/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 7/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 8/14 2026-02-20T23:00:22.050 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 9/14 2026-02-20T23:00:22.051 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 10/14 2026-02-20T23:00:22.051 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 11/14 2026-02-20T23:00:22.051 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 12/14 2026-02-20T23:00:22.051 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 13/14 2026-02-20T23:00:22.104 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 14/14 2026-02-20T23:00:22.104 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: ceph-grafana-dashboards-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-dashboard-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: ceph-prometheus-alerts-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-20T23:00:22.105 INFO:teuthology.orchestra.run.trial064.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-20T23:00:22.106 INFO:teuthology.orchestra.run.trial064.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-20T23:00:22.106 INFO:teuthology.orchestra.run.trial064.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-20T23:00:22.106 INFO:teuthology.orchestra.run.trial064.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-20T23:00:22.106 INFO:teuthology.orchestra.run.trial064.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-20T23:00:22.106 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:22.106 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:22.137 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-20T23:00:22.298 INFO:teuthology.orchestra.run.trial004.stdout:(2/10): python3-requests-oauthlib-1.3.0-12.el9. 112 kB/s | 54 kB 00:00 2026-02-20T23:00:22.315 INFO:teuthology.orchestra.run.trial004.stdout:(3/10): python3-pyasn1-0.4.8-6.el9.noarch.rpm 277 kB/s | 159 kB 00:00 2026-02-20T23:00:22.341 INFO:teuthology.orchestra.run.trial004.stdout:(4/10): python3-certifi-2023.05.07-4.el9.noarch 642 kB/s | 14 kB 00:00 2026-02-20T23:00:22.353 INFO:teuthology.orchestra.run.trial004.stdout:(5/10): python3-cachetools-4.2.4-1.el9.noarch.r 593 kB/s | 32 kB 00:00 2026-02-20T23:00:22.363 INFO:teuthology.orchestra.run.trial004.stdout:(6/10): python3-google-auth-2.45.0-1.el9.noarch 12 MB/s | 254 kB 00:00 2026-02-20T23:00:22.381 INFO:teuthology.orchestra.run.trial004.stdout:(7/10): python3-kubernetes-26.1.0-3.el9.noarch. 36 MB/s | 1.0 MB 00:00 2026-02-20T23:00:22.381 INFO:teuthology.orchestra.run.trial004.stdout:(8/10): python3-rsa-4.9-2.el9.noarch.rpm 3.1 MB/s | 59 kB 00:00 2026-02-20T23:00:22.385 INFO:teuthology.orchestra.run.trial004.stdout:(9/10): python3-websocket-client-1.2.3-2.el9.no 24 MB/s | 90 kB 00:00 2026-02-20T23:00:22.444 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:48 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:22.485 INFO:teuthology.orchestra.run.trial004.stdout:(10/10): python3-pyasn1-modules-0.4.8-6.el9.noa 376 kB/s | 279 kB 00:00 2026-02-20T23:00:22.488 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:22.488 INFO:teuthology.orchestra.run.trial004.stdout:Total 1.3 MB/s | 2.0 MB 00:01 2026-02-20T23:00:22.513 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:22.521 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:22.522 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:22.527 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:====================================================================================== 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:====================================================================================== 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-diskprediction-local noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 7.4 M 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:====================================================================================== 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout:Install 12 Packages 2026-02-20T23:00:22.528 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:22.529 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 43 M 2026-02-20T23:00:22.529 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 234 M 2026-02-20T23:00:22.529 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:22.562 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:22.563 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:22.637 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:22.687 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/10 2026-02-20T23:00:22.700 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/10 2026-02-20T23:00:22.714 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/10 2026-02-20T23:00:22.718 INFO:teuthology.orchestra.run.trial064.stdout:(1/12): libquadmath-11.5.0-14.el9.x86_64.rpm 2.9 MB/s | 184 kB 00:00 2026-02-20T23:00:22.719 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/10 2026-02-20T23:00:22.727 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/10 2026-02-20T23:00:22.751 INFO:teuthology.orchestra.run.trial064.stdout:(2/12): libgfortran-11.5.0-14.el9.x86_64.rpm 8.2 MB/s | 794 kB 00:00 2026-02-20T23:00:22.766 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/10 2026-02-20T23:00:22.778 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T23:00:22.888 INFO:teuthology.orchestra.run.trial064.stdout:(3/12): ceph-mgr-diskprediction-local-20.2.0-67 32 MB/s | 7.4 MB 00:00 2026-02-20T23:00:22.905 INFO:teuthology.orchestra.run.trial064.stdout:(4/12): flexiblas-3.0.4-9.el9.x86_64.rpm 158 kB/s | 30 kB 00:00 2026-02-20T23:00:22.968 INFO:teuthology.orchestra.run.trial064.stdout:(5/12): flexiblas-openblas-openmp-3.0.4-9.el9.x 183 kB/s | 15 kB 00:00 2026-02-20T23:00:23.053 INFO:teuthology.orchestra.run.trial064.stdout:(6/12): openblas-0.3.29-1.el9.x86_64.rpm 286 kB/s | 42 kB 00:00 2026-02-20T23:00:23.095 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 8/10 2026-02-20T23:00:23.110 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 9/10 2026-02-20T23:00:23.110 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 1/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 2/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 3/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 4/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 5/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 6/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T23:00:23.225 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 8/10 2026-02-20T23:00:23.226 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 9/10 2026-02-20T23:00:23.240 INFO:teuthology.orchestra.run.trial064.stdout:(7/12): python3-devel-3.9.25-3.el9.x86_64.rpm 1.3 MB/s | 244 kB 00:00 2026-02-20T23:00:23.277 INFO:teuthology.orchestra.run.trial064.stdout:(8/12): flexiblas-netlib-3.0.4-9.el9.x86_64.rpm 5.7 MB/s | 3.0 MB 00:00 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 10/10 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-20T23:00:23.283 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:23.284 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:23.313 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-mgr-cephadm 2026-02-20T23:00:23.488 INFO:teuthology.orchestra.run.trial064.stdout:(9/12): python3-numpy-f2py-1.23.5-2.el9.x86_64. 2.1 MB/s | 442 kB 00:00 2026-02-20T23:00:23.623 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:52 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:23.706 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 173 k 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-20T23:00:23.707 INFO:teuthology.orchestra.run.trial004.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout:Install 7 Packages 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 7.1 M 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 33 M 2026-02-20T23:00:23.708 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:23.813 INFO:teuthology.orchestra.run.trial064.stdout:(10/12): openblas-openmp-0.3.29-1.el9.x86_64.rp 6.3 MB/s | 5.3 MB 00:00 2026-02-20T23:00:23.853 INFO:teuthology.orchestra.run.trial064.stdout:(11/12): python3-numpy-1.23.5-2.el9.x86_64.rpm 10 MB/s | 6.1 MB 00:00 2026-02-20T23:00:24.137 INFO:teuthology.orchestra.run.trial004.stdout:(1/7): ceph-mgr-cephadm-20.2.0-677.gf7870454.el 2.0 MB/s | 173 kB 00:00 2026-02-20T23:00:24.196 INFO:teuthology.orchestra.run.trial004.stdout:(2/7): python3-jinja2-2.11.3-8.el9.noarch.rpm 1.7 MB/s | 249 kB 00:00 2026-02-20T23:00:24.197 INFO:teuthology.orchestra.run.trial004.stdout:(3/7): python3-markupsafe-1.1.1-12.el9.x86_64.r 580 kB/s | 35 kB 00:00 2026-02-20T23:00:24.370 INFO:teuthology.orchestra.run.trial004.stdout:(4/7): python3-babel-2.9.1-2.el9.noarch.rpm 19 MB/s | 6.0 MB 00:00 2026-02-20T23:00:24.434 INFO:teuthology.orchestra.run.trial004.stdout:(5/7): python3-natsort-7.1.1-5.el9.noarch.rpm 243 kB/s | 58 kB 00:00 2026-02-20T23:00:24.538 INFO:teuthology.orchestra.run.trial004.stdout:(6/7): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.6 MB/s | 548 kB 00:00 2026-02-20T23:00:24.599 INFO:teuthology.orchestra.run.trial004.stdout:(7/7): python3-typing-extensions-4.15.0-1.el9.n 377 kB/s | 86 kB 00:00 2026-02-20T23:00:24.601 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:24.601 INFO:teuthology.orchestra.run.trial004.stdout:Total 7.9 MB/s | 7.1 MB 00:00 2026-02-20T23:00:24.638 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:24.644 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:24.644 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:24.650 INFO:teuthology.orchestra.run.trial064.stdout:(12/12): python3-scipy-1.9.3-2.el9.x86_64.rpm 17 MB/s | 19 MB 00:01 2026-02-20T23:00:24.651 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:24.651 INFO:teuthology.orchestra.run.trial064.stdout:Total 20 MB/s | 43 MB 00:02 2026-02-20T23:00:24.717 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:24.717 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:24.806 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:24.808 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:24.820 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:24.820 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:24.858 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 1/7 2026-02-20T23:00:24.867 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/7 2026-02-20T23:00:24.873 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/7 2026-02-20T23:00:25.023 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:25.023 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:25.095 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T23:00:25.119 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 5/7 2026-02-20T23:00:25.143 INFO:teuthology.orchestra.run.trial004.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 6/7 2026-02-20T23:00:25.144 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T23:00:25.239 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:25.242 INFO:teuthology.orchestra.run.trial064.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 1/12 2026-02-20T23:00:25.248 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 2/12 2026-02-20T23:00:25.255 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T23:00:25.255 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/7 2026-02-20T23:00:25.255 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/7 2026-02-20T23:00:25.256 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 3/7 2026-02-20T23:00:25.256 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T23:00:25.256 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 5/7 2026-02-20T23:00:25.256 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 6/7 2026-02-20T23:00:25.282 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 3/12 2026-02-20T23:00:25.286 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 4/12 2026-02-20T23:00:25.315 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 7/7 2026-02-20T23:00:25.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:25.315 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:25.316 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:25.346 INFO:teuthology.orchestra.run.trial064.stdout: Installing : openblas-0.3.29-1.el9.x86_64 5/12 2026-02-20T23:00:25.348 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-fuse 2026-02-20T23:00:25.349 INFO:teuthology.orchestra.run.trial064.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 6/12 2026-02-20T23:00:25.370 INFO:teuthology.orchestra.run.trial064.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 7/12 2026-02-20T23:00:25.660 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:54 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:25.688 INFO:teuthology.orchestra.run.trial064.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 8/12 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout: ceph-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 943 k 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:25.745 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:25.746 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:25.746 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:25.746 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:25.746 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 943 k 2026-02-20T23:00:25.746 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 2.7 M 2026-02-20T23:00:25.746 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:25.760 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 9/12 2026-02-20T23:00:25.865 INFO:teuthology.orchestra.run.trial004.stdout:ceph-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 7.7 MB/s | 943 kB 00:00 2026-02-20T23:00:25.865 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:25.865 INFO:teuthology.orchestra.run.trial004.stdout:Total 7.7 MB/s | 943 kB 00:00 2026-02-20T23:00:25.865 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:25.869 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:25.869 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:25.903 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:25.903 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:25.993 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:26.010 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:26.235 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:26.294 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:26.295 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:26.295 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:26.295 INFO:teuthology.orchestra.run.trial004.stdout: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:26.295 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:26.295 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:26.325 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install ceph-volume 2026-02-20T23:00:26.416 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T23:00:26.636 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:55 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:26.720 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:26.721 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:26.721 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repository Size 2026-02-20T23:00:26.721 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:26.721 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:26.721 INFO:teuthology.orchestra.run.trial004.stdout: ceph-volume noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 297 k 2026-02-20T23:00:26.721 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout:Install 2 Packages 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 648 k 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 2.2 M 2026-02-20T23:00:26.722 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:26.873 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 11/12 2026-02-20T23:00:26.874 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T23:00:26.920 INFO:teuthology.orchestra.run.trial004.stdout:(1/2): ceph-volume-20.2.0-677.gf7870454.el9.noa 2.6 MB/s | 297 kB 00:00 2026-02-20T23:00:26.953 INFO:teuthology.orchestra.run.trial004.stdout:(2/2): cryptsetup-2.8.1-3.el9.x86_64.rpm 2.4 MB/s | 351 kB 00:00 2026-02-20T23:00:26.953 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:26.953 INFO:teuthology.orchestra.run.trial004.stdout:Total 2.7 MB/s | 648 kB 00:00 2026-02-20T23:00:26.961 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:26.967 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:26.968 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:27.011 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:27.011 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:27.091 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:27.153 INFO:teuthology.orchestra.run.trial004.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 1/2 2026-02-20T23:00:27.155 INFO:teuthology.orchestra.run.trial004.stdout: Installing : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T23:00:27.171 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T23:00:27.171 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:27.171 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-20T23:00:27.171 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:27.177 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 12/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.2.0-677.gf78704 1/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 2/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 3/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 4/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 5/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 6/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 7/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 8/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 9/12 2026-02-20T23:00:27.178 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 10/12 2026-02-20T23:00:27.179 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 11/12 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 12/12 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-diskprediction-local-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:27.237 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:27.276 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-mgr-rook 2026-02-20T23:00:27.396 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 1/2 2026-02-20T23:00:27.457 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 2/2 2026-02-20T23:00:27.457 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:27.457 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:27.457 INFO:teuthology.orchestra.run.trial004.stdout: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch cryptsetup-2.8.1-3.el9.x86_64 2026-02-20T23:00:27.457 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:27.458 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:27.486 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install librados-devel 2026-02-20T23:00:27.587 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:53 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-rook noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 50 k 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-20T23:00:27.670 INFO:teuthology.orchestra.run.trial064.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout:Install 10 Packages 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 2.0 M 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 25 M 2026-02-20T23:00:27.671 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:27.796 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:56 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repo Size 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout: librados-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 126 k 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:27.879 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:27.880 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:27.880 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:27.880 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 126 k 2026-02-20T23:00:27.880 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 449 k 2026-02-20T23:00:27.880 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:27.966 INFO:teuthology.orchestra.run.trial004.stdout:librados-devel-20.2.0-677.gf7870454.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-20T23:00:27.967 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:27.967 INFO:teuthology.orchestra.run.trial004.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-20T23:00:27.967 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:27.970 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:27.970 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:28.001 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:28.001 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:28.056 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:28.072 INFO:teuthology.orchestra.run.trial004.stdout: Installing : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:28.154 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:28.212 INFO:teuthology.orchestra.run.trial064.stdout:(1/10): ceph-mgr-rook-20.2.0-677.gf7870454.el9. 681 kB/s | 50 kB 00:00 2026-02-20T23:00:28.214 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:28.214 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:28.214 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:28.214 INFO:teuthology.orchestra.run.trial004.stdout: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:28.214 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:28.214 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:28.241 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install libcephfs2 2026-02-20T23:00:28.567 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:57 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:28.632 INFO:teuthology.orchestra.run.trial004.stdout:Package libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:28.650 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:28.650 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:28.650 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:28.671 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install libcephfs-devel 2026-02-20T23:00:28.847 INFO:teuthology.orchestra.run.trial064.stdout:(2/10): python3-requests-oauthlib-1.3.0-12.el9. 84 kB/s | 54 kB 00:00 2026-02-20T23:00:28.893 INFO:teuthology.orchestra.run.trial064.stdout:(3/10): python3-cachetools-4.2.4-1.el9.noarch.r 702 kB/s | 32 kB 00:00 2026-02-20T23:00:28.906 INFO:teuthology.orchestra.run.trial064.stdout:(4/10): python3-certifi-2023.05.07-4.el9.noarch 1.1 MB/s | 14 kB 00:00 2026-02-20T23:00:28.933 INFO:teuthology.orchestra.run.trial064.stdout:(5/10): python3-pyasn1-0.4.8-6.el9.noarch.rpm 200 kB/s | 159 kB 00:00 2026-02-20T23:00:28.971 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:57 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:29.054 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:29.055 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:29.055 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repo Size 2026-02-20T23:00:29.055 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:29.055 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout: libcephfs-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 34 k 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:Installing dependencies: 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout: libcephfs-proxy2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 k 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:Install 2 Packages 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 58 k 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 207 k 2026-02-20T23:00:29.056 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:29.084 INFO:teuthology.orchestra.run.trial064.stdout:(6/10): python3-pyasn1-modules-0.4.8-6.el9.noar 295 kB/s | 279 kB 00:00 2026-02-20T23:00:29.118 INFO:teuthology.orchestra.run.trial004.stdout:(1/2): libcephfs-devel-20.2.0-677.gf7870454.el9 547 kB/s | 34 kB 00:00 2026-02-20T23:00:29.120 INFO:teuthology.orchestra.run.trial004.stdout:(2/2): libcephfs-proxy2-20.2.0-677.gf7870454.el 370 kB/s | 24 kB 00:00 2026-02-20T23:00:29.121 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:29.121 INFO:teuthology.orchestra.run.trial004.stdout:Total 880 kB/s | 58 kB 00:00 2026-02-20T23:00:29.122 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:29.122 INFO:teuthology.orchestra.run.trial064.stdout:(7/10): python3-rsa-4.9-2.el9.noarch.rpm 1.5 MB/s | 59 kB 00:00 2026-02-20T23:00:29.124 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:29.124 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:29.140 INFO:teuthology.orchestra.run.trial064.stdout:(8/10): python3-websocket-client-1.2.3-2.el9.no 4.8 MB/s | 90 kB 00:00 2026-02-20T23:00:29.156 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:29.156 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:29.208 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:29.209 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:29.224 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:29.239 INFO:teuthology.orchestra.run.trial064.stdout:(9/10): python3-google-auth-2.45.0-1.el9.noarch 762 kB/s | 254 kB 00:00 2026-02-20T23:00:29.240 INFO:teuthology.orchestra.run.trial004.stdout: Installing : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:29.263 INFO:teuthology.orchestra.run.trial064.stdout:(10/10): python3-kubernetes-26.1.0-3.el9.noarch 3.1 MB/s | 1.0 MB 00:00 2026-02-20T23:00:29.264 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:29.264 INFO:teuthology.orchestra.run.trial064.stdout:Total 1.2 MB/s | 2.0 MB 00:01 2026-02-20T23:00:29.289 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:29.297 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:29.297 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:29.298 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:29.298 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:29.336 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:29.336 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:29.356 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:29.383 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install librados2 2026-02-20T23:00:29.410 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:29.461 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 1/10 2026-02-20T23:00:29.473 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 2/10 2026-02-20T23:00:29.488 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-rsa-4.9-2.el9.noarch 3/10 2026-02-20T23:00:29.493 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 4/10 2026-02-20T23:00:29.500 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 5/10 2026-02-20T23:00:29.540 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 6/10 2026-02-20T23:00:29.552 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T23:00:29.692 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:58 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:29.756 INFO:teuthology.orchestra.run.trial004.stdout:Package librados2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:29.775 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:29.775 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:29.775 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:29.796 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install librbd1 2026-02-20T23:00:29.872 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 8/10 2026-02-20T23:00:29.886 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 9/10 2026-02-20T23:00:29.887 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T23:00:29.994 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 10/10 2026-02-20T23:00:29.994 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 1/10 2026-02-20T23:00:29.994 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 2/10 2026-02-20T23:00:29.994 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 3/10 2026-02-20T23:00:29.994 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 4/10 2026-02-20T23:00:29.994 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 5/10 2026-02-20T23:00:29.995 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 6/10 2026-02-20T23:00:29.995 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 7/10 2026-02-20T23:00:29.995 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 8/10 2026-02-20T23:00:29.995 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 9/10 2026-02-20T23:00:30.051 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 10/10 2026-02-20T23:00:30.051 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:30.051 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:30.051 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-rook-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:30.052 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:30.082 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-mgr-cephadm 2026-02-20T23:00:30.105 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:59 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:30.170 INFO:teuthology.orchestra.run.trial004.stdout:Package librbd1-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:30.189 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:30.189 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:30.190 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:30.211 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install python3-rados 2026-02-20T23:00:30.385 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:56 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-cephadm noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 173 k 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-20T23:00:30.469 INFO:teuthology.orchestra.run.trial064.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout:Install 7 Packages 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 7.1 M 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 33 M 2026-02-20T23:00:30.470 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:30.515 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:59 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:30.579 INFO:teuthology.orchestra.run.trial004.stdout:Package python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:30.598 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:30.599 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:30.599 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:30.620 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install python3-rgw 2026-02-20T23:00:30.633 INFO:teuthology.orchestra.run.trial064.stdout:(1/7): python3-jinja2-2.11.3-8.el9.noarch.rpm 11 MB/s | 249 kB 00:00 2026-02-20T23:00:30.638 INFO:teuthology.orchestra.run.trial064.stdout:(2/7): python3-markupsafe-1.1.1-12.el9.x86_64.r 6.9 MB/s | 35 kB 00:00 2026-02-20T23:00:30.657 INFO:teuthology.orchestra.run.trial064.stdout:(3/7): python3-babel-2.9.1-2.el9.noarch.rpm 127 MB/s | 6.0 MB 00:00 2026-02-20T23:00:30.696 INFO:teuthology.orchestra.run.trial064.stdout:(4/7): ceph-mgr-cephadm-20.2.0-677.gf7870454.el 2.0 MB/s | 173 kB 00:00 2026-02-20T23:00:30.870 INFO:teuthology.orchestra.run.trial064.stdout:(5/7): python3-natsort-7.1.1-5.el9.noarch.rpm 272 kB/s | 58 kB 00:00 2026-02-20T23:00:30.927 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:00:59 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:30.935 INFO:teuthology.orchestra.run.trial064.stdout:(6/7): python3-typing-extensions-4.15.0-1.el9.n 364 kB/s | 86 kB 00:00 2026-02-20T23:00:30.992 INFO:teuthology.orchestra.run.trial004.stdout:Package python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:31.006 INFO:teuthology.orchestra.run.trial064.stdout:(7/7): python3-asyncssh-2.13.2-5.el9.noarch.rpm 1.5 MB/s | 548 kB 00:00 2026-02-20T23:00:31.007 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:31.007 INFO:teuthology.orchestra.run.trial064.stdout:Total 13 MB/s | 7.1 MB 00:00 2026-02-20T23:00:31.010 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:31.010 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:31.010 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:31.031 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install python3-cephfs 2026-02-20T23:00:31.044 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:31.051 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:31.051 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:31.124 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:31.124 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:31.214 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:31.263 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 1/7 2026-02-20T23:00:31.273 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 2/7 2026-02-20T23:00:31.278 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 3/7 2026-02-20T23:00:31.338 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:01:00 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:31.403 INFO:teuthology.orchestra.run.trial004.stdout:Package python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:31.422 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:31.422 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:31.423 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:31.444 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install python3-rbd 2026-02-20T23:00:31.497 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T23:00:31.521 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 5/7 2026-02-20T23:00:31.545 INFO:teuthology.orchestra.run.trial064.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 6/7 2026-02-20T23:00:31.546 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 7/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 1/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 2/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 3/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 4/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 5/7 2026-02-20T23:00:31.652 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 6/7 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 7/7 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout: ceph-mgr-cephadm-2:20.2.0-677.gf7870454.el9.noarch 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-20T23:00:31.710 INFO:teuthology.orchestra.run.trial064.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-20T23:00:31.711 INFO:teuthology.orchestra.run.trial064.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-20T23:00:31.711 INFO:teuthology.orchestra.run.trial064.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-20T23:00:31.711 INFO:teuthology.orchestra.run.trial064.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-20T23:00:31.711 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:31.711 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:31.742 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-fuse 2026-02-20T23:00:31.757 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:01:00 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:31.822 INFO:teuthology.orchestra.run.trial004.stdout:Package python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:31.840 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:31.841 INFO:teuthology.orchestra.run.trial004.stdout:Nothing to do. 2026-02-20T23:00:31.841 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:31.861 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install rbd-fuse 2026-02-20T23:00:32.057 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:58 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:32.142 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout: ceph-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 943 k 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 943 k 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 2.7 M 2026-02-20T23:00:32.143 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:32.166 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:01:01 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:32.249 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout: rbd-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 91 k 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 91 k 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 238 k 2026-02-20T23:00:32.250 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:32.263 INFO:teuthology.orchestra.run.trial064.stdout:ceph-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 7.7 MB/s | 943 kB 00:00 2026-02-20T23:00:32.263 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:32.263 INFO:teuthology.orchestra.run.trial064.stdout:Total 7.6 MB/s | 943 kB 00:00 2026-02-20T23:00:32.263 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:32.268 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:32.268 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:32.302 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:32.303 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:32.324 INFO:teuthology.orchestra.run.trial004.stdout:rbd-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 1.2 MB/s | 91 kB 00:00 2026-02-20T23:00:32.324 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:32.324 INFO:teuthology.orchestra.run.trial004.stdout:Total 1.2 MB/s | 91 kB 00:00 2026-02-20T23:00:32.325 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:32.329 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:32.329 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:32.361 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:32.361 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:32.392 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:32.409 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:32.415 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:32.431 INFO:teuthology.orchestra.run.trial004.stdout: Installing : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:32.514 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:32.573 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:32.573 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:32.574 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:32.574 INFO:teuthology.orchestra.run.trial004.stdout: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:32.574 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:32.574 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:32.603 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install rbd-mirror 2026-02-20T23:00:32.643 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:32.700 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:32.700 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:32.700 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:32.700 INFO:teuthology.orchestra.run.trial064.stdout: ceph-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:32.700 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:32.701 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:32.728 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install ceph-volume 2026-02-20T23:00:32.911 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:01:01 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:32.995 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:32.995 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout: Package Arch Version Repo Size 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout: rbd-mirror x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.9 M 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:32.996 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 2.9 M 2026-02-20T23:00:32.997 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 11 M 2026-02-20T23:00:32.997 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:33.041 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:00:59 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:33.125 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repository Size 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout: ceph-volume noarch 2:20.2.0-677.gf7870454.el9 ceph-noarch 297 k 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-20T23:00:33.126 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout:Install 2 Packages 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 648 k 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 2.2 M 2026-02-20T23:00:33.127 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:33.143 INFO:teuthology.orchestra.run.trial004.stdout:rbd-mirror-20.2.0-677.gf7870454.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-20T23:00:33.143 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:33.143 INFO:teuthology.orchestra.run.trial004.stdout:Total 20 MB/s | 2.9 MB 00:00 2026-02-20T23:00:33.144 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:33.148 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:33.148 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:33.189 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:33.189 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:33.306 INFO:teuthology.orchestra.run.trial064.stdout:(1/2): ceph-volume-20.2.0-677.gf7870454.el9.noa 3.0 MB/s | 297 kB 00:00 2026-02-20T23:00:33.317 INFO:teuthology.orchestra.run.trial064.stdout:(2/2): cryptsetup-2.8.1-3.el9.x86_64.rpm 3.2 MB/s | 351 kB 00:00 2026-02-20T23:00:33.317 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:33.317 INFO:teuthology.orchestra.run.trial064.stdout:Total 3.3 MB/s | 648 kB 00:00 2026-02-20T23:00:33.327 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:33.332 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:33.332 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:33.374 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:33.375 INFO:teuthology.orchestra.run.trial004.stdout: Installing : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:33.376 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:33.376 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:33.397 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:33.397 INFO:teuthology.orchestra.run.trial004.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:33.398 INFO:teuthology.orchestra.run.trial004.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-20T23:00:33.398 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T23:00:33.398 INFO:teuthology.orchestra.run.trial004.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T23:00:33.398 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:33.456 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:33.519 INFO:teuthology.orchestra.run.trial064.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 1/2 2026-02-20T23:00:33.521 INFO:teuthology.orchestra.run.trial064.stdout: Installing : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T23:00:33.537 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 2/2 2026-02-20T23:00:33.537 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:33.537 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-20T23:00:33.537 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:33.693 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:33.693 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:33.693 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:33.693 INFO:teuthology.orchestra.run.trial004.stdout: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:33.693 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:33.693 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:33.721 DEBUG:teuthology.orchestra.run.trial004:> sudo yum -y install rbd-nbd 2026-02-20T23:00:33.758 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : ceph-volume-2:20.2.0-677.gf7870454.el9.noarch 1/2 2026-02-20T23:00:33.816 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 2/2 2026-02-20T23:00:33.816 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:33.816 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:33.816 INFO:teuthology.orchestra.run.trial064.stdout: ceph-volume-2:20.2.0-677.gf7870454.el9.noarch cryptsetup-2.8.1-3.el9.x86_64 2026-02-20T23:00:33.816 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:33.816 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:33.845 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install librados-devel 2026-02-20T23:00:34.031 INFO:teuthology.orchestra.run.trial004.stdout:Last metadata expiration check: 0:01:03 ago on Fri 20 Feb 2026 10:59:31 PM UTC. 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout:Dependencies resolved. 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout:Installing: 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout: rbd-nbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 180 k 2026-02-20T23:00:34.116 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout:Transaction Summary 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout:================================================================================ 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout:Install 1 Package 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout:Total download size: 180 k 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout:Installed size: 498 k 2026-02-20T23:00:34.117 INFO:teuthology.orchestra.run.trial004.stdout:Downloading Packages: 2026-02-20T23:00:34.158 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:00 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:34.203 INFO:teuthology.orchestra.run.trial004.stdout:rbd-nbd-20.2.0-677.gf7870454.el9.x86_64.rpm 2.0 MB/s | 180 kB 00:00 2026-02-20T23:00:34.204 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:34.204 INFO:teuthology.orchestra.run.trial004.stdout:Total 2.0 MB/s | 180 kB 00:00 2026-02-20T23:00:34.204 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction check 2026-02-20T23:00:34.209 INFO:teuthology.orchestra.run.trial004.stdout:Transaction check succeeded. 2026-02-20T23:00:34.209 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction test 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial004.stdout:Transaction test succeeded. 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial004.stdout:Running transaction 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repo Size 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout: librados-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 126 k 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:34.242 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:34.243 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:34.243 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 126 k 2026-02-20T23:00:34.243 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 449 k 2026-02-20T23:00:34.243 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:34.299 INFO:teuthology.orchestra.run.trial004.stdout: Preparing : 1/1 2026-02-20T23:00:34.316 INFO:teuthology.orchestra.run.trial004.stdout: Installing : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:34.329 INFO:teuthology.orchestra.run.trial064.stdout:librados-devel-20.2.0-677.gf7870454.el9.x86_64. 1.4 MB/s | 126 kB 00:00 2026-02-20T23:00:34.329 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:34.329 INFO:teuthology.orchestra.run.trial064.stdout:Total 1.4 MB/s | 126 kB 00:00 2026-02-20T23:00:34.329 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:34.332 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:34.332 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:34.364 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:34.364 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:34.407 INFO:teuthology.orchestra.run.trial004.stdout: Running scriptlet: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:34.418 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:34.434 INFO:teuthology.orchestra.run.trial064.stdout: Installing : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:34.466 INFO:teuthology.orchestra.run.trial004.stdout: Verifying : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:34.467 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:34.467 INFO:teuthology.orchestra.run.trial004.stdout:Installed: 2026-02-20T23:00:34.467 INFO:teuthology.orchestra.run.trial004.stdout: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:34.467 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:34.467 INFO:teuthology.orchestra.run.trial004.stdout:Complete! 2026-02-20T23:00:34.497 DEBUG:teuthology.parallel:result is None 2026-02-20T23:00:34.515 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:34.572 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:34.572 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:34.572 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:34.572 INFO:teuthology.orchestra.run.trial064.stdout: librados-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:34.572 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:34.572 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:34.601 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install libcephfs2 2026-02-20T23:00:34.911 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:00 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:34.977 INFO:teuthology.orchestra.run.trial064.stdout:Package libcephfs2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:34.996 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:34.996 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:34.997 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:35.018 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install libcephfs-devel 2026-02-20T23:00:35.328 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:01 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:35.412 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:35.412 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repo Size 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout: libcephfs-devel x86_64 2:20.2.0-677.gf7870454.el9 ceph 34 k 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout:Installing dependencies: 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout: libcephfs-proxy2 x86_64 2:20.2.0-677.gf7870454.el9 ceph 24 k 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:35.413 INFO:teuthology.orchestra.run.trial064.stdout:Install 2 Packages 2026-02-20T23:00:35.414 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:35.414 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 58 k 2026-02-20T23:00:35.414 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 207 k 2026-02-20T23:00:35.414 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:35.476 INFO:teuthology.orchestra.run.trial064.stdout:(1/2): libcephfs-proxy2-20.2.0-677.gf7870454.el 382 kB/s | 24 kB 00:00 2026-02-20T23:00:35.477 INFO:teuthology.orchestra.run.trial064.stdout:(2/2): libcephfs-devel-20.2.0-677.gf7870454.el9 530 kB/s | 34 kB 00:00 2026-02-20T23:00:35.477 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:35.478 INFO:teuthology.orchestra.run.trial064.stdout:Total 889 kB/s | 58 kB 00:00 2026-02-20T23:00:35.478 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:35.480 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:35.480 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:35.513 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:35.513 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:35.562 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:35.563 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:35.578 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:35.595 INFO:teuthology.orchestra.run.trial064.stdout: Installing : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:35.650 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:35.650 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 1/2 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2/2 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout: libcephfs-devel-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout: libcephfs-proxy2-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:35.707 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:35.735 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install librados2 2026-02-20T23:00:36.050 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:02 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:36.115 INFO:teuthology.orchestra.run.trial064.stdout:Package librados2-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:36.133 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:36.134 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:36.134 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:36.155 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install librbd1 2026-02-20T23:00:36.469 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:02 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:36.535 INFO:teuthology.orchestra.run.trial064.stdout:Package librbd1-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:36.553 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:36.554 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:36.554 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:36.576 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install python3-rados 2026-02-20T23:00:36.884 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:02 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:36.950 INFO:teuthology.orchestra.run.trial064.stdout:Package python3-rados-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:36.968 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:36.969 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:36.969 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:36.990 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install python3-rgw 2026-02-20T23:00:37.298 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:03 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:37.363 INFO:teuthology.orchestra.run.trial064.stdout:Package python3-rgw-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:37.381 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:37.382 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:37.382 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:37.403 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install python3-cephfs 2026-02-20T23:00:37.711 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:03 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:37.776 INFO:teuthology.orchestra.run.trial064.stdout:Package python3-cephfs-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:37.795 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:37.795 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:37.796 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:37.817 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install python3-rbd 2026-02-20T23:00:38.126 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:04 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:38.192 INFO:teuthology.orchestra.run.trial064.stdout:Package python3-rbd-2:20.2.0-677.gf7870454.el9.x86_64 is already installed. 2026-02-20T23:00:38.210 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:38.211 INFO:teuthology.orchestra.run.trial064.stdout:Nothing to do. 2026-02-20T23:00:38.211 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:38.234 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install rbd-fuse 2026-02-20T23:00:38.542 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:04 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:38.629 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:38.629 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:38.629 INFO:teuthology.orchestra.run.trial064.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout: rbd-fuse x86_64 2:20.2.0-677.gf7870454.el9 ceph 91 k 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 91 k 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 238 k 2026-02-20T23:00:38.630 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:38.830 INFO:teuthology.orchestra.run.trial064.stdout:rbd-fuse-20.2.0-677.gf7870454.el9.x86_64.rpm 456 kB/s | 91 kB 00:00 2026-02-20T23:00:38.831 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:38.831 INFO:teuthology.orchestra.run.trial064.stdout:Total 454 kB/s | 91 kB 00:00 2026-02-20T23:00:38.831 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:38.835 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:38.835 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:38.867 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:38.867 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:38.918 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:38.935 INFO:teuthology.orchestra.run.trial064.stdout: Installing : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:39.011 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:39.070 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:39.070 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:39.070 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:39.070 INFO:teuthology.orchestra.run.trial064.stdout: rbd-fuse-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:39.070 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:39.070 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:39.098 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install rbd-mirror 2026-02-20T23:00:39.413 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:05 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout: Package Arch Version Repo Size 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout: rbd-mirror x86_64 2:20.2.0-677.gf7870454.el9 ceph 2.9 M 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 2.9 M 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 11 M 2026-02-20T23:00:39.498 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:41.159 INFO:teuthology.orchestra.run.trial064.stdout:rbd-mirror-20.2.0-677.gf7870454.el9.x86_64.rpm 1.8 MB/s | 2.9 MB 00:01 2026-02-20T23:00:41.159 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:41.159 INFO:teuthology.orchestra.run.trial064.stdout:Total 1.8 MB/s | 2.9 MB 00:01 2026-02-20T23:00:41.159 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:41.165 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:41.165 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:41.205 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:41.205 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:41.392 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:41.393 INFO:teuthology.orchestra.run.trial064.stdout: Installing : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:41.416 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:41.416 INFO:teuthology.orchestra.run.trial064.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-20T23:00:41.416 INFO:teuthology.orchestra.run.trial064.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-20T23:00:41.416 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T23:00:41.416 INFO:teuthology.orchestra.run.trial064.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-20T23:00:41.416 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:41.702 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:41.702 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:41.702 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:41.702 INFO:teuthology.orchestra.run.trial064.stdout: rbd-mirror-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:41.702 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:41.702 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:41.730 DEBUG:teuthology.orchestra.run.trial064:> sudo yum -y install rbd-nbd 2026-02-20T23:00:42.043 INFO:teuthology.orchestra.run.trial064.stdout:Last metadata expiration check: 0:01:08 ago on Fri 20 Feb 2026 10:59:34 PM UTC. 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:Dependencies resolved. 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout: Package Architecture Version Repository Size 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:Installing: 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout: rbd-nbd x86_64 2:20.2.0-677.gf7870454.el9 ceph 180 k 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:Transaction Summary 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:================================================================================ 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout:Install 1 Package 2026-02-20T23:00:42.130 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:42.131 INFO:teuthology.orchestra.run.trial064.stdout:Total download size: 180 k 2026-02-20T23:00:42.131 INFO:teuthology.orchestra.run.trial064.stdout:Installed size: 498 k 2026-02-20T23:00:42.131 INFO:teuthology.orchestra.run.trial064.stdout:Downloading Packages: 2026-02-20T23:00:42.540 INFO:teuthology.orchestra.run.trial064.stdout:rbd-nbd-20.2.0-677.gf7870454.el9.x86_64.rpm 439 kB/s | 180 kB 00:00 2026-02-20T23:00:42.540 INFO:teuthology.orchestra.run.trial064.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:42.541 INFO:teuthology.orchestra.run.trial064.stdout:Total 438 kB/s | 180 kB 00:00 2026-02-20T23:00:42.541 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction check 2026-02-20T23:00:42.546 INFO:teuthology.orchestra.run.trial064.stdout:Transaction check succeeded. 2026-02-20T23:00:42.546 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction test 2026-02-20T23:00:42.578 INFO:teuthology.orchestra.run.trial064.stdout:Transaction test succeeded. 2026-02-20T23:00:42.578 INFO:teuthology.orchestra.run.trial064.stdout:Running transaction 2026-02-20T23:00:42.635 INFO:teuthology.orchestra.run.trial064.stdout: Preparing : 1/1 2026-02-20T23:00:42.651 INFO:teuthology.orchestra.run.trial064.stdout: Installing : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:42.733 INFO:teuthology.orchestra.run.trial064.stdout: Running scriptlet: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:42.791 INFO:teuthology.orchestra.run.trial064.stdout: Verifying : rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 1/1 2026-02-20T23:00:42.792 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:42.792 INFO:teuthology.orchestra.run.trial064.stdout:Installed: 2026-02-20T23:00:42.792 INFO:teuthology.orchestra.run.trial064.stdout: rbd-nbd-2:20.2.0-677.gf7870454.el9.x86_64 2026-02-20T23:00:42.792 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:00:42.792 INFO:teuthology.orchestra.run.trial064.stdout:Complete! 2026-02-20T23:00:42.821 DEBUG:teuthology.parallel:result is None 2026-02-20T23:00:42.821 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:00:42.953 DEBUG:teuthology.orchestra.run.trial004:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-20T23:00:42.974 INFO:teuthology.orchestra.run.trial004.stdout:20.2.0-677.gf7870454.el9 2026-02-20T23:00:42.974 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-677.gf7870454.el9 2026-02-20T23:00:42.975 INFO:teuthology.task.install:The correct ceph version 20.2.0-677.gf7870454 is installed. 2026-02-20T23:00:42.977 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:00:43.119 DEBUG:teuthology.orchestra.run.trial064:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-20T23:00:43.141 INFO:teuthology.orchestra.run.trial064.stdout:20.2.0-677.gf7870454.el9 2026-02-20T23:00:43.141 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-677.gf7870454.el9 2026-02-20T23:00:43.141 INFO:teuthology.task.install:The correct ceph version 20.2.0-677.gf7870454 is installed. 2026-02-20T23:00:43.143 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:00:43.272 DEBUG:teuthology.orchestra.run.trial197:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-20T23:00:43.292 INFO:teuthology.orchestra.run.trial197.stdout:20.2.0-677.gf7870454.el9 2026-02-20T23:00:43.292 INFO:teuthology.packaging:The installed version of ceph is 20.2.0-677.gf7870454.el9 2026-02-20T23:00:43.292 INFO:teuthology.task.install:The correct ceph version 20.2.0-677.gf7870454 is installed. 2026-02-20T23:00:43.294 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-02-20T23:00:43.295 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:00:43.295 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-20T23:00:43.321 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:00:43.321 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-20T23:00:43.349 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:00:43.349 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-20T23:00:43.375 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-02-20T23:00:43.375 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:00:43.376 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/usr/bin/daemon-helper 2026-02-20T23:00:43.401 DEBUG:teuthology.orchestra.run.trial004:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-20T23:00:43.464 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:00:43.464 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/usr/bin/daemon-helper 2026-02-20T23:00:43.488 DEBUG:teuthology.orchestra.run.trial064:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-20T23:00:43.551 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:00:43.551 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/usr/bin/daemon-helper 2026-02-20T23:00:43.576 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-20T23:00:43.639 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-02-20T23:00:43.640 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:00:43.640 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-20T23:00:43.666 DEBUG:teuthology.orchestra.run.trial004:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-20T23:00:43.729 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:00:43.730 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-20T23:00:43.754 DEBUG:teuthology.orchestra.run.trial064:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-20T23:00:43.816 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:00:43.816 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-20T23:00:43.842 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-20T23:00:43.906 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-02-20T23:00:43.906 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:00:43.906 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/usr/bin/stdin-killer 2026-02-20T23:00:43.931 DEBUG:teuthology.orchestra.run.trial004:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-20T23:00:43.994 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:00:43.994 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/usr/bin/stdin-killer 2026-02-20T23:00:44.019 DEBUG:teuthology.orchestra.run.trial064:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-20T23:00:44.084 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:00:44.084 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/usr/bin/stdin-killer 2026-02-20T23:00:44.109 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-20T23:00:44.172 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-20T23:00:44.261 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}}, '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': 'f7870454149f22574086dd2ff55d050585136531'} 2026-02-20T23:00:44.261 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:00:44.263 INFO:tasks.cephadm:Cluster fsid is fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:00:44.263 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-20T23:00:44.263 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '10.20.193.4', 'mon.b': '10.20.193.64', 'mon.c': '10.20.193.197'} 2026-02-20T23:00:44.263 INFO:tasks.cephadm:First mon is mon.a on trial004 2026-02-20T23:00:44.263 INFO:tasks.cephadm:First mgr is a 2026-02-20T23:00:44.263 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-20T23:00:44.263 DEBUG:teuthology.orchestra.run.trial004:> sudo hostname $(hostname -s) 2026-02-20T23:00:44.289 DEBUG:teuthology.orchestra.run.trial064:> sudo hostname $(hostname -s) 2026-02-20T23:00:44.313 DEBUG:teuthology.orchestra.run.trial197:> sudo hostname $(hostname -s) 2026-02-20T23:00:44.338 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-20T23:00:44.338 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:00:44.483 INFO:tasks.cephadm:builder_project result: [{'url': 'https://3.chacra.ceph.com/r/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/flavors/default/', 'ref': 'wip-pdonnell-testing-20260219.182737-tentacle', 'sha1': 'f7870454149f22574086dd2ff55d050585136531', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-20 13:26:37.513007', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['source', 'x86_64'], 'extra': {'version': '20.2.0-677-gf7870454', 'package_manager_version': '20.2.0-677.gf7870454', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3114/', 'root_build_cause': '', 'node_name': '10.20.192.18+soko08', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-20T23:00:44.603 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-pdonnell-testing-20260219.182737-tentacle, sha1 f7870454149f22574086dd2ff55d050585136531 from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=f7870454149f22574086dd2ff55d050585136531 2026-02-20T23:00:44.605 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm 2026-02-20T23:00:44.605 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm 2026-02-20T23:00:44.605 DEBUG:teuthology.orchestra.run.trial004:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:45.240 INFO:teuthology.orchestra.run.trial004.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 23:00 /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:45.241 DEBUG:teuthology.orchestra.run.trial064:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.069 INFO:teuthology.orchestra.run.trial064.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 23:00 /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.070 DEBUG:teuthology.orchestra.run.trial197:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-pdonnell-testing-20260219.182737-tentacle/f7870454149f22574086dd2ff55d050585136531/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.463 INFO:teuthology.orchestra.run.trial197.stdout:-rw-r--r--. 1 ubuntu ubuntu 1054032 Feb 20 23:00 /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.464 DEBUG:teuthology.orchestra.run.trial004:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.483 DEBUG:teuthology.orchestra.run.trial064:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.502 DEBUG:teuthology.orchestra.run.trial197:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-20T23:00:46.540 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 on all hosts... 2026-02-20T23:00:46.540 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T23:00:46.543 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T23:00:46.545 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 pull 2026-02-20T23:00:46.780 INFO:teuthology.orchestra.run.trial004.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:00:46.791 INFO:teuthology.orchestra.run.trial064.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:00:46.808 INFO:teuthology.orchestra.run.trial197.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout:{ 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout: "repo_digests": [ 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout: ] 2026-02-20T23:00:55.563 INFO:teuthology.orchestra.run.trial064.stdout:} 2026-02-20T23:00:55.609 INFO:teuthology.orchestra.run.trial197.stdout:{ 2026-02-20T23:00:55.610 INFO:teuthology.orchestra.run.trial197.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T23:00:55.610 INFO:teuthology.orchestra.run.trial197.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T23:00:55.610 INFO:teuthology.orchestra.run.trial197.stdout: "repo_digests": [ 2026-02-20T23:00:55.610 INFO:teuthology.orchestra.run.trial197.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T23:00:55.610 INFO:teuthology.orchestra.run.trial197.stdout: ] 2026-02-20T23:00:55.610 INFO:teuthology.orchestra.run.trial197.stdout:} 2026-02-20T23:00:55.618 INFO:teuthology.orchestra.run.trial004.stdout:{ 2026-02-20T23:00:55.618 INFO:teuthology.orchestra.run.trial004.stdout: "ceph_version": "ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable)", 2026-02-20T23:00:55.618 INFO:teuthology.orchestra.run.trial004.stdout: "image_id": "191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1", 2026-02-20T23:00:55.619 INFO:teuthology.orchestra.run.trial004.stdout: "repo_digests": [ 2026-02-20T23:00:55.619 INFO:teuthology.orchestra.run.trial004.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4" 2026-02-20T23:00:55.619 INFO:teuthology.orchestra.run.trial004.stdout: ] 2026-02-20T23:00:55.619 INFO:teuthology.orchestra.run.trial004.stdout:} 2026-02-20T23:00:55.634 DEBUG:teuthology.orchestra.run.trial004:> sudo mkdir -p /etc/ceph 2026-02-20T23:00:55.694 DEBUG:teuthology.orchestra.run.trial064:> sudo mkdir -p /etc/ceph 2026-02-20T23:00:55.720 DEBUG:teuthology.orchestra.run.trial197:> sudo mkdir -p /etc/ceph 2026-02-20T23:00:55.750 DEBUG:teuthology.orchestra.run.trial004:> sudo chmod 777 /etc/ceph 2026-02-20T23:00:55.774 DEBUG:teuthology.orchestra.run.trial064:> sudo chmod 777 /etc/ceph 2026-02-20T23:00:55.798 DEBUG:teuthology.orchestra.run.trial197:> sudo chmod 777 /etc/ceph 2026-02-20T23:00:55.823 INFO:tasks.cephadm:Writing seed config... 2026-02-20T23:00:55.825 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-20T23:00:55.826 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-20T23:00:55.827 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:00:55.828 DEBUG:teuthology.orchestra.run.trial004:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-20T23:00:55.844 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 = fc725b2a-0eaf-11f1-a959-d404e6e7d460 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 [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-02-20T23:00:55.845 DEBUG:teuthology.orchestra.run.trial004:mon.a> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a.service 2026-02-20T23:00:55.887 DEBUG:teuthology.orchestra.run.trial004:mgr.a> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a.service 2026-02-20T23:00:55.929 INFO:tasks.cephadm:Bootstrapping... 2026-02-20T23:00:55.929 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 -v bootstrap --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --config /home/ubuntu/cephtest/seed.ceph.conf --output-config /etc/ceph/ceph.conf --output-keyring /etc/ceph/ceph.client.admin.keyring --output-pub-ssh-key /home/ubuntu/cephtest/ceph.pub --mon-id a --mgr-id a --orphan-initial-daemons --skip-monitoring-stack --mon-ip 10.20.193.4 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:00:56.066 INFO:teuthology.orchestra.run.trial004.stdout:-------------------------------------------------------------------------------- 2026-02-20T23:00:56.066 INFO:teuthology.orchestra.run.trial004.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531', '-v', 'bootstrap', '--fsid', 'fc725b2a-0eaf-11f1-a959-d404e6e7d460', '--config', '/home/ubuntu/cephtest/seed.ceph.conf', '--output-config', '/etc/ceph/ceph.conf', '--output-keyring', '/etc/ceph/ceph.client.admin.keyring', '--output-pub-ssh-key', '/home/ubuntu/cephtest/ceph.pub', '--mon-id', 'a', '--mgr-id', 'a', '--orphan-initial-daemons', '--skip-monitoring-stack', '--mon-ip', '10.20.193.4', '--skip-admin-label'] 2026-02-20T23:00:56.066 INFO:teuthology.orchestra.run.trial004.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-20T23:00:56.067 INFO:teuthology.orchestra.run.trial004.stdout:Verifying podman|docker is present... 2026-02-20T23:00:56.081 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stdout 5.6.0 2026-02-20T23:00:56.081 INFO:teuthology.orchestra.run.trial004.stdout:Verifying lvm2 is present... 2026-02-20T23:00:56.081 INFO:teuthology.orchestra.run.trial004.stdout:Verifying time synchronization is in place... 2026-02-20T23:00:56.087 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-20T23:00:56.087 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-20T23:00:56.093 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-20T23:00:56.093 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:00:56.098 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout enabled 2026-02-20T23:00:56.104 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout active 2026-02-20T23:00:56.104 INFO:teuthology.orchestra.run.trial004.stdout:Unit chronyd.service is enabled and running 2026-02-20T23:00:56.104 INFO:teuthology.orchestra.run.trial004.stdout:Repeating the final host check... 2026-02-20T23:00:56.120 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stdout 5.6.0 2026-02-20T23:00:56.120 INFO:teuthology.orchestra.run.trial004.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-20T23:00:56.120 INFO:teuthology.orchestra.run.trial004.stdout:systemctl is present 2026-02-20T23:00:56.120 INFO:teuthology.orchestra.run.trial004.stdout:lvcreate is present 2026-02-20T23:00:56.125 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-20T23:00:56.125 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-20T23:00:56.131 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-20T23:00:56.131 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:00:56.137 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout enabled 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout active 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:Unit chronyd.service is enabled and running 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:Host looks OK 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:Cluster fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:Acquiring lock 140568959328608 on /run/cephadm/fc725b2a-0eaf-11f1-a959-d404e6e7d460.lock 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:Lock 140568959328608 acquired on /run/cephadm/fc725b2a-0eaf-11f1-a959-d404e6e7d460.lock 2026-02-20T23:00:56.143 INFO:teuthology.orchestra.run.trial004.stdout:Verifying IP 10.20.193.4 port 3300 ... 2026-02-20T23:00:56.144 INFO:teuthology.orchestra.run.trial004.stdout:Verifying IP 10.20.193.4 port 6789 ... 2026-02-20T23:00:56.144 INFO:teuthology.orchestra.run.trial004.stdout:Base mon IP(s) is [10.20.193.4:3300, 10.20.193.4:6789], mon addrv is [v2:10.20.193.4:3300,v1:10.20.193.4:6789] 2026-02-20T23:00:56.146 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.4 metric 102 2026-02-20T23:00:56.146 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.4 metric 102 2026-02-20T23:00:56.146 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-20T23:00:56.149 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-20T23:00:56.149 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-20T23:00:56.149 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-20T23:00:56.152 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-20T23:00:56.152 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-20T23:00:56.152 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout inet6 fe80::659c:3a92:33dd:f02d/64 scope link noprefixroute 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:5eae/64 scope link 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:Mon IP `10.20.193.4` is in CIDR network `10.20.192.0/20` 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:Mon IP `10.20.193.4` is in CIDR network `10.20.192.0/20` 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-20T23:00:56.153 INFO:teuthology.orchestra.run.trial004.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-20T23:00:56.154 INFO:teuthology.orchestra.run.trial004.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:00:56.401 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stdout 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 2026-02-20T23:00:56.401 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531... 2026-02-20T23:00:56.401 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stderr Getting image source signatures 2026-02-20T23:00:56.401 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stderr Copying blob sha256:0cf63a27055a859d286185a933b0b6ddb181f8349d6aee8c52cf789385a51e06 2026-02-20T23:00:56.401 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-20T23:00:56.402 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stderr Copying config sha256:191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 2026-02-20T23:00:56.402 INFO:teuthology.orchestra.run.trial004.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-20T23:00:56.515 INFO:teuthology.orchestra.run.trial004.stdout:ceph: stdout ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable) 2026-02-20T23:00:56.515 INFO:teuthology.orchestra.run.trial004.stdout:Ceph version: ceph version 20.2.0-677-gf7870454 (f7870454149f22574086dd2ff55d050585136531) tentacle (stable) 2026-02-20T23:00:56.515 INFO:teuthology.orchestra.run.trial004.stdout:Extracting ceph user uid/gid from container image... 2026-02-20T23:00:56.641 INFO:teuthology.orchestra.run.trial004.stdout:stat: stdout 167 167 2026-02-20T23:00:56.641 INFO:teuthology.orchestra.run.trial004.stdout:Creating initial keys... 2026-02-20T23:00:56.793 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph-authtool: stdout AQCo55hpgKB4LRAA4gei+ikcjZPrf5T/oTRpKA== 2026-02-20T23:00:56.923 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph-authtool: stdout AQCo55hpnk8TNhAAVmuAZwtcJNrZHLEWLOVuBQ== 2026-02-20T23:00:57.051 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph-authtool: stdout AQCp55hpwwJMAhAAZ/XBxLn7VAhugPpSPhmrMw== 2026-02-20T23:00:57.052 INFO:teuthology.orchestra.run.trial004.stdout:Creating initial monmap... 2026-02-20T23:00:57.220 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:monmaptool for a [v2:10.20.193.4:3300,v1:10.20.193.4:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:setting min_mon_release = tentacle 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/monmaptool: set fsid to fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:00:57.221 INFO:teuthology.orchestra.run.trial004.stdout:Creating mon... 2026-02-20T23:00:57.351 INFO:teuthology.orchestra.run.trial004.stdout:create mon.a on 2026-02-20T23:00:57.516 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2026-02-20T23:00:57.618 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-20T23:00:57.727 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460.target → /etc/systemd/system/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460.target. 2026-02-20T23:00:57.727 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460.target → /etc/systemd/system/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460.target. 2026-02-20T23:00:57.851 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a 2026-02-20T23:00:57.851 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Failed to reset failed state of unit ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a.service: Unit ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a.service not loaded. 2026-02-20T23:00:57.983 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460.target.wants/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a.service → /etc/systemd/system/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@.service. 2026-02-20T23:00:58.136 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:00:58.137 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout disabled 2026-02-20T23:00:58.143 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:00:58.143 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:00:58.143 INFO:teuthology.orchestra.run.trial004.stdout:firewalld.service is not enabled 2026-02-20T23:00:58.143 INFO:teuthology.orchestra.run.trial004.stdout:Not possible to enable service . firewalld.service is not available 2026-02-20T23:00:58.143 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for mon to start... 2026-02-20T23:00:58.143 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for mon... 2026-02-20T23:00:58.296 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout cluster: 2026-02-20T23:00:58.296 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout id: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:00:58.296 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout services: 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.131932s) [leader: a] 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout data: 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-20T23:00:58.297 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-20T23:00:58.298 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout pgs: 2026-02-20T23:00:58.298 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:58.298 INFO:teuthology.orchestra.run.trial004.stdout:mon is available 2026-02-20T23:00:58.298 INFO:teuthology.orchestra.run.trial004.stdout:Assimilating anything we can from ceph.conf... 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout [global] 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout fsid = fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.4:3300,v1:10.20.193.4:6789] 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout [osd] 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-20T23:00:58.444 INFO:teuthology.orchestra.run.trial004.stdout:Generating new minimal ceph.conf... 2026-02-20T23:00:58.600 INFO:teuthology.orchestra.run.trial004.stdout:Restarting the monitor... 2026-02-20T23:00:58.956 INFO:teuthology.orchestra.run.trial004.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-20T23:00:59.109 INFO:teuthology.orchestra.run.trial004.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-20T23:00:59.109 INFO:teuthology.orchestra.run.trial004.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:00:59.109 INFO:teuthology.orchestra.run.trial004.stdout:Creating mgr... 2026-02-20T23:00:59.109 INFO:teuthology.orchestra.run.trial004.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-20T23:00:59.110 INFO:teuthology.orchestra.run.trial004.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-20T23:00:59.243 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a 2026-02-20T23:00:59.243 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Failed to reset failed state of unit ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a.service: Unit ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a.service not loaded. 2026-02-20T23:00:59.355 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460.target.wants/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a.service → /etc/systemd/system/ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@.service. 2026-02-20T23:00:59.494 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:00:59.494 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout disabled 2026-02-20T23:00:59.500 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:00:59.500 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:00:59.500 INFO:teuthology.orchestra.run.trial004.stdout:firewalld.service is not enabled 2026-02-20T23:00:59.500 INFO:teuthology.orchestra.run.trial004.stdout:Not possible to enable service . firewalld.service is not available 2026-02-20T23:00:59.507 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:00:59.507 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout disabled 2026-02-20T23:00:59.512 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:00:59.512 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:00:59.512 INFO:teuthology.orchestra.run.trial004.stdout:firewalld.service is not enabled 2026-02-20T23:00:59.513 INFO:teuthology.orchestra.run.trial004.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-02-20T23:00:59.513 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for mgr to start... 2026-02-20T23:00:59.513 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for mgr... 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "fsid": "fc725b2a-0eaf-11f1-a959-d404e6e7d460", 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T23:00:59.688 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 0 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "a" 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T23:00:59.689 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T23:00:59.690 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T23:00:58:145493+0000", 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T23:00:59.691 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:00:59.692 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T23:00:58.146097+0000", 2026-02-20T23:00:59.693 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:00:59.693 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:00:59.693 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T23:00:59.693 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:00:59.693 INFO:teuthology.orchestra.run.trial004.stdout:mgr not available, waiting (1/15)... 2026-02-20T23:01:00.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:00 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/884291019' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T23:01:00.944 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:00 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: from numpy import show_config as show_numpy_config 2026-02-20T23:01:01.850 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:01:01.850 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:01:01.850 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "fsid": "fc725b2a-0eaf-11f1-a959-d404e6e7d460", 2026-02-20T23:01:01.850 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T23:01:01.850 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T23:01:01.850 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 0 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "a" 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:01:01.851 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T23:01:01.852 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T23:01:01.853 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T23:00:58:145493+0000", 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-20T23:01:01.854 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T23:00:58.146097+0000", 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T23:01:01.855 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:01:01.856 INFO:teuthology.orchestra.run.trial004.stdout:mgr not available, waiting (2/15)... 2026-02-20T23:01:02.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:01 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2368847830' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T23:01:03.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: Activating manager daemon a 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: mgrmap e2: a(active, starting, since 0.00257704s) 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: Manager daemon a is now available 2026-02-20T23:01:03.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:01:03.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T23:01:03.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' 2026-02-20T23:01:03.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' 2026-02-20T23:01:03.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:02 trial004 ceph-mon[39338]: from='mgr.14100 10.20.193.4:0/1191972784' entity='mgr.a' 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "fsid": "fc725b2a-0eaf-11f1-a959-d404e6e7d460", 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "health": { 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-20T23:01:04.122 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 0 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "a" 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:04.123 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.124 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "btime": "2026-02-20T23:00:58:145493+0000", 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ], 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-20T23:01:04.125 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-20T23:01:04.126 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "modified": "2026-02-20T23:00:58.146097+0000", 2026-02-20T23:01:04.126 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-20T23:01:04.126 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout }, 2026-02-20T23:01:04.126 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-20T23:01:04.126 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:01:04.126 INFO:teuthology.orchestra.run.trial004.stdout:mgr is available 2026-02-20T23:01:04.349 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:01:04.349 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout [global] 2026-02-20T23:01:04.349 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout fsid = fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:04.350 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-20T23:01:04.350 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.4:3300,v1:10.20.193.4:6789] 2026-02-20T23:01:04.350 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-20T23:01:04.350 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-20T23:01:04.350 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-20T23:01:04.350 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-20T23:01:04.351 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:01:04.351 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-20T23:01:04.351 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-20T23:01:04.351 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 2026-02-20T23:01:04.351 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout [osd] 2026-02-20T23:01:04.351 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-20T23:01:04.352 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-20T23:01:04.352 INFO:teuthology.orchestra.run.trial004.stdout:Enabling cephadm module... 2026-02-20T23:01:04.393 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:04 trial004 ceph-mon[39338]: mgrmap e3: a(active, since 1.00499s) 2026-02-20T23:01:04.393 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:04 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2097881825' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-20T23:01:05.597 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:05 trial004 ceph-mon[39338]: mgrmap e4: a(active, since 2s) 2026-02-20T23:01:05.597 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:05 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3055568667' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-20T23:01:05.597 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:05 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3055568667' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-02-20T23:01:05.597 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:05 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/324927596' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-20T23:01:05.597 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: ignoring --setuser ceph since I am not root 2026-02-20T23:01:05.598 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: ignoring --setgroup ceph since I am not root 2026-02-20T23:01:05.617 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:01:05.617 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-20T23:01:05.618 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T23:01:05.618 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-20T23:01:05.618 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-20T23:01:05.618 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:01:05.618 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for the mgr to restart... 2026-02-20T23:01:05.618 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for mgr epoch 5... 2026-02-20T23:01:06.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:06 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/324927596' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-20T23:01:06.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:06 trial004 ceph-mon[39338]: mgrmap e5: a(active, since 3s) 2026-02-20T23:01:06.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:06 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/962464588' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-20T23:01:06.695 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:06 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: /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-02-20T23:01:06.695 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:06 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 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-02-20T23:01:06.696 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:06 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: from numpy import show_config as show_numpy_config 2026-02-20T23:01:08.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: Active manager daemon a restarted 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: Activating manager daemon a 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: osdmap e2: 0 total, 0 up, 0 in 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: mgrmap e6: a(active, starting, since 0.00251511s) 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:01:08.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:08 trial004 ceph-mon[39338]: Manager daemon a is now available 2026-02-20T23:01:09.103 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:01:09.103 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-20T23:01:09.103 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-20T23:01:09.103 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:01:09.103 INFO:teuthology.orchestra.run.trial004.stdout:mgr epoch 5 is available 2026-02-20T23:01:09.104 INFO:teuthology.orchestra.run.trial004.stdout:Verifying orchestrator module is enabled... 2026-02-20T23:01:09.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: Found migration_current of "None". Setting to last migration. 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T23:01:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: mgrmap e7: a(active, since 1.00342s) 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:09] ENGINE Bus STARTING 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:09] ENGINE Serving on https://10.20.193.4:7150 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:09] ENGINE Client ('10.20.193.4', 59404) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:09] ENGINE Serving on http://10.20.193.4:8765 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:09] ENGINE Bus STARTED 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:09 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2477272467' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-20T23:01:10.104 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-20T23:01:10.104 INFO:teuthology.orchestra.run.trial004.stdout:Setting orchestrator backend to cephadm... 2026-02-20T23:01:10.571 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-20T23:01:10.571 INFO:teuthology.orchestra.run.trial004.stdout:Generating ssh key... 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: Generating public/private ed25519 key pair. 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: Your identification has been saved in /tmp/tmpl29kgc_i/key 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: Your public key has been saved in /tmp/tmpl29kgc_i/key.pub 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: The key fingerprint is: 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: SHA256:SZiBuTizqlufIBYGL29chz5o5dT+bTOR9tgj00R8HF4 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: The key's randomart image is: 2026-02-20T23:01:10.843 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: +--[ED25519 256]--+ 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: | o. | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: | o + . E| 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |. . .o . . o o | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |..+ .o . . o + | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |.o.+= o S o . | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |.+oB o + . | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |.oO + . . B | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |o= o o . .B = | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: |+. o ...= . | 2026-02-20T23:01:10.844 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:10 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: +----[SHA256]-----+ 2026-02-20T23:01:11.046 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:11.047 INFO:teuthology.orchestra.run.trial004.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:01:11.047 INFO:teuthology.orchestra.run.trial004.stdout:Adding key to root@localhost authorized_keys... 2026-02-20T23:01:11.048 INFO:teuthology.orchestra.run.trial004.stdout:Adding host trial004... 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2477272467' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: mgrmap e8: a(active, since 2s) 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:11.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:11 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:12.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:12 trial004 ceph-mon[39338]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:12.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:12 trial004 ceph-mon[39338]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:12.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:12 trial004 ceph-mon[39338]: Generating ssh key... 2026-02-20T23:01:12.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:12 trial004 ceph-mon[39338]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:12.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:12 trial004 ceph-mon[39338]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial004", "addr": "10.20.193.4", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:12.832 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout Added host 'trial004' with addr '10.20.193.4' 2026-02-20T23:01:12.832 INFO:teuthology.orchestra.run.trial004.stdout:Deploying unmanaged mon service... 2026-02-20T23:01:13.077 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-20T23:01:13.077 INFO:teuthology.orchestra.run.trial004.stdout:Deploying unmanaged mgr service... 2026-02-20T23:01:13.314 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:13 trial004 ceph-mon[39338]: Deploying cephadm binary to trial004 2026-02-20T23:01:13.315 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:13 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:13.315 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:13 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:13.315 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:13 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:13.326 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-20T23:01:13.889 INFO:teuthology.orchestra.run.trial004.stdout:Enabling the dashboard module... 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: Added host trial004 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: Saving service mon spec with placement count:5 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: Saving service mgr spec with placement count:2 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2496404700' entity='client.admin' 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1923513241' entity='client.admin' 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:14.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/841835969' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-20T23:01:15.179 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: ignoring --setuser ceph since I am not root 2026-02-20T23:01:15.179 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:14 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: ignoring --setgroup ceph since I am not root 2026-02-20T23:01:15.202 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:01:15.202 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-20T23:01:15.202 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-20T23:01:15.202 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-20T23:01:15.202 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-20T23:01:15.203 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:01:15.203 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for the mgr to restart... 2026-02-20T23:01:15.203 INFO:teuthology.orchestra.run.trial004.stdout:Waiting for mgr epoch 9... 2026-02-20T23:01:15.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-mon[39338]: from='mgr.14118 10.20.193.4:0/658219841' entity='mgr.a' 2026-02-20T23:01:15.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/841835969' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-20T23:01:15.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-mon[39338]: mgrmap e9: a(active, since 6s) 2026-02-20T23:01:15.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2130257739' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-20T23:01:16.194 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: /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-02-20T23:01:16.194 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 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-02-20T23:01:16.194 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:15 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: from numpy import show_config as show_numpy_config 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: Active manager daemon a restarted 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: Activating manager daemon a 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: osdmap e3: 0 total, 0 up, 0 in 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: mgrmap e10: a(active, starting, since 0.00282262s) 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-20T23:01:18.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:17 trial004 ceph-mon[39338]: Manager daemon a is now available 2026-02-20T23:01:19.018 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:19.019 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-20T23:01:19.019 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-20T23:01:19.019 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:19.019 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:19.019 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:18 trial004 ceph-mon[39338]: mgrmap e11: a(active, since 1.00518s) 2026-02-20T23:01:19.076 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout { 2026-02-20T23:01:19.076 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-20T23:01:19.077 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-20T23:01:19.077 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout } 2026-02-20T23:01:19.077 INFO:teuthology.orchestra.run.trial004.stdout:mgr epoch 9 is available 2026-02-20T23:01:19.077 INFO:teuthology.orchestra.run.trial004.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-20T23:01:19.885 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+TCCAuGgAwIBAgIUZd2HEAkSPbdHgQ3X5+1VYtCkN2EwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI2MDIyMDIzMDExOVoXDTI5\nMDIxOTIzMDExOVowFjEUMBIGA1UEAwwLMTAuMjAuMTkzLjQwggIiMA0GCSqGSIb3\nDQEBAQUAA4ICDwAwggIKAoICAQCkF7FrGK/UmCMf7QAZUPtg7simfVVk1K7o3m8h\ngz38GLDT8mqZEzzfwI4IHv+/qfHBlxiF88j7S5mSjEQcpTsEIxdaauKGAjyJ2XS2\nNLO+lK/qOT87Os8juaVIWaLLTjwY+CkYhu5wBpnsxr1I333T7ci39b/FBytsPIoS\nbUmewjCN40txQ+NzR8ttR4jdoq+1/ZnSuIlEZ5PiUI/KrLCvsd+6J//Wn6uWZGzk\n7FaTl0FiGJT2GVYqehaB32Y5OnHe8foxBhI6GnY3cnvJ5dxBnTuJjSKf2X1lxXWg\nLKHe5K7rqbfhN/5WcdEsx6wWbFYgcy5sL++CQfUJros2JqbZ6ZWxP3VcdGT8bdAN\nCCuy8eZve/gF3v4ncLvUXOyfWonfC8e02hBPx//C4t4YxiI8kZSXO+kTlWXl6qm1\n444Rh9RxFfDDlUCpR6fupx7230PeA1UDHGoIs5gPArsVgkPcmoMP02imeF+zMTYx\nXUDEfEY2aE9d1QK6Vhyu+oZHZLzOoKLzzOGoTDaOPULszUthKxATBDEiN+c921f6\noNGZDESiurySY3EDPU2aD1wqOF3l6biaqq8ZHqzQs1JjH4GbAFOTDfj32LjVX0t8\nlQXToXCI1grol43oUuRpiP8T19EF3CKLHam9bnN8Ccvhsb8UHtZcMGLcD140GVXW\nh8TwawIDAQABoz4wPDAsBgNVHREEJTAjggh0cmlhbDAwNIIRZGFzaGJvYXJkX3Nl\ncnZlcnOHBAoUwQQwDAYDVR0TAQH/BAIwADANBgkqhkiG9w0BAQsFAAOCAgEAEgr4\nXXXYwFDGUb2AU1t/rRFH/VkDagvDXrNux7H5nZ971muSoBoSaw/1hvLjdw74lbE+\noddhGEBXuMTbKTvfNBQLeiOSpbgI2qiBVNGYUsNeuX83QbJxfDoSoFBvyFOno99/\n/jhi3YixcQsyAA5G/Kuba1cnSnGqUGv6HB7U3LCFQ2MBMLfqE/XC8/KK2eski5ca\ntOlUltwvjBXLMJIvZ9Goa5AsKPfzf5G5VI6aQLtBsvtUnySxrNIxZpARgsBd4JLP\nG3CsQ6dOmDWqz+qwluP0r8FebB+DZcATMWssXLQF7+dLD+TbA7IrG58gChEix10v\nJFdfoVipn/Galk6YZCc66SLJKIiQy84m6KQEwop6i6IoVS1nj/1M2ZRzbFpDdTcC\nTjDwQZy0LhhSHBh6H04LYWQSDxeTCY6mekMb8JSH3unPXtvukC+g5D5QQcLazhgK\nMsrBDTr5Dt0VSiUja//A5CKeQ9Vjlj0Ra257Cs7eD0pG/7a9OtQZji3hmqhpgK8D\nXI4dYyqfeHxaqJmIHxfIc0ApRjdQ8QNeDW0T3QRauk3WeKdgoW7SOKMcNt/coLBh\n+LK7Cupp4XwSgMPtKesctdJE92NXqEOO1d/+7KGARIluz3Gc4o92WyOnsJHTXQqA\n/PiB1nOywoZgYK5L0xBJg4HzxGRBtnshaJ8AMeU=\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKAIBAAKCAgEApBexaxiv1JgjH+0AGVD7YO7Ipn1VZNSu6N5vIYM9/Biw0/Jq\nmRM838COCB7/v6nxwZcYhfPI+0uZkoxEHKU7BCMXWmrihgI8idl0tjSzvpSv6jk/\nOzrPI7mlSFmiy048GPgpGIbucAaZ7Ma9SN990+3It/W/xQcrbDyKEm1JnsIwjeNL\ncUPjc0fLbUeI3aKvtf2Z0riJRGeT4lCPyqywr7Hfuif/1p+rlmRs5OxWk5dBYhiU\n9hlWKnoWgd9mOTpx3vH6MQYSOhp2N3J7yeXcQZ07iY0in9l9ZcV1oCyh3uSu66m3\n4Tf+VnHRLMesFmxWIHMubC/vgkH1Ca6LNiam2emVsT91XHRk/G3QDQgrsvHmb3v4\nBd7+J3C71Fzsn1qJ3wvHtNoQT8f/wuLeGMYiPJGUlzvpE5Vl5eqpteOOEYfUcRXw\nw5VAqUen7qce9t9D3gNVAxxqCLOYDwK7FYJD3JqDD9NopnhfszE2MV1AxHxGNmhP\nXdUCulYcrvqGR2S8zqCi88zhqEw2jj1C7M1LYSsQEwQxIjfnPdtX+qDRmQxEorq8\nkmNxAz1Nmg9cKjhd5em4mqqvGR6s0LNSYx+BmwBTkw3499i41V9LfJUF06FwiNYK\n6JeN6FLkaYj/E9fRBdwiix2pvW5zfAnL4bG/FB7WXDBi3A9eNBlV1ofE8GsCAwEA\nAQKCAgAVcaU1ZjYANduNPgcfx9X6Dmp5W3Kv6R1sgDkMq56Lldxx7kGg/IMdiIfn\nJsnsTbSyxGCnjLrMoE4S+TKjfbJPMZjJL6OnuJ4Zs6nNb+i3dK3ikZWiU2ajeAzR\n/ijIodI3vyJ7upJpYGt4JmaxIcfLTM1IwRxNDslNbUHr841F6oG24SfIRwNv2seK\nYelQcYS950TVZVlG77RDRJzt8xBp/XhL1xNXhGlDj58tcXdE9WTNgYHiAWChz2+m\njD/LJcigxoWYJ391SWT+jP8BXQEiL/6KVL/cHOuGw73B72M+Aiubz4OgspURzfD0\nhamHCqRcvECqUb9eiekQWVeG/ZkbNmis2/TptFutAIMUnj2P8x7EEb7s6rEgsq0+\nBCTjsRIcvxDKCuEAxKcrK6JfGyUC5ec02dHPiq8UdcaTleadlCqp+Tr8bOjEA1m2\nbfGdMvt+/m07lNSNkEQiHGpwW+PbRwXj880m8rhTTfdg3NGc09EyQDEUFS3rYWdu\ndEv6MFLiV0aLpVpi5DPIdf+0jyYBX+2s/qiybAvDIZQOLD3/zEMfYov0Zie8SZIy\nFfeIylU0czN22JcnmQYd/ec/tS+gHeq1E3QoecvDOeUGHWA+aQRdXB5lKV4K1EWB\n7FW9nrsq8AdczG1u0Sp2yc33b8EIhKrtMZH2nurXDDzdMrI5dQKCAQEA3x428bY1\nIQeHNXAdWGyEO5G2GVwI9irusUSabGdHYn/lgpKLhJNora/vBuazw9mgak3eXAbT\nqK4V9WoulxvsejtxbBvSPQ9fXzh7i0qmlSd2Y3C7cxwMlmETyX0K1FyHF3h1J1vL\ngP+QUWv8o0gT2rpO/iKZJYkamYUXYGdxgp1LGHFn8NBEcq3+Yy47H0P+BNQw4enx\n2X0VECllDUKpH8t6/iYuAfekKQu/56EAuRmaVbQXooI/j0QpuVmnyZK4YcWvUqE1\nYdKe8ZAKHel9UIG608iRRl94m4tjLhEzVX32tB9z1eL814IwqPirkerKdI6cSVbE\nVtAELTYpmsphXQKCAQEAvEaRfrrI5HVvPIbwnlR7QdcHDmCLj1h2nOJCdjmx4bdk\nUM13iculTvOTJsgo7YkwFe+7dZZQ8ppV7tm1pSA+lh3jnTBvFVnWgsy+2O6wIa2C\nsWp5fMsNHMpYx8pL1NwiiWNhdI4FZnERkthsliXlPbIK6df9XZ52bs6Qz1up63oM\nVmnsOw9ddyR/W9EnbJS5s0Hg9UliLLNi90uV+JWOi+nPMensdJmnvAzGvHquDU7i\nEP5l07Oqs3Nh8WaTxvC+jgema8BhL6W49QpfoxWWlqzDvef5BMY7KKONQdiNHVCS\nvqr2hrwHdTPNi3Tp4ZUey7MqnOX55Lhk4vb++WaUZwKCAQEAscflh9vjoZnaBp57\nA4YUJ1MHglVvXpb+8ojzcwUoQDggrFYQjWbXte3Fy/3vp1K1G39IepOF+5YbMR2W\nWhmJ6CuNSNMyRi0FlV3wMyEccySqlLmy4xmqffiER7w28Nd5XR5CW0YtdXAtknM1\nLvWzvElPv/fZh6sjYshFxC8opyamO6fBZoTMxYQWevjPay5GLZrWCGzcpKuiKOqS\n9mnzUL5WFkRdzHuCdqJCG1KSvOrFqxyA6KBX/NQXWvUxWNBr0pwuAu0pF/U3aMuZ\nBBSUIZ39O9tIxoY0F9yM/pv+B1UDSqr1JaxkQ2QdWcYrD23CO/WWWmmksHe3nD7Y\nD9rKkQKCAQBn3dqIeo03lB3A24TFJEA3a2QGJ3b2pswQ8rXNuTiMGHtsJF4NE97n\ntnJ407XYjXWMtIvLbBjOLhy4Pzz5ktdUQ7r9TeoKclxoHoIu9UcP3UQbkmzhTre2\nKV9fIRhCnwsilkP+ZBdQk5IpW+JT1yYnqiBhL3okerZFnQnAi4YrVVKXHapoTqq2\nftkQE0vXmBj2bqKnT0us823mlblvwTo5r8xRcgazsM0bbkT5WAjLaLhIvb/5UcYb\nZ80huwBNoSTPACNskF5NRfTKomVueAtypm76Ro5XdvDOE6RrLgdzo67BJ1oHrJXE\nr8Z2aBJbE8RAhmA83JbG+n8Vw0OY3WGDAoIBAGgv+TZV7b5V8ou+lFkNivttV6g2\nfeE4Nvw1ekpcIKieg3thpV5FqFLfM/T9qUVZwMldJBdN6UYtLGO5T52KM2gVgDzZ\nPrA7zy4QooIdPa0T4Qzg3U+JHWANCLSb9PzzksKOgliNuhZSWQQfso0UjeqAi4tL\nDd77OnNkJM/VZrzVM16FXFPx4VJtaflbUx9Uol27ifxnYatnnbg2M9cjNDavD8bC\n9pyeTKA4GKRbLHXqXEOpsfrSp1yIfUgo7lL9WliPdCZKvy3vSlYPdHXl8+L3X5Lp\naC8p0iaYdYUONWakyRZp8K4aay0mpg7ZlqrzOzQUVmb22GkH386pa6JB/A4=\n-----END RSA PRIVATE KEY-----\n"} 2026-02-20T23:01:19.931 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:18] ENGINE Bus STARTING 2026-02-20T23:01:19.932 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:18] ENGINE Serving on https://10.20.193.4:7150 2026-02-20T23:01:19.932 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:18] ENGINE Client ('10.20.193.4', 59418) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-20T23:01:19.932 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:18] ENGINE Serving on http://10.20.193.4:8765 2026-02-20T23:01:19.932 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: [20/Feb/2026:23:01:18] ENGINE Bus STARTED 2026-02-20T23:01:19.932 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-20T23:01:19.932 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:19 trial004 ceph-mon[39338]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-20T23:01:20.127 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-20T23:01:20.353 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-20T23:01:20.354 INFO:teuthology.orchestra.run.trial004.stdout:Creating initial admin user... 2026-02-20T23:01:20.795 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$AtTkx04ay9.a5vCjRm7aD.dcSuRAHHpX8V.YGBQv65mBQ84loU/4q", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771628480, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-20T23:01:20.795 INFO:teuthology.orchestra.run.trial004.stdout:Fetching dashboard port number... 2026-02-20T23:01:21.016 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:20 trial004 ceph-mon[39338]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:21.016 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:20 trial004 ceph-mon[39338]: mgrmap e12: a(active, since 2s) 2026-02-20T23:01:21.016 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:20 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:21.017 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:20 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:21.019 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stdout 8443 2026-02-20T23:01:21.027 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-20T23:01:21.027 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout disabled 2026-02-20T23:01:21.033 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-20T23:01:21.033 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:01:21.033 INFO:teuthology.orchestra.run.trial004.stdout:firewalld.service is not enabled 2026-02-20T23:01:21.033 INFO:teuthology.orchestra.run.trial004.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-20T23:01:21.034 INFO:teuthology.orchestra.run.trial004.stdout:Ceph Dashboard is now available at: 2026-02-20T23:01:21.034 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.034 INFO:teuthology.orchestra.run.trial004.stdout: URL: https://trial004:8443/ 2026-02-20T23:01:21.034 INFO:teuthology.orchestra.run.trial004.stdout: User: admin 2026-02-20T23:01:21.034 INFO:teuthology.orchestra.run.trial004.stdout: Password: cgmzjfhq14 2026-02-20T23:01:21.034 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.035 INFO:teuthology.orchestra.run.trial004.stdout:Saving cluster configuration to /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config directory 2026-02-20T23:01:21.314 INFO:teuthology.orchestra.run.trial004.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-20T23:01:21.314 INFO:teuthology.orchestra.run.trial004.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-20T23:01:21.314 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout:Or, if you are only running a single cluster on this host: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: ceph telemetry on 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout:For more information see: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:21.315 INFO:teuthology.orchestra.run.trial004.stdout:Bootstrap complete. 2026-02-20T23:01:21.323 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout static 2026-02-20T23:01:21.329 INFO:teuthology.orchestra.run.trial004.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-20T23:01:21.329 INFO:teuthology.orchestra.run.trial004.stdout:systemctl: stdout inactive 2026-02-20T23:01:21.329 INFO:teuthology.orchestra.run.trial004.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-20T23:01:21.481 INFO:tasks.cephadm:Fetching config... 2026-02-20T23:01:21.481 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:21.481 DEBUG:teuthology.orchestra.run.trial004:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-20T23:01:21.499 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-20T23:01:21.499 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:21.499 DEBUG:teuthology.orchestra.run.trial004:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-20T23:01:21.556 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-20T23:01:21.556 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:21.556 DEBUG:teuthology.orchestra.run.trial004:> sudo dd if=/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/keyring of=/dev/stdout 2026-02-20T23:01:21.622 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-20T23:01:21.622 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:21.622 DEBUG:teuthology.orchestra.run.trial004:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-20T23:01:21.678 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-20T23:01:21.679 DEBUG:teuthology.orchestra.run.trial004:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T23:01:21.753 INFO:teuthology.orchestra.run.trial004.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:21.762 DEBUG:teuthology.orchestra.run.trial064:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T23:01:21.798 INFO:teuthology.orchestra.run.trial064.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:21.809 DEBUG:teuthology.orchestra.run.trial197:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-20T23:01:21.846 INFO:teuthology.orchestra.run.trial197.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJO5AdRGzcamO88fwb4lD8Z9wgAznh6PJe0DJfZbcFqv ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:21.856 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-20T23:01:21.880 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:21 trial004 ceph-mon[39338]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:21.880 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:21 trial004 ceph-mon[39338]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:21.880 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:21 trial004 ceph-mon[39338]: 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-02-20T23:01:21.881 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:21 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:21.881 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:21 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1804686628' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-20T23:01:21.881 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:21 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1509420893' entity='client.admin' 2026-02-20T23:01:21.978 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:22.245 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-20T23:01:22.246 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-20T23:01:22.401 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:22.670 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial064 2026-02-20T23:01:22.670 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:01:22.670 DEBUG:teuthology.orchestra.run.trial064:> dd of=/etc/ceph/ceph.conf 2026-02-20T23:01:22.688 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:01:22.689 DEBUG:teuthology.orchestra.run.trial064:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:22.747 INFO:tasks.cephadm:Adding host trial064 to orchestrator... 2026-02-20T23:01:22.747 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch host add trial064 2026-02-20T23:01:22.862 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial004", "name": "osd_memory_target"} : dispatch 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1353009972' entity='client.admin' 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:23.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:23.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:23.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:22 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:24.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:24.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: Updating trial004:/etc/ceph/ceph.conf 2026-02-20T23:01:24.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:24.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: Updating trial004:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:24.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:24.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:24.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:23 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:24.733 INFO:teuthology.orchestra.run.trial004.stdout:Added host 'trial064' with addr '10.20.193.64' 2026-02-20T23:01:24.776 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-20T23:01:24.892 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:25.005 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:01:25.006 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial064", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:25.006 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: Deploying cephadm binary to trial064 2026-02-20T23:01:25.006 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: mgrmap e13: a(active, since 6s) 2026-02-20T23:01:25.006 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:25.006 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:25.006 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:24 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:25.104 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:25.104 INFO:teuthology.orchestra.run.trial004.stdout:[{"addr": "10.20.193.4", "hostname": "trial004", "labels": [], "status": ""}, {"addr": "10.20.193.64", "hostname": "trial064", "labels": [], "status": ""}] 2026-02-20T23:01:25.141 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial197 2026-02-20T23:01:25.142 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:01:25.142 DEBUG:teuthology.orchestra.run.trial197:> dd of=/etc/ceph/ceph.conf 2026-02-20T23:01:25.159 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:01:25.159 DEBUG:teuthology.orchestra.run.trial197:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:25.217 INFO:tasks.cephadm:Adding host trial197 to orchestrator... 2026-02-20T23:01:25.217 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch host add trial197 2026-02-20T23:01:25.336 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:26.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:25 trial004 ceph-mon[39338]: Added host trial064 2026-02-20T23:01:26.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:25 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:26.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:25 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:27.114 INFO:teuthology.orchestra.run.trial004.stdout:Added host 'trial197' with addr '10.20.193.197' 2026-02-20T23:01:27.166 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-20T23:01:27.283 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:27.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:01:27.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:27.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:27.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:27.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:27.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:27.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial064", "name": "osd_memory_target"} : dispatch 2026-02-20T23:01:27.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:27.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:27.500 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:27.500 INFO:teuthology.orchestra.run.trial004.stdout:[{"addr": "10.20.193.4", "hostname": "trial004", "labels": [], "status": ""}, {"addr": "10.20.193.64", "hostname": "trial064", "labels": [], "status": ""}, {"addr": "10.20.193.197", "hostname": "trial197", "labels": [], "status": ""}] 2026-02-20T23:01:27.539 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-20T23:01:27.540 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd crush tunables default 2026-02-20T23:01:27.654 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: Deploying cephadm binary to trial197 2026-02-20T23:01:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: Updating trial064:/etc/ceph/ceph.conf 2026-02-20T23:01:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:27 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1841475247' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-20T23:01:28.606 INFO:teuthology.orchestra.run.trial004.stderr:adjusted tunables profile to default 2026-02-20T23:01:28.647 INFO:tasks.cephadm:Adding mon.a on trial004 2026-02-20T23:01:28.647 INFO:tasks.cephadm:Adding mon.b on trial064 2026-02-20T23:01:28.647 INFO:tasks.cephadm:Adding mon.c on trial197 2026-02-20T23:01:28.647 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch apply mon '3;trial004:10.20.193.4=a;trial064:10.20.193.64=b;trial197:10.20.193.197=c' 2026-02-20T23:01:28.767 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:01:28.767 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:01:29.004 INFO:teuthology.orchestra.run.trial197.stdout:Scheduled mon update... 2026-02-20T23:01:29.061 DEBUG:teuthology.orchestra.run.trial064:mon.b> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.b.service 2026-02-20T23:01:29.064 DEBUG:teuthology.orchestra.run.trial197:mon.c> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.c.service 2026-02-20T23:01:29.065 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-20T23:01:29.065 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:01:29.250 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:01:29.250 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-20T23:01:29.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: Updating trial064:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: Added host trial197 2026-02-20T23:01:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:01:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:01:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1841475247' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-20T23:01:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:28 trial004 ceph-mon[39338]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T23:01:29.526 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:01:29.526 INFO:teuthology.orchestra.run.trial197.stdout:{"epoch":1,"fsid":"fc725b2a-0eaf-11f1-a959-d404e6e7d460","modified":"2026-02-20T23:00:57.191708Z","created":"2026-02-20T23:00:57.191708Z","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","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:3300","nonce":0},{"type":"v1","addr":"10.20.193.4:6789","nonce":0}]},"addr":"10.20.193.4:6789/0","public_addr":"10.20.193.4:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2026-02-20T23:01:29.526 INFO:teuthology.orchestra.run.trial197.stderr:dumped monmap epoch 1 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;trial004:10.20.193.4=a;trial064:10.20.193.64=b;trial197:10.20.193.197=c", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: Saving service mon spec with placement trial004:10.20.193.4=a;trial064:10.20.193.64=b;trial197:10.20.193.197=c;count:3 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial197", "name": "osd_memory_target"} : dispatch 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: Updating trial197:/etc/ceph/ceph.conf 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: Updating trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: Updating trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: Updating trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='client.? 10.20.193.197:0/2274691090' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:30.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:30 trial004 ceph-mon[39338]: Deploying daemon mon.c on trial197 2026-02-20T23:01:30.564 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-20T23:01:30.564 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph mon dump -f json 2026-02-20T23:01:30.716 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.c/config 2026-02-20T23:01:36.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:35 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:36.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: mon.a calling monitor election 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: mon.c calling monitor election 2026-02-20T23:01:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: monmap epoch 2 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: last_changed 2026-02-20T23:01:30.764636+0000 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: created 2026-02-20T23:00:57.191708+0000 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: min_mon_release 20 (tentacle) 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: election_strategy: 1 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: 0: [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] mon.a 2026-02-20T23:01:36.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-20T23:01:36.197 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: fsmap 2026-02-20T23:01:36.197 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T23:01:36.197 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: mgrmap e13: a(active, since 18s) 2026-02-20T23:01:36.197 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: overall HEALTH_OK 2026-02-20T23:01:36.197 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:37.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:36 trial197 ceph-mon[42178]: Deploying daemon mon.b on trial064 2026-02-20T23:01:37.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:36 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:36 trial064 ceph-mon[41740]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-02-20T23:01:37.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:36 trial004 ceph-mon[39338]: Deploying daemon mon.b on trial064 2026-02-20T23:01:37.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:36 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:41.932 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:01:41.932 INFO:teuthology.orchestra.run.trial197.stdout:{"epoch":3,"fsid":"fc725b2a-0eaf-11f1-a959-d404e6e7d460","modified":"2026-02-20T23:01:36.921715Z","created":"2026-02-20T23:00:57.191708Z","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","nvmeof_beacon_diff"],"optional":[]},"mons":[{"rank":0,"name":"a","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:3300","nonce":0},{"type":"v1","addr":"10.20.193.4:6789","nonce":0}]},"addr":"10.20.193.4:6789/0","public_addr":"10.20.193.4:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:3300","nonce":0},{"type":"v1","addr":"10.20.193.197:6789","nonce":0}]},"addr":"10.20.193.197:6789/0","public_addr":"10.20.193.197:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:3300","nonce":0},{"type":"v1","addr":"10.20.193.64:6789","nonce":0}]},"addr":"10.20.193.64:6789/0","public_addr":"10.20.193.64:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1,2]} 2026-02-20T23:01:41.932 INFO:teuthology.orchestra.run.trial197.stderr:dumped monmap epoch 3 2026-02-20T23:01:41.971 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-20T23:01:41.972 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-20T23:01:42.087 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:42.192 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: mon.a calling monitor election 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: mon.c calling monitor election 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.197:0/1855166756' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: mon.b calling monitor election 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.193 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: monmap epoch 3 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: last_changed 2026-02-20T23:01:36.921715+0000 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: created 2026-02-20T23:00:57.191708+0000 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: min_mon_release 20 (tentacle) 2026-02-20T23:01:42.194 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: election_strategy: 1 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: 0: [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] mon.a 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: 2: [v2:10.20.193.64:3300/0,v1:10.20.193.64:6789/0] mon.b 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: fsmap 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: mgrmap e13: a(active, since 24s) 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: overall HEALTH_OK 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:42.195 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:41 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:42.243 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:42.243 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.243 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:42.243 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: mon.a calling monitor election 2026-02-20T23:01:42.243 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: mon.c calling monitor election 2026-02-20T23:01:42.243 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.197:0/1855166756' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: mon.b calling monitor election 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.244 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: monmap epoch 3 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: last_changed 2026-02-20T23:01:36.921715+0000 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: created 2026-02-20T23:00:57.191708+0000 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: min_mon_release 20 (tentacle) 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: election_strategy: 1 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: 0: [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] mon.a 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: 2: [v2:10.20.193.64:3300/0,v1:10.20.193.64:6789/0] mon.b 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: fsmap 2026-02-20T23:01:42.245 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T23:01:42.246 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: mgrmap e13: a(active, since 24s) 2026-02-20T23:01:42.246 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: overall HEALTH_OK 2026-02-20T23:01:42.246 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:42.246 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:41 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:42.302 INFO:teuthology.orchestra.run.trial004.stdout:# minimal ceph.conf for fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:42.302 INFO:teuthology.orchestra.run.trial004.stdout:[global] 2026-02-20T23:01:42.303 INFO:teuthology.orchestra.run.trial004.stdout: fsid = fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:42.303 INFO:teuthology.orchestra.run.trial004.stdout: mon_host = [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] [v2:10.20.193.64:3300/0,v1:10.20.193.64:6789/0] [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] 2026-02-20T23:01:42.303 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:01:42.303 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.303 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:01:42.303 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: mon.a calling monitor election 2026-02-20T23:01:42.303 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: mon.c calling monitor election 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.197:0/1855166756' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: mon.b calling monitor election 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.304 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: monmap epoch 3 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: last_changed 2026-02-20T23:01:36.921715+0000 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: created 2026-02-20T23:00:57.191708+0000 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: min_mon_release 20 (tentacle) 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: election_strategy: 1 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: 0: [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] mon.a 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: 1: [v2:10.20.193.197:3300/0,v1:10.20.193.197:6789/0] mon.c 2026-02-20T23:01:42.305 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: 2: [v2:10.20.193.64:3300/0,v1:10.20.193.64:6789/0] mon.b 2026-02-20T23:01:42.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: fsmap 2026-02-20T23:01:42.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: osdmap e4: 0 total, 0 up, 0 in 2026-02-20T23:01:42.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: mgrmap e13: a(active, since 24s) 2026-02-20T23:01:42.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: overall HEALTH_OK 2026-02-20T23:01:42.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:42.306 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:41 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:42.377 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-20T23:01:42.378 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:42.378 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T23:01:42.405 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:42.405 DEBUG:teuthology.orchestra.run.trial004:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:42.469 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:01:42.470 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T23:01:42.497 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:01:42.497 DEBUG:teuthology.orchestra.run.trial064:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:42.561 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:01:42.561 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/ceph/ceph.conf 2026-02-20T23:01:42.587 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:01:42.588 DEBUG:teuthology.orchestra.run.trial197:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:01:42.651 INFO:tasks.cephadm:Adding mgr.a on trial004 2026-02-20T23:01:42.651 INFO:tasks.cephadm:Adding mgr.b on trial064 2026-02-20T23:01:42.651 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch apply mgr '2;trial004=a;trial064=b' 2026-02-20T23:01:42.803 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.c/config 2026-02-20T23:01:43.031 INFO:teuthology.orchestra.run.trial197.stdout:Scheduled mgr update... 2026-02-20T23:01:43.068 DEBUG:teuthology.orchestra.run.trial064:mgr.b> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.b.service 2026-02-20T23:01:43.070 DEBUG:tasks.cephadm:set 0 configs 2026-02-20T23:01:43.070 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph config dump 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Updating trial004:/etc/ceph/ceph.conf 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Updating trial064:/etc/ceph/ceph.conf 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Updating trial197:/etc/ceph/ceph.conf 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3415690158' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Updating trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.093 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Reconfiguring mon.a (unknown last config time)... 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Reconfiguring daemon mon.a on trial004 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Reconfiguring mon.b (monmap changed)... 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: Reconfiguring daemon mon.b on trial064 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.094 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:42 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Updating trial004:/etc/ceph/ceph.conf 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Updating trial064:/etc/ceph/ceph.conf 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Updating trial197:/etc/ceph/ceph.conf 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3415690158' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Updating trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Reconfiguring mon.a (unknown last config time)... 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Reconfiguring daemon mon.a on trial004 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Reconfiguring mon.b (monmap changed)... 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: Reconfiguring daemon mon.b on trial064 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:42 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:43.183 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global dev auth_debug true 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 * 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global dev debug_asserts_on_shutdown true 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global basic log_to_file true 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global basic log_to_journald false 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global basic log_to_stderr false 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_allow_pool_delete true 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_cluster_log_to_file true 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_election_default_strategy 1 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-20T23:01:43.393 INFO:teuthology.orchestra.run.trial004.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:global dev ms_die_on_bug true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:global dev ms_die_on_old_message true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:global advanced osd_pool_default_erasure_code_profile plugin=isa technique=reed_sol_van k=2 m=1 crush-failure-domain=osd 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced debug_mon 20/20 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced debug_ms 1/1 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced debug_paxos 20/20 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_data_avail_warn 5 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced debug_mgr 20/20 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced debug_ms 1/1 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mgr/cephadm/migration_current 7 * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mgr/cephadm/use_agent false * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev bdev_debug_aio true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced debug_ms 1/1 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced debug_osd 20/20 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_misdirected_ops true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_op_order true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_shutdown true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_memory_target_autotune true 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_op_queue debug_random * 2026-02-20T23:01:43.394 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_recover_clone_overlap true 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-20T23:01:43.395 INFO:teuthology.orchestra.run.trial004.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:43.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Updating trial004:/etc/ceph/ceph.conf 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Updating trial064:/etc/ceph/ceph.conf 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Updating trial197:/etc/ceph/ceph.conf 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3415690158' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Updating trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Reconfiguring mon.a (unknown last config time)... 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Reconfiguring daemon mon.a on trial004 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Reconfiguring mon.b (monmap changed)... 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: Reconfiguring daemon mon.b on trial064 2026-02-20T23:01:43.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:43.433 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:42 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:01:43.434 INFO:tasks.cephadm:Deploying OSDs... 2026-02-20T23:01:43.434 DEBUG:teuthology.orchestra.run.trial004:> set -ex 2026-02-20T23:01:43.434 DEBUG:teuthology.orchestra.run.trial004:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:01:43.490 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-02-20T23:01:43.491 DEBUG:teuthology.orchestra.run.trial004:> stat /dev/vg_nvme/lv_1 2026-02-20T23:01:43.547 INFO:teuthology.orchestra.run.trial004.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout:Device: 6h/6d Inode: 1306 Links: 1 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout:Access: 2026-02-20 23:01:22.271444876 +0000 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout:Modify: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout:Change: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.548 INFO:teuthology.orchestra.run.trial004.stdout: Birth: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.549 DEBUG:teuthology.orchestra.run.trial004:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T23:01:43.611 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records in 2026-02-20T23:01:43.611 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records out 2026-02-20T23:01:43.611 INFO:teuthology.orchestra.run.trial004.stderr:512 bytes copied, 0.000172361 s, 3.0 MB/s 2026-02-20T23:01:43.612 DEBUG:teuthology.orchestra.run.trial004:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T23:01:43.671 DEBUG:teuthology.orchestra.run.trial004:> stat /dev/vg_nvme/lv_2 2026-02-20T23:01:43.727 INFO:teuthology.orchestra.run.trial004.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T23:01:43.727 INFO:teuthology.orchestra.run.trial004.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout:Device: 6h/6d Inode: 1296 Links: 1 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout:Access: 2026-02-20 23:01:22.271444876 +0000 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout:Modify: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout:Change: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.728 INFO:teuthology.orchestra.run.trial004.stdout: Birth: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.728 DEBUG:teuthology.orchestra.run.trial004:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T23:01:43.790 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records in 2026-02-20T23:01:43.790 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records out 2026-02-20T23:01:43.790 INFO:teuthology.orchestra.run.trial004.stderr:512 bytes copied, 0.00014485 s, 3.5 MB/s 2026-02-20T23:01:43.792 DEBUG:teuthology.orchestra.run.trial004:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T23:01:43.849 DEBUG:teuthology.orchestra.run.trial004:> stat /dev/vg_nvme/lv_3 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout:Device: 6h/6d Inode: 1297 Links: 1 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout:Access: 2026-02-20 23:01:22.271444876 +0000 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout:Modify: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout:Change: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.904 INFO:teuthology.orchestra.run.trial004.stdout: Birth: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:43.904 DEBUG:teuthology.orchestra.run.trial004:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T23:01:43.967 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records in 2026-02-20T23:01:43.967 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records out 2026-02-20T23:01:43.967 INFO:teuthology.orchestra.run.trial004.stderr:512 bytes copied, 0.000177991 s, 2.9 MB/s 2026-02-20T23:01:43.968 DEBUG:teuthology.orchestra.run.trial004:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T23:01:44.026 DEBUG:teuthology.orchestra.run.trial004:> stat /dev/vg_nvme/lv_4 2026-02-20T23:01:44.083 INFO:teuthology.orchestra.run.trial004.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T23:01:44.083 INFO:teuthology.orchestra.run.trial004.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout:Device: 6h/6d Inode: 1290 Links: 1 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout:Access: 2026-02-20 23:01:22.271444876 +0000 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout:Modify: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout:Change: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:44.084 INFO:teuthology.orchestra.run.trial004.stdout: Birth: 2026-02-20 22:59:13.114789656 +0000 2026-02-20T23:01:44.084 DEBUG:teuthology.orchestra.run.trial004:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T23:01:44.144 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:01:43 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 2026-02-20T23:01:43.922+0000 7f8e45b08640 -1 mgr.server handle_report got status from non-daemon mon.b 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial004=a;trial064=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: Saving service mgr spec with placement trial004=a;trial064=b;count:2 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: Reconfiguring mon.c (monmap changed)... 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:44.145 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: Reconfiguring daemon mon.c on trial197 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:01:44.146 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: Deploying daemon mgr.b on trial064 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2552978295' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.147 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:44 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.148 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records in 2026-02-20T23:01:44.148 INFO:teuthology.orchestra.run.trial004.stderr:1+0 records out 2026-02-20T23:01:44.148 INFO:teuthology.orchestra.run.trial004.stderr:512 bytes copied, 0.000151041 s, 3.4 MB/s 2026-02-20T23:01:44.149 DEBUG:teuthology.orchestra.run.trial004:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial004=a;trial064=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: Saving service mgr spec with placement trial004=a;trial064=b;count:2 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: Reconfiguring mon.c (monmap changed)... 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: Reconfiguring daemon mon.c on trial197 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: Deploying daemon mgr.b on trial064 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/2552978295' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:44 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.205 DEBUG:teuthology.orchestra.run.trial064:> set -ex 2026-02-20T23:01:44.206 DEBUG:teuthology.orchestra.run.trial064:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:01:44.221 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-02-20T23:01:44.221 DEBUG:teuthology.orchestra.run.trial064:> stat /dev/vg_nvme/lv_1 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout:Device: 6h/6d Inode: 1309 Links: 1 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout:Access: 2026-02-20 23:01:43.801817523 +0000 2026-02-20T23:01:44.280 INFO:teuthology.orchestra.run.trial064.stdout:Modify: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.281 INFO:teuthology.orchestra.run.trial064.stdout:Change: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.281 INFO:teuthology.orchestra.run.trial064.stdout: Birth: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.281 DEBUG:teuthology.orchestra.run.trial064:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T23:01:44.349 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records in 2026-02-20T23:01:44.349 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records out 2026-02-20T23:01:44.349 INFO:teuthology.orchestra.run.trial064.stderr:512 bytes copied, 0.000164207 s, 3.1 MB/s 2026-02-20T23:01:44.350 DEBUG:teuthology.orchestra.run.trial064:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T23:01:44.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial004=a;trial064=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:44.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: Saving service mgr spec with placement trial004=a;trial064=b;count:2 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: Reconfiguring mon.c (monmap changed)... 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: Reconfiguring daemon mon.c on trial197 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: Deploying daemon mgr.b on trial064 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/2552978295' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:44 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:44.406 DEBUG:teuthology.orchestra.run.trial064:> stat /dev/vg_nvme/lv_2 2026-02-20T23:01:44.461 INFO:teuthology.orchestra.run.trial064.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout:Device: 6h/6d Inode: 1306 Links: 1 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout:Access: 2026-02-20 23:01:43.801817523 +0000 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout:Modify: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout:Change: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.462 INFO:teuthology.orchestra.run.trial064.stdout: Birth: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.462 DEBUG:teuthology.orchestra.run.trial064:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T23:01:44.524 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records in 2026-02-20T23:01:44.525 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records out 2026-02-20T23:01:44.525 INFO:teuthology.orchestra.run.trial064.stderr:512 bytes copied, 0.000161372 s, 3.2 MB/s 2026-02-20T23:01:44.526 DEBUG:teuthology.orchestra.run.trial064:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T23:01:44.582 DEBUG:teuthology.orchestra.run.trial064:> stat /dev/vg_nvme/lv_3 2026-02-20T23:01:44.638 INFO:teuthology.orchestra.run.trial064.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T23:01:44.638 INFO:teuthology.orchestra.run.trial064.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout:Device: 6h/6d Inode: 1300 Links: 1 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout:Access: 2026-02-20 23:01:43.801817523 +0000 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout:Modify: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout:Change: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.639 INFO:teuthology.orchestra.run.trial064.stdout: Birth: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.639 DEBUG:teuthology.orchestra.run.trial064:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T23:01:44.701 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records in 2026-02-20T23:01:44.702 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records out 2026-02-20T23:01:44.702 INFO:teuthology.orchestra.run.trial064.stderr:512 bytes copied, 0.000180868 s, 2.8 MB/s 2026-02-20T23:01:44.703 DEBUG:teuthology.orchestra.run.trial064:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T23:01:44.763 DEBUG:teuthology.orchestra.run.trial064:> stat /dev/vg_nvme/lv_4 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout:Device: 6h/6d Inode: 1313 Links: 1 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout:Access: 2026-02-20 23:01:43.802817522 +0000 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout:Modify: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout:Change: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.819 INFO:teuthology.orchestra.run.trial064.stdout: Birth: 2026-02-20 22:59:14.536439725 +0000 2026-02-20T23:01:44.820 DEBUG:teuthology.orchestra.run.trial064:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T23:01:44.882 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records in 2026-02-20T23:01:44.882 INFO:teuthology.orchestra.run.trial064.stderr:1+0 records out 2026-02-20T23:01:44.882 INFO:teuthology.orchestra.run.trial064.stderr:512 bytes copied, 0.000150151 s, 3.4 MB/s 2026-02-20T23:01:44.883 DEBUG:teuthology.orchestra.run.trial064:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T23:01:44.940 DEBUG:teuthology.orchestra.run.trial197:> set -ex 2026-02-20T23:01:44.940 DEBUG:teuthology.orchestra.run.trial197:> dd if=/scratch_devs of=/dev/stdout 2026-02-20T23:01:44.958 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-02-20T23:01:44.958 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_1 2026-02-20T23:01:45.015 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-20T23:01:45.015 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1295 Links: 1 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-20 23:01:30.519959935 +0000 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.016 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.017 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-20T23:01:45.080 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-20T23:01:45.080 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-20T23:01:45.080 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.00017728 s, 2.9 MB/s 2026-02-20T23:01:45.082 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-20T23:01:45.139 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_2 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: Reconfiguring mgr.a (unknown last config time)... 2026-02-20T23:01:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: Reconfiguring daemon mgr.a on trial004 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:45.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:45 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.198 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-20T23:01:45.198 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:45.198 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1289 Links: 1 2026-02-20T23:01:45.199 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:45.199 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:45.199 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-20 23:01:30.519959935 +0000 2026-02-20T23:01:45.199 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-20 22:59:12.843140972 +0000 2026-02-20T23:01:45.199 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-20 22:59:12.843140972 +0000 2026-02-20T23:01:45.199 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-20 22:59:12.843140972 +0000 2026-02-20T23:01:45.200 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-20T23:01:45.261 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-20T23:01:45.261 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-20T23:01:45.261 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000167923 s, 3.0 MB/s 2026-02-20T23:01:45.263 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-20T23:01:45.319 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_3 2026-02-20T23:01:45.377 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-20T23:01:45.377 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:45.378 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1297 Links: 1 2026-02-20T23:01:45.378 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:45.378 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:45.378 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-20 23:01:30.520959919 +0000 2026-02-20T23:01:45.378 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.378 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.379 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.379 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-20T23:01:45.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:45.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:45.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: Reconfiguring mgr.a (unknown last config time)... 2026-02-20T23:01:45.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:01:45.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:01:45.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.386 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: Reconfiguring daemon mgr.a on trial004 2026-02-20T23:01:45.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:45.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:45.387 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:45 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.409 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-20T23:01:45.409 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-20T23:01:45.410 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000223446 s, 2.3 MB/s 2026-02-20T23:01:45.411 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-20T23:01:45.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: Reconfiguring mgr.a (unknown last config time)... 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:01:45.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: Reconfiguring daemon mgr.a on trial004 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:45.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:45 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:45.468 DEBUG:teuthology.orchestra.run.trial197:> stat /dev/vg_nvme/lv_4 2026-02-20T23:01:45.524 INFO:teuthology.orchestra.run.trial197.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-20T23:01:45.524 INFO:teuthology.orchestra.run.trial197.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-20T23:01:45.524 INFO:teuthology.orchestra.run.trial197.stdout:Device: 6h/6d Inode: 1307 Links: 1 2026-02-20T23:01:45.524 INFO:teuthology.orchestra.run.trial197.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-20T23:01:45.524 INFO:teuthology.orchestra.run.trial197.stdout:Context: system_u:object_r:device_t:s0 2026-02-20T23:01:45.524 INFO:teuthology.orchestra.run.trial197.stdout:Access: 2026-02-20 23:01:30.520959919 +0000 2026-02-20T23:01:45.525 INFO:teuthology.orchestra.run.trial197.stdout:Modify: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.525 INFO:teuthology.orchestra.run.trial197.stdout:Change: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.525 INFO:teuthology.orchestra.run.trial197.stdout: Birth: 2026-02-20 22:59:12.844140954 +0000 2026-02-20T23:01:45.525 DEBUG:teuthology.orchestra.run.trial197:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-20T23:01:45.586 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records in 2026-02-20T23:01:45.586 INFO:teuthology.orchestra.run.trial197.stderr:1+0 records out 2026-02-20T23:01:45.586 INFO:teuthology.orchestra.run.trial197.stderr:512 bytes copied, 0.000215792 s, 2.4 MB/s 2026-02-20T23:01:45.587 DEBUG:teuthology.orchestra.run.trial197:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-20T23:01:45.644 INFO:tasks.cephadm:Deploying osd.0 on trial004 with /dev/vg_nvme/lv_4... 2026-02-20T23:01:45.645 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-20T23:01:45.763 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:46.216 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:46.233 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch daemon add osd trial004:vg_nvme/lv_4 --skip-validation 2026-02-20T23:01:46.352 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:47.061 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:47.061 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.061 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:47.062 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.063 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: Standby manager daemon b started 2026-02-20T23:01:47.063 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T23:01:47.063 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T23:01:47.063 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T23:01:47.063 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:46 trial004 ceph-mon[39338]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: Standby manager daemon b started 2026-02-20T23:01:47.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T23:01:47.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T23:01:47.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T23:01:47.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:46 trial197 ceph-mon[42178]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T23:01:47.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: Standby manager daemon b started 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-20T23:01:47.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:46 trial064 ceph-mon[41740]: from='mgr.? 10.20.193.64:0/1275177771' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-20T23:01:48.036 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial004:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:48.036 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: osd.default does not exist. Creating it now. 2026-02-20T23:01:48.036 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: Creating OSDs with service ID: default on trial004:['vg_nvme/lv_4'] 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: Marking host: trial004 for OSDSpec preview refresh. 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: Saving service osd.default spec with placement trial004 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/4000943234' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4a4f149a-ac98-4323-b2c1-b3716ca9305a"} : dispatch 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/4000943234' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4a4f149a-ac98-4323-b2c1-b3716ca9305a"}]': finished 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: osdmap e5: 1 total, 0 up, 1 in 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3882240679' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: mgrmap e14: a(active, since 29s), standbys: b 2026-02-20T23:01:48.037 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:47 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial004:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: osd.default does not exist. Creating it now. 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: Creating OSDs with service ID: default on trial004:['vg_nvme/lv_4'] 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: Marking host: trial004 for OSDSpec preview refresh. 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: Saving service osd.default spec with placement trial004 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/4000943234' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4a4f149a-ac98-4323-b2c1-b3716ca9305a"} : dispatch 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/4000943234' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4a4f149a-ac98-4323-b2c1-b3716ca9305a"}]': finished 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: osdmap e5: 1 total, 0 up, 1 in 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3882240679' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: mgrmap e14: a(active, since 29s), standbys: b 2026-02-20T23:01:48.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:47 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial004:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: osd.default does not exist. Creating it now. 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: Creating OSDs with service ID: default on trial004:['vg_nvme/lv_4'] 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: Marking host: trial004 for OSDSpec preview refresh. 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: Saving service osd.default spec with placement trial004 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/4000943234' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "4a4f149a-ac98-4323-b2c1-b3716ca9305a"} : dispatch 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/4000943234' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "4a4f149a-ac98-4323-b2c1-b3716ca9305a"}]': finished 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: osdmap e5: 1 total, 0 up, 1 in 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:48.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3882240679' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:01:48.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: mgrmap e14: a(active, since 29s), standbys: b 2026-02-20T23:01:48.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:47 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-20T23:01:49.156 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:48 trial004 ceph-mon[39338]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:49.156 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:48 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:49.156 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:48 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:01:49.156 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:48 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:49.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:48 trial064 ceph-mon[41740]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:49.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:48 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:49.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:48 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:01:49.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:48 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:49.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:48 trial197 ceph-mon[42178]: pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:49.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:48 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:49.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:48 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:01:49.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:48 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:49.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:49 trial004 ceph-mon[39338]: Deploying daemon osd.0 on trial004 2026-02-20T23:01:49.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:01:49.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:49 trial064 ceph-mon[41740]: Deploying daemon osd.0 on trial004 2026-02-20T23:01:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:01:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:50.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:49 trial197 ceph-mon[42178]: Deploying daemon osd.0 on trial004 2026-02-20T23:01:50.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:01:50.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:51.028 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:50 trial004 ceph-mon[39338]: Deploying daemon osd.0 on trial004 2026-02-20T23:01:51.028 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:50 trial004 ceph-mon[39338]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:50 trial064 ceph-mon[41740]: Deploying daemon osd.0 on trial004 2026-02-20T23:01:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:50 trial064 ceph-mon[41740]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:51.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:50 trial197 ceph-mon[42178]: Deploying daemon osd.0 on trial004 2026-02-20T23:01:51.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:50 trial197 ceph-mon[42178]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:52.325 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:52 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:52.325 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:52 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:52.326 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:52 trial004 ceph-mon[39338]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:52.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:52 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:52.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:52 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:52.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:52 trial197 ceph-mon[42178]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:52.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:52 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:52.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:52 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:52.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:52 trial064 ceph-mon[41740]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.852 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:54.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:54.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:01:54.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:54.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:54.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-20T23:01:54.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:54.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:55.055 INFO:teuthology.orchestra.run.trial004.stdout:Created osd(s) 0 on host 'trial004' 2026-02-20T23:01:55.095 DEBUG:teuthology.orchestra.run.trial004:osd.0> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.0.service 2026-02-20T23:01:55.098 INFO:tasks.cephadm:Deploying osd.1 on trial004 with /dev/vg_nvme/lv_3... 2026-02-20T23:01:55.098 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-20T23:01:55.256 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial004", "root=default"]} : dispatch 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.759 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:55 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.759 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:01:55 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0[52809]: 2026-02-20T23:01:55.502+0000 7fa59fcf3640 -1 osd.0 0 waiting for initial osdmap 2026-02-20T23:01:55.759 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:01:55 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0[52809]: 2026-02-20T23:01:55.504+0000 7fa5972f1640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial004", "root=default"]} : dispatch 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:55 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: osdmap e6: 1 total, 0 up, 1 in 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial004", "root=default"]} : dispatch 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:55 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:55.976 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:01:55.992 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch daemon add osd trial004:vg_nvme/lv_3 --skip-validation 2026-02-20T23:01:56.113 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:01:56.610 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial004", "root=default"]}]': finished 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: osdmap e7: 1 total, 0 up, 1 in 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: Detected new or changed devices on trial004 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: Adjusting osd_memory_target on trial004 to 84047M 2026-02-20T23:01:56.611 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:56.612 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:56 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial004", "root=default"]}]': finished 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: osdmap e7: 1 total, 0 up, 1 in 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: Detected new or changed devices on trial004 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: Adjusting osd_memory_target on trial004 to 84047M 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.831 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:56.832 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:56 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial004", "root=default"]}]': finished 2026-02-20T23:01:56.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: osdmap e7: 1 total, 0 up, 1 in 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: Detected new or changed devices on trial004 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: Adjusting osd_memory_target on trial004 to 84047M 2026-02-20T23:01:56.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:01:56.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:01:56.887 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:56 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:57.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: purged_snaps scrub starts 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial004:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: osd.default does not exist. Creating it now. 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: Creating OSDs with service ID: default on trial004:['vg_nvme/lv_3'] 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: Marking host: trial004 for OSDSpec preview refresh. 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: Saving service osd.default spec with placement trial004 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:57.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708] boot 2026-02-20T23:01:57.696 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: osdmap e8: 1 total, 1 up, 1 in 2026-02-20T23:01:57.696 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:57.696 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1597729170' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569"} : dispatch 2026-02-20T23:01:57.696 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1597729170' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569"}]': finished 2026-02-20T23:01:57.696 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: osdmap e9: 2 total, 1 up, 2 in 2026-02-20T23:01:57.696 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:57 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: purged_snaps scrub starts 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: purged_snaps scrub ok 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial004:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: osd.default does not exist. Creating it now. 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: Creating OSDs with service ID: default on trial004:['vg_nvme/lv_3'] 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: Marking host: trial004 for OSDSpec preview refresh. 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: Saving service osd.default spec with placement trial004 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708] boot 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: osdmap e8: 1 total, 1 up, 1 in 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:57.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1597729170' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569"} : dispatch 2026-02-20T23:01:57.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1597729170' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569"}]': finished 2026-02-20T23:01:57.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: osdmap e9: 2 total, 1 up, 2 in 2026-02-20T23:01:57.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:57 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: purged_snaps scrub starts 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial004:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: osd.default does not exist. Creating it now. 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: Creating OSDs with service ID: default on trial004:['vg_nvme/lv_3'] 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: Marking host: trial004 for OSDSpec preview refresh. 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: Saving service osd.default spec with placement trial004 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:57.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: osd.0 [v2:10.20.193.4:6802/4258638708,v1:10.20.193.4:6803/4258638708] boot 2026-02-20T23:01:57.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: osdmap e8: 1 total, 1 up, 1 in 2026-02-20T23:01:57.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-20T23:01:57.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1597729170' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569"} : dispatch 2026-02-20T23:01:57.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1597729170' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569"}]': finished 2026-02-20T23:01:57.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: osdmap e9: 2 total, 1 up, 2 in 2026-02-20T23:01:57.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:57 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:01:58.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:58 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3916450300' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:01:58.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:58 trial004 ceph-mon[39338]: pgmap v19: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:01:58.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:58 trial004 ceph-mon[39338]: osdmap e10: 2 total, 1 up, 2 in 2026-02-20T23:01:58.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:01:58.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:58 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3916450300' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:01:58.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:58 trial197 ceph-mon[42178]: pgmap v19: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:01:58.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:58 trial197 ceph-mon[42178]: osdmap e10: 2 total, 1 up, 2 in 2026-02-20T23:01:58.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:58 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:01:58.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:58 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3916450300' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:01:58.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:58 trial064 ceph-mon[41740]: pgmap v19: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:01:58.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:58 trial064 ceph-mon[41740]: osdmap e10: 2 total, 1 up, 2 in 2026-02-20T23:01:58.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:01:59.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:59.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:59.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:01:59.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:01:59.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:01:59.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:01:59.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:01:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:00.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:02:00.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:00.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:01:59 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:00.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:02:00.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:00.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:00.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:01:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:01.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:00 trial197 ceph-mon[42178]: Deploying daemon osd.1 on trial004 2026-02-20T23:02:01.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:00 trial197 ceph-mon[42178]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:01.149 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:00 trial004 ceph-mon[39338]: Deploying daemon osd.1 on trial004 2026-02-20T23:02:01.149 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:00 trial004 ceph-mon[39338]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:01.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:00 trial064 ceph-mon[41740]: Deploying daemon osd.1 on trial004 2026-02-20T23:02:01.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:00 trial064 ceph-mon[41740]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:02.462 INFO:teuthology.orchestra.run.trial004.stdout:Created osd(s) 1 on host 'trial004' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: pgmap v22: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: Detected new or changed devices on trial004 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:02.473 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:02 trial004 ceph-mon[39338]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T23:02:02.501 DEBUG:teuthology.orchestra.run.trial004:osd.1> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.1.service 2026-02-20T23:02:02.503 INFO:tasks.cephadm:Deploying osd.2 on trial064 with /dev/vg_nvme/lv_4... 2026-02-20T23:02:02.503 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: pgmap v22: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: Detected new or changed devices on trial004 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.526 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:02.527 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:02 trial064 ceph-mon[41740]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T23:02:02.621 INFO:teuthology.orchestra.run.trial064.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.b/config 2026-02-20T23:02:02.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: pgmap v22: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:02.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: Detected new or changed devices on trial004 2026-02-20T23:02:02.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:02.635 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:02.636 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:02 trial197 ceph-mon[42178]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-20T23:02:03.076 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:02:03.092 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch daemon add osd trial064:vg_nvme/lv_4 --skip-validation 2026-02-20T23:02:03.250 INFO:teuthology.orchestra.run.trial064.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.b/config 2026-02-20T23:02:03.627 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:03 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:03.627 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:03 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:03.627 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:03 trial064 ceph-mon[41740]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T23:02:03.627 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:03 trial064 ceph-mon[41740]: osdmap e11: 2 total, 1 up, 2 in 2026-02-20T23:02:03.627 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:03 trial064 ceph-mon[41740]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial004", "root=default"]} : dispatch 2026-02-20T23:02:03.627 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:03 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:03 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:03 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:03 trial004 ceph-mon[39338]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T23:02:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:03 trial004 ceph-mon[39338]: osdmap e11: 2 total, 1 up, 2 in 2026-02-20T23:02:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:03 trial004 ceph-mon[39338]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial004", "root=default"]} : dispatch 2026-02-20T23:02:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:03 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:03.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:03 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:03.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:03 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:03.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:03 trial197 ceph-mon[42178]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-20T23:02:03.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:03 trial197 ceph-mon[42178]: osdmap e11: 2 total, 1 up, 2 in 2026-02-20T23:02:03.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:03 trial197 ceph-mon[42178]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial004", "root=default"]} : dispatch 2026-02-20T23:02:03.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:03 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.032 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:03 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1[59077]: 2026-02-20T23:02:03.758+0000 7efc95541640 -1 osd.1 0 waiting for initial osdmap 2026-02-20T23:02:04.032 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:03 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1[59077]: 2026-02-20T23:02:03.760+0000 7efc8cb3f640 -1 osd.1 12 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='client.24134 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial064:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: osd.default does not exist. Creating it now. 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: Creating OSDs with service ID: default on trial064:['vg_nvme/lv_4'] 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: Marking host: trial064 for OSDSpec preview refresh. 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: Saving service osd.default spec with placement trial064 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:04.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: pgmap v24: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial004", "root=default"]}]': finished 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: osdmap e12: 2 total, 1 up, 2 in 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='client.? 10.20.193.64:0/3553656091' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"}]': finished 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709] boot 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: osdmap e13: 3 total, 2 up, 3 in 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:04.682 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:04 trial064 ceph-mon[41740]: from='client.? 10.20.193.64:0/1313911287' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='client.24134 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial064:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: osd.default does not exist. Creating it now. 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: Creating OSDs with service ID: default on trial064:['vg_nvme/lv_4'] 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: Marking host: trial064 for OSDSpec preview refresh. 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: Saving service osd.default spec with placement trial064 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:04.685 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: pgmap v24: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial004", "root=default"]}]': finished 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: osdmap e12: 2 total, 1 up, 2 in 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='client.? 10.20.193.64:0/3553656091' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"}]': finished 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709] boot 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: osdmap e13: 3 total, 2 up, 3 in 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:04.686 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:04 trial004 ceph-mon[39338]: from='client.? 10.20.193.64:0/1313911287' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:04.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='client.24134 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial064:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: osd.default does not exist. Creating it now. 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: Creating OSDs with service ID: default on trial064:['vg_nvme/lv_4'] 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: Marking host: trial064 for OSDSpec preview refresh. 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: Saving service osd.default spec with placement trial064 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: pgmap v24: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-20T23:02:04.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial004", "root=default"]}]': finished 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: osdmap e12: 2 total, 1 up, 2 in 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"} : dispatch 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='client.? 10.20.193.64:0/3553656091' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"} : dispatch 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf"}]': finished 2026-02-20T23:02:04.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: osd.1 [v2:10.20.193.4:6810/2587376709,v1:10.20.193.4:6811/2587376709] boot 2026-02-20T23:02:04.887 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: osdmap e13: 3 total, 2 up, 3 in 2026-02-20T23:02:04.887 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-20T23:02:04.887 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:04.887 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:04 trial197 ceph-mon[42178]: from='client.? 10.20.193.64:0/1313911287' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: purged_snaps scrub starts 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:05.840 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:05.841 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.841 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:05.841 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:05.841 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:05.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: purged_snaps scrub starts 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: purged_snaps scrub ok 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:05.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:05.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:05.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:05.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:05 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: purged_snaps scrub starts 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:05.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:06.764 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: Adjusting osd_memory_target on trial004 to 42023M 2026-02-20T23:02:06.764 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: osdmap e14: 3 total, 2 up, 3 in 2026-02-20T23:02:06.764 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:06.764 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:02:06.765 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:06.765 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: Deploying daemon osd.2 on trial064 2026-02-20T23:02:06.765 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:06 trial064 ceph-mon[41740]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: Adjusting osd_memory_target on trial004 to 42023M 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: osdmap e14: 3 total, 2 up, 3 in 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: Deploying daemon osd.2 on trial064 2026-02-20T23:02:06.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:06 trial197 ceph-mon[42178]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:06.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: Adjusting osd_memory_target on trial004 to 42023M 2026-02-20T23:02:06.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: osdmap e14: 3 total, 2 up, 3 in 2026-02-20T23:02:06.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:06.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:02:06.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:06.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: Deploying daemon osd.2 on trial064 2026-02-20T23:02:06.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:06 trial004 ceph-mon[39338]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:08.621 INFO:teuthology.orchestra.run.trial064.stdout:Created osd(s) 2 on host 'trial064' 2026-02-20T23:02:08.665 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:08 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:08.665 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:08 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:08.665 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:08 trial064 ceph-mon[41740]: pgmap v29: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:08.665 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:08 trial064 ceph-mon[41740]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:02:08.665 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:08 trial064 ceph-mon[41740]: from='osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:02:08.667 DEBUG:teuthology.orchestra.run.trial064:osd.2> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.2.service 2026-02-20T23:02:08.669 INFO:tasks.cephadm:Deploying osd.3 on trial064 with /dev/vg_nvme/lv_3... 2026-02-20T23:02:08.669 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-20T23:02:08.827 INFO:teuthology.orchestra.run.trial064.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.b/config 2026-02-20T23:02:08.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:08 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:08.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:08 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:08.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:08 trial197 ceph-mon[42178]: pgmap v29: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:08.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:08 trial197 ceph-mon[42178]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:02:08.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:08 trial197 ceph-mon[42178]: from='osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:02:08.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:08 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:08.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:08 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:08.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:08 trial004 ceph-mon[39338]: pgmap v29: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:08.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:08 trial004 ceph-mon[39338]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:02:08.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:08 trial004 ceph-mon[39338]: from='osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-20T23:02:09.713 INFO:teuthology.orchestra.run.trial064.stdout: 2026-02-20T23:02:09.729 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch daemon add osd trial064:vg_nvme/lv_3 --skip-validation 2026-02-20T23:02:09.846 INFO:teuthology.orchestra.run.trial064.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.b/config 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: osdmap e15: 3 total, 2 up, 3 in 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.870 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.871 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.871 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.871 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:09 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:09.871 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:09 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2[46162]: 2026-02-20T23:02:09.586+0000 7f0ff079b640 -1 osd.2 0 waiting for initial osdmap 2026-02-20T23:02:09.871 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:09 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2[46162]: 2026-02-20T23:02:09.589+0000 7f0fe7d99640 -1 osd.2 16 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T23:02:09.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T23:02:09.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: osdmap e15: 3 total, 2 up, 3 in 2026-02-20T23:02:09.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:09 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:09.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: osdmap e15: 3 total, 2 up, 3 in 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:09.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:09 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]}]': finished 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: osdmap e16: 3 total, 2 up, 3 in 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.804 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:10.805 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:10 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]}]': finished 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: osdmap e16: 3 total, 2 up, 3 in 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:10.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:10 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial064", "root=default"]}]': finished 2026-02-20T23:02:10.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: osdmap e16: 3 total, 2 up, 3 in 2026-02-20T23:02:10.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:10.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:10.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: pgmap v32: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:10.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:10 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:11.850 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: purged_snaps scrub starts 2026-02-20T23:02:11.850 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='client.24161 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial064:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: osd.default does not exist. Creating it now. 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: Creating OSDs with service ID: default on trial064:['vg_nvme/lv_3'] 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: Marking host: trial064 for OSDSpec preview refresh. 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: Saving service osd.default spec with placement trial064 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: Detected new or changed devices on trial064 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: Adjusting osd_memory_target on trial064 to 84047M 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043] boot 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: osdmap e17: 3 total, 3 up, 3 in 2026-02-20T23:02:11.851 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:11.852 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"} : dispatch 2026-02-20T23:02:11.852 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"}]': finished 2026-02-20T23:02:11.852 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='client.? 10.20.193.64:0/259023870' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"} : dispatch 2026-02-20T23:02:11.852 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: osdmap e18: 4 total, 3 up, 4 in 2026-02-20T23:02:11.852 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:11.852 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:11 trial064 ceph-mon[41740]: from='client.? 10.20.193.64:0/401377408' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:11.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: purged_snaps scrub starts 2026-02-20T23:02:11.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: purged_snaps scrub ok 2026-02-20T23:02:11.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='client.24161 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial064:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:11.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: osd.default does not exist. Creating it now. 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: Creating OSDs with service ID: default on trial064:['vg_nvme/lv_3'] 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: Marking host: trial064 for OSDSpec preview refresh. 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: Saving service osd.default spec with placement trial064 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: Detected new or changed devices on trial064 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: Adjusting osd_memory_target on trial064 to 84047M 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043] boot 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: osdmap e17: 3 total, 3 up, 3 in 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"} : dispatch 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"}]': finished 2026-02-20T23:02:11.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='client.? 10.20.193.64:0/259023870' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"} : dispatch 2026-02-20T23:02:11.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: osdmap e18: 4 total, 3 up, 4 in 2026-02-20T23:02:11.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:11.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:11 trial197 ceph-mon[42178]: from='client.? 10.20.193.64:0/401377408' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:11.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: purged_snaps scrub starts 2026-02-20T23:02:11.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='client.24161 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial064:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: osd.default does not exist. Creating it now. 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: Creating OSDs with service ID: default on trial064:['vg_nvme/lv_3'] 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: Marking host: trial064 for OSDSpec preview refresh. 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: Saving service osd.default spec with placement trial064 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: Detected new or changed devices on trial064 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: Adjusting osd_memory_target on trial064 to 84047M 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: osd.2 [v2:10.20.193.64:6800/4101535043,v1:10.20.193.64:6801/4101535043] boot 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: osdmap e17: 3 total, 3 up, 3 in 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"} : dispatch 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"}]': finished 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='client.? 10.20.193.64:0/259023870' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "d8a733f5-cfef-4ff6-98a8-8dc3da61af64"} : dispatch 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: osdmap e18: 4 total, 3 up, 4 in 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:11.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:11 trial004 ceph-mon[39338]: from='client.? 10.20.193.64:0/401377408' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:12.657 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: pgmap v35: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:12.657 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' 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-02-20T23:02:12.657 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' 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-02-20T23:02:12.657 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: osdmap e19: 4 total, 3 up, 4 in 2026-02-20T23:02:12.657 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:12.658 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:02:12.658 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:02:12.658 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:12 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: pgmap v35: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' 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-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' 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-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: osdmap e19: 4 total, 3 up, 4 in 2026-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:02:12.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:12 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:12.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: pgmap v35: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:12.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' 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-02-20T23:02:12.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' 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-02-20T23:02:12.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: osdmap e19: 4 total, 3 up, 4 in 2026-02-20T23:02:12.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:12.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:02:12.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:02:12.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:12 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:13.444 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63650]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-20T23:02:13.444 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63650]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.444 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63650]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.444 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63650]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.444 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63654]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63654]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63654]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63654]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63658]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63658]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63658]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63658]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63662]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63662]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63662]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63662]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63642]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63642]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63642]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63642]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63646]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63646]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63646]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.446 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:02:13 trial004 sudo[63646]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.468 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51582]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51582]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51582]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51582]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51586]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme0n1 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51586]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51586]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.469 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51586]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51528]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51528]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51528]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51528]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51536]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51536]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51536]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.469 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:02:13 trial064 sudo[51536]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43589]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme0n1 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43589]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43589]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43589]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43593]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme0n1 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43593]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43593]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-20T23:02:13.596 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 sudo[43593]: pam_unix(sudo:session): session closed for user root 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: Deploying daemon osd.3 on trial064 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: Deploying daemon osd.3 on trial064 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: osdmap e20: 4 total, 3 up, 4 in 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.886 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:13 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: Deploying daemon osd.3 on trial064 2026-02-20T23:02:13.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:02:13.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:13.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: Deploying daemon osd.3 on trial064 2026-02-20T23:02:13.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:02:13.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: osdmap e20: 4 total, 3 up, 4 in 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.931 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.932 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.932 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.932 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.932 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.932 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.932 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:13 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: Deploying daemon osd.3 on trial064 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: Deploying daemon osd.3 on trial064 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: osdmap e20: 4 total, 3 up, 4 in 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-20T23:02:13.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:13 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:14.649 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:14 trial064 ceph-mon[41740]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:14.649 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:14 trial064 ceph-mon[41740]: osdmap e21: 4 total, 3 up, 4 in 2026-02-20T23:02:14.650 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:14 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:14.650 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:14 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:14.650 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:14 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:14.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:14 trial197 ceph-mon[42178]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:14.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:14 trial197 ceph-mon[42178]: osdmap e21: 4 total, 3 up, 4 in 2026-02-20T23:02:14.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:14 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:14.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:14 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:14.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:14 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:14.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:14 trial004 ceph-mon[39338]: pgmap v38: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:14.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:14 trial004 ceph-mon[39338]: osdmap e21: 4 total, 3 up, 4 in 2026-02-20T23:02:14.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:14 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:14.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:14 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:14.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:14 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:15.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:15 trial197 ceph-mon[42178]: mgrmap e15: a(active, since 56s), standbys: b 2026-02-20T23:02:15.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:15 trial064 ceph-mon[41740]: mgrmap e15: a(active, since 56s), standbys: b 2026-02-20T23:02:15.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:15 trial004 ceph-mon[39338]: mgrmap e15: a(active, since 56s), standbys: b 2026-02-20T23:02:16.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:16 trial197 ceph-mon[42178]: pgmap v40: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:16.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:16 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:16.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:16 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:16.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:16 trial064 ceph-mon[41740]: pgmap v40: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:16.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:16 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:16.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:16 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:16.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:16 trial004 ceph-mon[39338]: pgmap v40: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:16.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:16 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:16.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:16 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:17.157 INFO:teuthology.orchestra.run.trial064.stdout:Created osd(s) 3 on host 'trial064' 2026-02-20T23:02:17.210 DEBUG:teuthology.orchestra.run.trial064:osd.3> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.3.service 2026-02-20T23:02:17.211 INFO:tasks.cephadm:Deploying osd.4 on trial197 with /dev/vg_nvme/lv_4... 2026-02-20T23:02:17.211 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-20T23:02:17.327 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.c/config 2026-02-20T23:02:17.780 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:02:17.796 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch daemon add osd trial197:vg_nvme/lv_4 --skip-validation 2026-02-20T23:02:17.916 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.c/config 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.293 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:18.294 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.294 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.294 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:18.294 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:18.294 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:18 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:18.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:18.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:18 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: pgmap v41: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:18.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:18.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:18.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:18.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:18 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.160 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:02:18 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3[53032]: 2026-02-20T23:02:18.812+0000 7f0b43e45640 -1 osd.3 0 waiting for initial osdmap 2026-02-20T23:02:19.161 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:02:18 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3[53032]: 2026-02-20T23:02:18.815+0000 7f0b3f44b640 -1 osd.3 23 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: osd.default does not exist. Creating it now. 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_4'] 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: Saving service osd.default spec with placement trial197 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: osdmap e22: 4 total, 3 up, 4 in 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='client.? 10.20.193.197:0/324791967' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]}]': finished 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"}]': finished 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: osdmap e23: 5 total, 3 up, 5 in 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248] boot 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: osdmap e24: 5 total, 4 up, 5 in 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:19.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:19 trial064 ceph-mon[41740]: from='client.? 10.20.193.197:0/247689200' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:19.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:19.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: osd.default does not exist. Creating it now. 2026-02-20T23:02:19.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_4'] 2026-02-20T23:02:19.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: Saving service osd.default spec with placement trial197 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: osdmap e22: 4 total, 3 up, 4 in 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='client.? 10.20.193.197:0/324791967' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]}]': finished 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"}]': finished 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: osdmap e23: 5 total, 3 up, 5 in 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248] boot 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: osdmap e24: 5 total, 4 up, 5 in 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:19 trial004 ceph-mon[39338]: from='client.? 10.20.193.197:0/247689200' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:19.604 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: osd.default does not exist. Creating it now. 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_4'] 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: Saving service osd.default spec with placement trial197 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: osdmap e22: 4 total, 3 up, 4 in 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='client.? 10.20.193.197:0/324791967' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial064", "root=default"]}]': finished 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "e140a4d2-38d2-43de-8a18-8198ffa850a3"}]': finished 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: osdmap e23: 5 total, 3 up, 5 in 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: osd.3 [v2:10.20.193.64:6808/3959721248,v1:10.20.193.64:6809/3959721248] boot 2026-02-20T23:02:19.605 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: osdmap e24: 5 total, 4 up, 5 in 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:19.606 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:19 trial197 ceph-mon[42178]: from='client.? 10.20.193.197:0/247689200' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:20.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:20 trial197 ceph-mon[42178]: Detected new or changed devices on trial064 2026-02-20T23:02:20.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:20 trial197 ceph-mon[42178]: Adjusting osd_memory_target on trial064 to 42023M 2026-02-20T23:02:20.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:20 trial197 ceph-mon[42178]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:20.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:20 trial197 ceph-mon[42178]: osdmap e25: 5 total, 4 up, 5 in 2026-02-20T23:02:20.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:20 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:20.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:20 trial064 ceph-mon[41740]: Detected new or changed devices on trial064 2026-02-20T23:02:20.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:20 trial064 ceph-mon[41740]: Adjusting osd_memory_target on trial064 to 42023M 2026-02-20T23:02:20.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:20 trial064 ceph-mon[41740]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:20.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:20 trial064 ceph-mon[41740]: osdmap e25: 5 total, 4 up, 5 in 2026-02-20T23:02:20.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:20 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:20.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:20 trial004 ceph-mon[39338]: Detected new or changed devices on trial064 2026-02-20T23:02:20.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:20 trial004 ceph-mon[39338]: Adjusting osd_memory_target on trial064 to 42023M 2026-02-20T23:02:20.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:20 trial004 ceph-mon[39338]: pgmap v45: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-20T23:02:20.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:20 trial004 ceph-mon[39338]: osdmap e25: 5 total, 4 up, 5 in 2026-02-20T23:02:20.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:20 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:21.277 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: purged_snaps scrub starts 2026-02-20T23:02:21.277 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: purged_snaps scrub ok 2026-02-20T23:02:21.277 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:02:21.277 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:21.277 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: Deploying daemon osd.4 on trial197 2026-02-20T23:02:21.277 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:02:21.278 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:21.278 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: Deploying daemon osd.4 on trial197 2026-02-20T23:02:21.278 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: osdmap e26: 5 total, 4 up, 5 in 2026-02-20T23:02:21.278 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:21 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:21.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: purged_snaps scrub starts 2026-02-20T23:02:21.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:21.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: Deploying daemon osd.4 on trial197 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: Deploying daemon osd.4 on trial197 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: osdmap e26: 5 total, 4 up, 5 in 2026-02-20T23:02:21.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:21 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:21.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: purged_snaps scrub starts 2026-02-20T23:02:21.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:21.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:02:21.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:21.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: Deploying daemon osd.4 on trial197 2026-02-20T23:02:21.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-20T23:02:21.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:21.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: Deploying daemon osd.4 on trial197 2026-02-20T23:02:21.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: osdmap e26: 5 total, 4 up, 5 in 2026-02-20T23:02:21.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:21 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:22.424 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:22 trial197 ceph-mon[42178]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:02:22.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:22 trial064 ceph-mon[41740]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:02:22.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:22 trial004 ceph-mon[39338]: pgmap v48: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:02:23.228 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:23 trial197 ceph-mon[42178]: osdmap e27: 5 total, 4 up, 5 in 2026-02-20T23:02:23.228 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:23 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:23.228 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:23 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:23.229 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:23 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:23.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:23 trial064 ceph-mon[41740]: osdmap e27: 5 total, 4 up, 5 in 2026-02-20T23:02:23.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:23 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:23.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:23 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:23.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:23 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:23.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:23 trial004 ceph-mon[39338]: osdmap e27: 5 total, 4 up, 5 in 2026-02-20T23:02:23.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:23 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:23.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:23 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:23.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:23 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:24.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:24 trial064 ceph-mon[41740]: osdmap e28: 5 total, 4 up, 5 in 2026-02-20T23:02:24.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:24 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:24.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:24 trial064 ceph-mon[41740]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:02:24.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:24 trial004 ceph-mon[39338]: osdmap e28: 5 total, 4 up, 5 in 2026-02-20T23:02:24.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:24 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:24.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:24 trial004 ceph-mon[39338]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:02:24.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:24 trial197 ceph-mon[42178]: osdmap e28: 5 total, 4 up, 5 in 2026-02-20T23:02:24.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:24 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:24.634 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:24 trial197 ceph-mon[42178]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:02:25.823 INFO:teuthology.orchestra.run.trial197.stdout:Created osd(s) 4 on host 'trial197' 2026-02-20T23:02:25.865 DEBUG:teuthology.orchestra.run.trial197:osd.4> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.4.service 2026-02-20T23:02:25.868 INFO:tasks.cephadm:Deploying osd.5 on trial197 with /dev/vg_nvme/lv_3... 2026-02-20T23:02:25.868 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-20T23:02:26.026 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.c/config 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: from='osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 101 KiB/s, 0 objects/s recovering 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:26 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: from='osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 101 KiB/s, 0 objects/s recovering 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:26 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:02:26.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: from='osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-20T23:02:26.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: pgmap v52: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 101 KiB/s, 0 objects/s recovering 2026-02-20T23:02:26.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:26 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:26.928 INFO:teuthology.orchestra.run.trial197.stdout: 2026-02-20T23:02:26.946 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph orch daemon add osd trial197:vg_nvme/lv_3 --skip-validation 2026-02-20T23:02:27.060 INFO:teuthology.orchestra.run.trial197.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.c/config 2026-02-20T23:02:27.317 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: osdmap e29: 5 total, 4 up, 5 in 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.318 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.319 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:27 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-20T23:02:27.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: osdmap e29: 5 total, 4 up, 5 in 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:27 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.386 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:27 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4[47491]: 2026-02-20T23:02:27.059+0000 7f28c0e48640 -1 osd.4 0 waiting for initial osdmap 2026-02-20T23:02:27.386 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:27 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4[47491]: 2026-02-20T23:02:27.062+0000 7f28b8446640 -1 osd.4 30 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: osdmap e29: 5 total, 4 up, 5 in 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:27.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:27 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: osdmap e30: 5 total, 4 up, 5 in 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: osd.default does not exist. Creating it now. 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_3'] 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: Saving service osd.default spec with placement trial197 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: Detected new or changed devices on trial197 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.202 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: Adjusting osd_memory_target on trial197 to 88143M 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 104 KiB/s, 0 objects/s recovering 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:28.203 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:28 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: osdmap e30: 5 total, 4 up, 5 in 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: osd.default does not exist. Creating it now. 2026-02-20T23:02:28.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_3'] 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: Saving service osd.default spec with placement trial197 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: Detected new or changed devices on trial197 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: Adjusting osd_memory_target on trial197 to 88143M 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 104 KiB/s, 0 objects/s recovering 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:28.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:28 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: osdmap e30: 5 total, 4 up, 5 in 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial197:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: osd.default does not exist. Creating it now. 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: Creating OSDs with service ID: default on trial197:['vg_nvme/lv_3'] 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: Marking host: trial197 for OSDSpec preview refresh. 2026-02-20T23:02:28.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: Saving service osd.default spec with placement trial197 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: Detected new or changed devices on trial197 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: Adjusting osd_memory_target on trial197 to 88143M 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.446 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: pgmap v55: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 104 KiB/s, 0 objects/s recovering 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:28.447 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:28 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:29.156 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: purged_snaps scrub starts 2026-02-20T23:02:29.156 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: purged_snaps scrub ok 2026-02-20T23:02:29.156 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:29.156 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497] boot 2026-02-20T23:02:29.156 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: osdmap e31: 5 total, 5 up, 5 in 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"} : dispatch 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='client.? 10.20.193.197:0/4049046552' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"} : dispatch 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"}]': finished 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: osdmap e32: 6 total, 5 up, 6 in 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:29.157 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:29 trial197 ceph-mon[42178]: from='client.? 10.20.193.197:0/4083603212' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: purged_snaps scrub starts 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497] boot 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: osdmap e31: 5 total, 5 up, 5 in 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"} : dispatch 2026-02-20T23:02:29.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='client.? 10.20.193.197:0/4049046552' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"} : dispatch 2026-02-20T23:02:29.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"}]': finished 2026-02-20T23:02:29.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: osdmap e32: 6 total, 5 up, 6 in 2026-02-20T23:02:29.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:29.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:29 trial064 ceph-mon[41740]: from='client.? 10.20.193.197:0/4083603212' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:29.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: purged_snaps scrub starts 2026-02-20T23:02:29.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:29.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:29.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: osd.4 [v2:10.20.193.197:6800/3703464497,v1:10.20.193.197:6801/3703464497] boot 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: osdmap e31: 5 total, 5 up, 5 in 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"} : dispatch 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='client.? 10.20.193.197:0/4049046552' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"} : dispatch 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "44458e4e-e478-4892-bec0-ab2488b8b241"}]': finished 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: osdmap e32: 6 total, 5 up, 6 in 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:29.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:29 trial004 ceph-mon[39338]: from='client.? 10.20.193.197:0/4083603212' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: osdmap e33: 6 total, 5 up, 6 in 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: Deploying daemon osd.5 on trial197 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: pgmap v59: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:30.312 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:30 trial197 ceph-mon[42178]: Deploying daemon osd.5 on trial197 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: osdmap e33: 6 total, 5 up, 6 in 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: Deploying daemon osd.5 on trial197 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: pgmap v59: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:30.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:02:30.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:30.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:30 trial064 ceph-mon[41740]: Deploying daemon osd.5 on trial197 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: osdmap e33: 6 total, 5 up, 6 in 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: Deploying daemon osd.5 on trial197 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: pgmap v59: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:30.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:30 trial004 ceph-mon[39338]: Deploying daemon osd.5 on trial197 2026-02-20T23:02:31.121 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:31 trial197 ceph-mon[42178]: osdmap e34: 6 total, 5 up, 6 in 2026-02-20T23:02:31.122 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:31 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:31.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:31 trial064 ceph-mon[41740]: osdmap e34: 6 total, 5 up, 6 in 2026-02-20T23:02:31.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:31 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:31.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:31 trial004 ceph-mon[39338]: osdmap e34: 6 total, 5 up, 6 in 2026-02-20T23:02:31.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:31 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:32.384 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:32 trial197 ceph-mon[42178]: osdmap e35: 6 total, 5 up, 6 in 2026-02-20T23:02:32.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:32 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:32.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:32 trial197 ceph-mon[42178]: pgmap v62: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 158 KiB/s, 0 objects/s recovering 2026-02-20T23:02:32.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:32 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:32.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:32 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:32.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:32 trial064 ceph-mon[41740]: osdmap e35: 6 total, 5 up, 6 in 2026-02-20T23:02:32.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:32 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:32.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:32 trial064 ceph-mon[41740]: pgmap v62: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 158 KiB/s, 0 objects/s recovering 2026-02-20T23:02:32.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:32 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:32.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:32 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:32.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:32 trial004 ceph-mon[39338]: osdmap e35: 6 total, 5 up, 6 in 2026-02-20T23:02:32.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:32 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:32.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:32 trial004 ceph-mon[39338]: pgmap v62: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 158 KiB/s, 0 objects/s recovering 2026-02-20T23:02:32.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:32 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:32.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:32 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:34.849 INFO:teuthology.orchestra.run.trial197.stdout:Created osd(s) 5 on host 'trial197' 2026-02-20T23:02:34.889 DEBUG:teuthology.orchestra.run.trial197:osd.5> sudo journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.5.service 2026-02-20T23:02:34.892 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2026-02-20T23:02:34.892 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:02:35.011 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:35.033 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:34 trial004 ceph-mon[39338]: pgmap v63: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail; 103 KiB/s, 0 objects/s recovering 2026-02-20T23:02:35.033 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:34 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:35.033 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:34 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:35.073 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:34 trial197 ceph-mon[42178]: pgmap v63: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail; 103 KiB/s, 0 objects/s recovering 2026-02-20T23:02:35.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:34 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:35.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:34 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:35.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:34 trial064 ceph-mon[41740]: pgmap v63: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail; 103 KiB/s, 0 objects/s recovering 2026-02-20T23:02:35.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:34 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:35.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:34 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:35.227 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:35.283 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":35,"num_osds":6,"num_up_osds":5,"osd_up_since":1771628548,"num_in_osds":6,"osd_in_since":1771628548,"num_remapped_pgs":0} 2026-02-20T23:02:36.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:02:36.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:02:36.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3620003985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:36.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:35 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:36.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3620003985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:35 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:36.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:02:36.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-20T23:02:36.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3620003985' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:35 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:36.285 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:02:36.401 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:36.615 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:36.653 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":36,"num_osds":6,"num_up_osds":5,"osd_up_since":1771628548,"num_in_osds":6,"osd_in_since":1771628548,"num_remapped_pgs":0} 2026-02-20T23:02:36.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 87 KiB/s, 0 objects/s recovering 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: osdmap e36: 6 total, 5 up, 6 in 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:36.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:36 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/517447759' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 87 KiB/s, 0 objects/s recovering 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: osdmap e36: 6 total, 5 up, 6 in 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.009 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.010 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:36 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/517447759' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:37.010 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:02:36 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5[53995]: 2026-02-20T23:02:36.775+0000 7f8209fc6640 -1 osd.5 0 waiting for initial osdmap 2026-02-20T23:02:37.010 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:02:36 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5[53995]: 2026-02-20T23:02:36.778+0000 7f82055cc640 -1 osd.5 37 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-20T23:02:37.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 87 KiB/s, 0 objects/s recovering 2026-02-20T23:02:37.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: osdmap e36: 6 total, 5 up, 6 in 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]} : dispatch 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:36 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/517447759' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:37.654 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd stat -f json 2026-02-20T23:02:37.776 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:37.879 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: osdmap e37: 6 total, 5 up, 6 in 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: Detected new or changed devices on trial197 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: Adjusting osd_memory_target on trial197 to 44071M 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:37.880 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:37 trial197 ceph-mon[42178]: osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709] boot 2026-02-20T23:02:37.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-20T23:02:37.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: osdmap e37: 6 total, 5 up, 6 in 2026-02-20T23:02:37.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:37.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: Detected new or changed devices on trial197 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:37.946 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: Adjusting osd_memory_target on trial197 to 44071M 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:37.947 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:37.948 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:37 trial004 ceph-mon[39338]: osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709] boot 2026-02-20T23:02:37.987 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:38.023 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":38,"num_osds":6,"num_up_osds":6,"osd_up_since":1771628557,"num_in_osds":6,"osd_in_since":1771628548,"num_remapped_pgs":1} 2026-02-20T23:02:38.023 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T23:02:38.138 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:38.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial197", "root=default"]}]': finished 2026-02-20T23:02:38.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: osdmap e37: 6 total, 5 up, 6 in 2026-02-20T23:02:38.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: Detected new or changed devices on trial197 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: Adjusting osd_memory_target on trial197 to 44071M 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:38.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:37 trial064 ceph-mon[41740]: osd.5 [v2:10.20.193.197:6808/2860981709,v1:10.20.193.197:6809/2860981709] boot 2026-02-20T23:02:38.365 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:38.365 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":38,"fsid":"fc725b2a-0eaf-11f1-a959-d404e6e7d460","created":"2026-02-20T23:00:58.145698+0000","modified":"2026-02-20T23:02:37.772175+0000","last_up_change":"2026-02-20T23:02:37.772175+0000","last_in_change":"2026-02-20T23:02:28.111677+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-02-20T23:02:11.915445+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":"21","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":"4a4f149a-ac98-4323-b2c1-b3716ca9305a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6802","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6803","nonce":4258638708}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6804","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6805","nonce":4258638708}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6808","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6809","nonce":4258638708}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6806","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6807","nonce":4258638708}]},"public_addr":"10.20.193.4:6803/4258638708","cluster_addr":"10.20.193.4:6805/4258638708","heartbeat_back_addr":"10.20.193.4:6809/4258638708","heartbeat_front_addr":"10.20.193.4:6807/4258638708","state":["exists","up"]},{"osd":1,"uuid":"2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6810","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6811","nonce":2587376709}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6812","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6813","nonce":2587376709}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6816","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6817","nonce":2587376709}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6814","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6815","nonce":2587376709}]},"public_addr":"10.20.193.4:6811/2587376709","cluster_addr":"10.20.193.4:6813/2587376709","heartbeat_back_addr":"10.20.193.4:6817/2587376709","heartbeat_front_addr":"10.20.193.4:6815/2587376709","state":["exists","up"]},{"osd":2,"uuid":"120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":17,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6800","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6801","nonce":4101535043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6802","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6803","nonce":4101535043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6806","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6807","nonce":4101535043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6804","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6805","nonce":4101535043}]},"public_addr":"10.20.193.64:6801/4101535043","cluster_addr":"10.20.193.64:6803/4101535043","heartbeat_back_addr":"10.20.193.64:6807/4101535043","heartbeat_front_addr":"10.20.193.64:6805/4101535043","state":["exists","up"]},{"osd":3,"uuid":"d8a733f5-cfef-4ff6-98a8-8dc3da61af64","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6808","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6809","nonce":3959721248}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6810","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6811","nonce":3959721248}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6814","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6815","nonce":3959721248}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6812","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6813","nonce":3959721248}]},"public_addr":"10.20.193.64:6809/3959721248","cluster_addr":"10.20.193.64:6811/3959721248","heartbeat_back_addr":"10.20.193.64:6815/3959721248","heartbeat_front_addr":"10.20.193.64:6813/3959721248","state":["exists","up"]},{"osd":4,"uuid":"e140a4d2-38d2-43de-8a18-8198ffa850a3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6800","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6801","nonce":3703464497}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6802","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6803","nonce":3703464497}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6806","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6807","nonce":3703464497}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6804","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6805","nonce":3703464497}]},"public_addr":"10.20.193.197:6801/3703464497","cluster_addr":"10.20.193.197:6803/3703464497","heartbeat_back_addr":"10.20.193.197:6807/3703464497","heartbeat_front_addr":"10.20.193.197:6805/3703464497","state":["exists","up"]},{"osd":5,"uuid":"44458e4e-e478-4892-bec0-ab2488b8b241","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6808","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6809","nonce":2860981709}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6810","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6811","nonce":2860981709}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6814","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6815","nonce":2860981709}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6812","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6813","nonce":2860981709}]},"public_addr":"10.20.193.197:6809/2860981709","cluster_addr":"10.20.193.197:6811/2860981709","heartbeat_back_addr":"10.20.193.197:6815/2860981709","heartbeat_front_addr":"10.20.193.197:6813/2860981709","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:01:55.227912+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:02.967873+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:09.260071+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:18.131685+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:26.686793+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"0.000000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[{"pgid":"1.0","osds":[3,2,4]}],"primary_temp":[],"blocklist":{"10.20.193.4:0/1674225611":"2026-02-21T23:01:17.704902+0000","10.20.193.4:6800/2917052009":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1662110017":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1961582059":"2026-02-21T23:01:08.075313+0000","10.20.193.4:0/3800044484":"2026-02-21T23:01:08.075313+0000","10.20.193.4:6801/2401012654":"2026-02-21T23:01:08.075313+0000","10.20.193.4:0/2219573353":"2026-02-21T23:01:17.704902+0000","10.20.193.4:6800/2401012654":"2026-02-21T23:01:08.075313+0000","10.20.193.4:6801/2917052009":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1457748230":"2026-02-21T23:01:08.075313+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-02-20T23:02:38.401 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-20T23:02:11.915445+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': '21', '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-02-20T23:02:38.402 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-20T23:02:38.516 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:38.728 INFO:teuthology.orchestra.run.trial004.stdout:pg_num: 1 2026-02-20T23:02:38.767 INFO:tasks.cephadm:Setting up client nodes... 2026-02-20T23:02:38.767 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: purged_snaps scrub starts 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: osdmap e38: 6 total, 6 up, 6 in 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2065423777' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1161353220' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:38.791 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.792 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.792 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:38 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/111018508' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T23:02:38.883 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:38.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: purged_snaps scrub starts 2026-02-20T23:02:38.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: purged_snaps scrub ok 2026-02-20T23:02:38.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:38.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: osdmap e38: 6 total, 6 up, 6 in 2026-02-20T23:02:38.884 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:38.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/2065423777' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:38.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1161353220' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:38.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:38.885 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:38 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/111018508' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T23:02:39.104 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:39.140 INFO:teuthology.orchestra.run.trial004.stdout:[{"version":16,"timestamp":"2026-02-20T23:02:36.804529+0000","name":"","changes":[{"name":"osd/host:trial197/osd_memory_target","previous_value":"92424884633","new_value":"46212442316"}]}] 2026-02-20T23:02:39.141 INFO:tasks.ceph_manager:config epoch is 16 2026-02-20T23:02:39.141 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-20T23:02:39.141 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-20T23:02:39.141 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: purged_snaps scrub starts 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: osdmap e38: 6 total, 6 up, 6 in 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/2065423777' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1161353220' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:39.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:38 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/111018508' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-20T23:02:39.297 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:39.544 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:39.580 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6800","nonce":291324575},{"type":"v1","addr":"10.20.193.4:6801","nonce":291324575}]},"active_addr":"10.20.193.4:6801/291324575","active_change":"2026-02-20T23:01:17.704997+0000","active_mgr_features":4544132024016699391,"available":true,"standbys":[{"gid":14220,"name":"b","mgr_features":4544132024016699391,"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://10.20.193.4: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":"10.20.193.4:0","nonce":2335808106}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.4:0","nonce":113617587}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.4:0","nonce":2337162075}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.4:0","nonce":3483161556}]}]} 2026-02-20T23:02:39.640 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-20T23:02:39.640 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-20T23:02:39.641 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T23:02:39.759 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:39.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:39 trial004 ceph-mon[39338]: osdmap e39: 6 total, 6 up, 6 in 2026-02-20T23:02:39.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:39 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3505910817' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T23:02:39.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:39 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/482981583' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T23:02:39.971 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:39.971 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":40,"fsid":"fc725b2a-0eaf-11f1-a959-d404e6e7d460","created":"2026-02-20T23:00:58.145698+0000","modified":"2026-02-20T23:02:39.779791+0000","last_up_change":"2026-02-20T23:02:37.772175+0000","last_in_change":"2026-02-20T23:02:28.111677+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-02-20T23:02:11.915445+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":"21","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":"4a4f149a-ac98-4323-b2c1-b3716ca9305a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6802","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6803","nonce":4258638708}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6804","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6805","nonce":4258638708}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6808","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6809","nonce":4258638708}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6806","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6807","nonce":4258638708}]},"public_addr":"10.20.193.4:6803/4258638708","cluster_addr":"10.20.193.4:6805/4258638708","heartbeat_back_addr":"10.20.193.4:6809/4258638708","heartbeat_front_addr":"10.20.193.4:6807/4258638708","state":["exists","up"]},{"osd":1,"uuid":"2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6810","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6811","nonce":2587376709}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6812","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6813","nonce":2587376709}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6816","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6817","nonce":2587376709}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6814","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6815","nonce":2587376709}]},"public_addr":"10.20.193.4:6811/2587376709","cluster_addr":"10.20.193.4:6813/2587376709","heartbeat_back_addr":"10.20.193.4:6817/2587376709","heartbeat_front_addr":"10.20.193.4:6815/2587376709","state":["exists","up"]},{"osd":2,"uuid":"120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":17,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6800","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6801","nonce":4101535043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6802","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6803","nonce":4101535043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6806","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6807","nonce":4101535043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6804","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6805","nonce":4101535043}]},"public_addr":"10.20.193.64:6801/4101535043","cluster_addr":"10.20.193.64:6803/4101535043","heartbeat_back_addr":"10.20.193.64:6807/4101535043","heartbeat_front_addr":"10.20.193.64:6805/4101535043","state":["exists","up"]},{"osd":3,"uuid":"d8a733f5-cfef-4ff6-98a8-8dc3da61af64","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6808","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6809","nonce":3959721248}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6810","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6811","nonce":3959721248}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6814","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6815","nonce":3959721248}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6812","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6813","nonce":3959721248}]},"public_addr":"10.20.193.64:6809/3959721248","cluster_addr":"10.20.193.64:6811/3959721248","heartbeat_back_addr":"10.20.193.64:6815/3959721248","heartbeat_front_addr":"10.20.193.64:6813/3959721248","state":["exists","up"]},{"osd":4,"uuid":"e140a4d2-38d2-43de-8a18-8198ffa850a3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6800","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6801","nonce":3703464497}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6802","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6803","nonce":3703464497}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6806","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6807","nonce":3703464497}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6804","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6805","nonce":3703464497}]},"public_addr":"10.20.193.197:6801/3703464497","cluster_addr":"10.20.193.197:6803/3703464497","heartbeat_back_addr":"10.20.193.197:6807/3703464497","heartbeat_front_addr":"10.20.193.197:6805/3703464497","state":["exists","up"]},{"osd":5,"uuid":"44458e4e-e478-4892-bec0-ab2488b8b241","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6808","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6809","nonce":2860981709}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6810","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6811","nonce":2860981709}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6814","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6815","nonce":2860981709}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6812","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6813","nonce":2860981709}]},"public_addr":"10.20.193.197:6809/2860981709","cluster_addr":"10.20.193.197:6811/2860981709","heartbeat_back_addr":"10.20.193.197:6815/2860981709","heartbeat_front_addr":"10.20.193.197:6813/2860981709","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:01:55.227912+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:02.967873+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:09.260071+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:18.131685+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:26.686793+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:35.815231+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[{"pgid":"1.0","osds":[3,2]}],"primary_temp":[],"blocklist":{"10.20.193.4:0/1674225611":"2026-02-21T23:01:17.704902+0000","10.20.193.4:6800/2917052009":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1662110017":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1961582059":"2026-02-21T23:01:08.075313+0000","10.20.193.4:0/3800044484":"2026-02-21T23:01:08.075313+0000","10.20.193.4:6801/2401012654":"2026-02-21T23:01:08.075313+0000","10.20.193.4:0/2219573353":"2026-02-21T23:01:17.704902+0000","10.20.193.4:6800/2401012654":"2026-02-21T23:01:08.075313+0000","10.20.193.4:6801/2917052009":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1457748230":"2026-02-21T23:01:08.075313+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-02-20T23:02:40.008 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-20T23:02:40.009 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd dump --format=json 2026-02-20T23:02:40.127 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:39 trial197 ceph-mon[42178]: osdmap e39: 6 total, 6 up, 6 in 2026-02-20T23:02:40.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:39 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3505910817' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T23:02:40.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:39 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/482981583' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T23:02:40.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:39 trial064 ceph-mon[41740]: osdmap e39: 6 total, 6 up, 6 in 2026-02-20T23:02:40.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:39 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3505910817' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-20T23:02:40.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:39 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/482981583' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-20T23:02:40.337 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:40.337 INFO:teuthology.orchestra.run.trial004.stdout:{"epoch":40,"fsid":"fc725b2a-0eaf-11f1-a959-d404e6e7d460","created":"2026-02-20T23:00:58.145698+0000","modified":"2026-02-20T23:02:39.779791+0000","last_up_change":"2026-02-20T23:02:37.772175+0000","last_in_change":"2026-02-20T23:02:28.111677+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":14,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":6,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"tentacle","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2026-02-20T23:02:11.915445+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":"21","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":"4a4f149a-ac98-4323-b2c1-b3716ca9305a","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":26,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6802","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6803","nonce":4258638708}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6804","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6805","nonce":4258638708}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6808","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6809","nonce":4258638708}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6806","nonce":4258638708},{"type":"v1","addr":"10.20.193.4:6807","nonce":4258638708}]},"public_addr":"10.20.193.4:6803/4258638708","cluster_addr":"10.20.193.4:6805/4258638708","heartbeat_back_addr":"10.20.193.4:6809/4258638708","heartbeat_front_addr":"10.20.193.4:6807/4258638708","state":["exists","up"]},{"osd":1,"uuid":"2d30fdc8-0b68-4f0a-9e9d-35a1b76ab569","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":13,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6810","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6811","nonce":2587376709}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6812","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6813","nonce":2587376709}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6816","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6817","nonce":2587376709}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.4:6814","nonce":2587376709},{"type":"v1","addr":"10.20.193.4:6815","nonce":2587376709}]},"public_addr":"10.20.193.4:6811/2587376709","cluster_addr":"10.20.193.4:6813/2587376709","heartbeat_back_addr":"10.20.193.4:6817/2587376709","heartbeat_front_addr":"10.20.193.4:6815/2587376709","state":["exists","up"]},{"osd":2,"uuid":"120e22e4-df1c-4fe1-9c0f-dd81a7b61ecf","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":17,"up_thru":19,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6800","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6801","nonce":4101535043}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6802","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6803","nonce":4101535043}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6806","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6807","nonce":4101535043}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6804","nonce":4101535043},{"type":"v1","addr":"10.20.193.64:6805","nonce":4101535043}]},"public_addr":"10.20.193.64:6801/4101535043","cluster_addr":"10.20.193.64:6803/4101535043","heartbeat_back_addr":"10.20.193.64:6807/4101535043","heartbeat_front_addr":"10.20.193.64:6805/4101535043","state":["exists","up"]},{"osd":3,"uuid":"d8a733f5-cfef-4ff6-98a8-8dc3da61af64","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":24,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6808","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6809","nonce":3959721248}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6810","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6811","nonce":3959721248}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6814","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6815","nonce":3959721248}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.64:6812","nonce":3959721248},{"type":"v1","addr":"10.20.193.64:6813","nonce":3959721248}]},"public_addr":"10.20.193.64:6809/3959721248","cluster_addr":"10.20.193.64:6811/3959721248","heartbeat_back_addr":"10.20.193.64:6815/3959721248","heartbeat_front_addr":"10.20.193.64:6813/3959721248","state":["exists","up"]},{"osd":4,"uuid":"e140a4d2-38d2-43de-8a18-8198ffa850a3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":31,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6800","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6801","nonce":3703464497}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6802","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6803","nonce":3703464497}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6806","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6807","nonce":3703464497}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6804","nonce":3703464497},{"type":"v1","addr":"10.20.193.197:6805","nonce":3703464497}]},"public_addr":"10.20.193.197:6801/3703464497","cluster_addr":"10.20.193.197:6803/3703464497","heartbeat_back_addr":"10.20.193.197:6807/3703464497","heartbeat_front_addr":"10.20.193.197:6805/3703464497","state":["exists","up"]},{"osd":5,"uuid":"44458e4e-e478-4892-bec0-ab2488b8b241","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":38,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6808","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6809","nonce":2860981709}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6810","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6811","nonce":2860981709}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6814","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6815","nonce":2860981709}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.197:6812","nonce":2860981709},{"type":"v1","addr":"10.20.193.197:6813","nonce":2860981709}]},"public_addr":"10.20.193.197:6809/2860981709","cluster_addr":"10.20.193.197:6811/2860981709","heartbeat_back_addr":"10.20.193.197:6815/2860981709","heartbeat_front_addr":"10.20.193.197:6813/2860981709","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:01:55.227912+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:02.967873+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:09.260071+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:18.131685+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:26.686793+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4544132024016699391,"old_weight":0,"last_purged_snaps_scrub":"2026-02-20T23:02:35.815231+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[{"pgid":"1.0","osds":[3,2]}],"primary_temp":[],"blocklist":{"10.20.193.4:0/1674225611":"2026-02-21T23:01:17.704902+0000","10.20.193.4:6800/2917052009":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1662110017":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1961582059":"2026-02-21T23:01:08.075313+0000","10.20.193.4:0/3800044484":"2026-02-21T23:01:08.075313+0000","10.20.193.4:6801/2401012654":"2026-02-21T23:01:08.075313+0000","10.20.193.4:0/2219573353":"2026-02-21T23:01:17.704902+0000","10.20.193.4:6800/2401012654":"2026-02-21T23:01:08.075313+0000","10.20.193.4:6801/2917052009":"2026-02-21T23:01:17.704902+0000","10.20.193.4:0/1457748230":"2026-02-21T23:01:08.075313+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-02-20T23:02:40.375 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-20T23:02:40.375 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-20T23:02:40.376 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-20T23:02:40.376 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph tell osd.3 flush_pg_stats 2026-02-20T23:02:40.376 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph tell osd.4 flush_pg_stats 2026-02-20T23:02:40.376 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph tell osd.5 flush_pg_stats 2026-02-20T23:02:40.499 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.500 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.501 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.501 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.503 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.507 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.678 INFO:teuthology.orchestra.run.trial004.stdout:163208757250 2026-02-20T23:02:40.679 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-20T23:02:40.684 INFO:teuthology.orchestra.run.trial004.stdout:55834574858 2026-02-20T23:02:40.685 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-20T23:02:40.686 INFO:teuthology.orchestra.run.trial004.stdout:103079215110 2026-02-20T23:02:40.687 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-20T23:02:40.696 INFO:teuthology.orchestra.run.trial004.stdout:34359738380 2026-02-20T23:02:40.697 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-20T23:02:40.717 INFO:teuthology.orchestra.run.trial004.stdout:133143986181 2026-02-20T23:02:40.718 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-20T23:02:40.739 INFO:teuthology.orchestra.run.trial004.stdout:73014444039 2026-02-20T23:02:40.740 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-20T23:02:40.800 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.834 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.835 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.866 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.903 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:40.905 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:41.035 INFO:teuthology.orchestra.run.trial004.stdout:163208757249 2026-02-20T23:02:41.047 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:40 trial004 ceph-mon[39338]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:41.048 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:40 trial004 ceph-mon[39338]: osdmap e40: 6 total, 6 up, 6 in 2026-02-20T23:02:41.048 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:40 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/490937078' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:41.048 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:40 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3756489098' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:41.069 INFO:teuthology.orchestra.run.trial004.stdout:103079215108 2026-02-20T23:02:41.070 INFO:teuthology.orchestra.run.trial004.stdout:55834574856 2026-02-20T23:02:41.079 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757250 got 163208757249 for osd.5 2026-02-20T23:02:41.083 INFO:teuthology.orchestra.run.trial004.stdout:34359738379 2026-02-20T23:02:41.118 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574858 got 55834574856 for osd.1 2026-02-20T23:02:41.120 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215110 got 103079215108 for osd.3 2026-02-20T23:02:41.129 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738380 got 34359738379 for osd.0 2026-02-20T23:02:41.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:40 trial197 ceph-mon[42178]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:41.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:40 trial197 ceph-mon[42178]: osdmap e40: 6 total, 6 up, 6 in 2026-02-20T23:02:41.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:40 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/490937078' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:41.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:40 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3756489098' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:41.141 INFO:teuthology.orchestra.run.trial004.stdout:133143986180 2026-02-20T23:02:41.142 INFO:teuthology.orchestra.run.trial004.stdout:73014444038 2026-02-20T23:02:41.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:40 trial064 ceph-mon[41740]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:41.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:40 trial064 ceph-mon[41740]: osdmap e40: 6 total, 6 up, 6 in 2026-02-20T23:02:41.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:40 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/490937078' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:41.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:40 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3756489098' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-20T23:02:41.185 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986181 got 133143986180 for osd.4 2026-02-20T23:02:41.186 INFO:tasks.cephadm.ceph_manager.ceph:need seq 73014444039 got 73014444038 for osd.2 2026-02-20T23:02:42.080 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: osdmap e41: 6 total, 6 up, 6 in 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/255232810' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2505943050' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3290563179' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3419304119' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1227161767' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:02:42.103 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:41 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3761431454' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:02:42.120 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-20T23:02:42.120 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-20T23:02:42.130 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: osdmap e41: 6 total, 6 up, 6 in 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/255232810' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/2505943050' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3290563179' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3419304119' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1227161767' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:02:42.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:41 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3761431454' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:02:42.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: osdmap e41: 6 total, 6 up, 6 in 2026-02-20T23:02:42.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/255232810' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:02:42.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/2505943050' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:02:42.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3290563179' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:02:42.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3419304119' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:02:42.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1227161767' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:02:42.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:41 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3761431454' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:02:42.186 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-20T23:02:42.187 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-20T23:02:42.199 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.234 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.236 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.286 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.319 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.320 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.431 INFO:teuthology.orchestra.run.trial004.stdout:163208757250 2026-02-20T23:02:42.470 INFO:teuthology.orchestra.run.trial004.stdout:55834574858 2026-02-20T23:02:42.471 INFO:teuthology.orchestra.run.trial004.stdout:103079215110 2026-02-20T23:02:42.472 INFO:tasks.cephadm.ceph_manager.ceph:need seq 163208757250 got 163208757250 for osd.5 2026-02-20T23:02:42.472 DEBUG:teuthology.parallel:result is None 2026-02-20T23:02:42.512 INFO:tasks.cephadm.ceph_manager.ceph:need seq 103079215110 got 103079215110 for osd.3 2026-02-20T23:02:42.513 DEBUG:teuthology.parallel:result is None 2026-02-20T23:02:42.513 INFO:tasks.cephadm.ceph_manager.ceph:need seq 55834574858 got 55834574858 for osd.1 2026-02-20T23:02:42.513 DEBUG:teuthology.parallel:result is None 2026-02-20T23:02:42.520 INFO:teuthology.orchestra.run.trial004.stdout:34359738380 2026-02-20T23:02:42.533 INFO:teuthology.orchestra.run.trial004.stdout:73014444040 2026-02-20T23:02:42.541 INFO:teuthology.orchestra.run.trial004.stdout:133143986181 2026-02-20T23:02:42.562 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738380 got 34359738380 for osd.0 2026-02-20T23:02:42.562 DEBUG:teuthology.parallel:result is None 2026-02-20T23:02:42.575 INFO:tasks.cephadm.ceph_manager.ceph:need seq 73014444039 got 73014444040 for osd.2 2026-02-20T23:02:42.576 DEBUG:teuthology.parallel:result is None 2026-02-20T23:02:42.582 INFO:tasks.cephadm.ceph_manager.ceph:need seq 133143986181 got 133143986181 for osd.4 2026-02-20T23:02:42.582 DEBUG:teuthology.parallel:result is None 2026-02-20T23:02:42.582 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-20T23:02:42.583 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:02:42.739 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:42.944 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: pgmap v73: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 144 KiB/s, 0 objects/s recovering 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: osdmap e42: 6 total, 6 up, 6 in 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/53908997' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1508937479' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1895613151' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/3069515105' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2222612069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:02:42.945 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:42 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1431321877' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:02:42.951 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:42.951 INFO:teuthology.orchestra.run.trial004.stderr:dumped all 2026-02-20T23:02:42.989 INFO:teuthology.orchestra.run.trial004.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-20T23:02:41.789211+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":132,"ondisk_log_size":132,"up":3,"acting":2,"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":4404019200,"kb_used":165684,"kb_used_data":3900,"kb_used_omap":90,"kb_used_meta":161573,"kb_avail":4403853516,"statfs":{"total":4509715660800,"available":4509546000384,"internally_reserved":0,"allocated":3993600,"data_stored":2607938,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":92398,"internal_metadata":165451538},"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":590368,"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.015613"},"pg_stats":[{"pgid":"1.0","version":"20'132","reported_seq":232,"reported_epoch":40,"state":"active+undersized+remapped","last_fresh":"2026-02-20T23:02:39.854635+0000","last_change":"2026-02-20T23:02:39.854777+0000","last_active":"2026-02-20T23:02:39.854635+0000","last_peered":"2026-02-20T23:02:39.854635+0000","last_clean":"2026-02-20T23:02:35.773022+0000","last_became_active":"2026-02-20T23:02:39.851281+0000","last_became_peered":"2026-02-20T23:02:39.851281+0000","last_unstale":"2026-02-20T23:02:39.854635+0000","last_undegraded":"2026-02-20T23:02:39.854635+0000","last_fullsized":"2026-02-20T23:02:39.782953+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":35,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_clean_scrub_stamp":"2026-02-20T23:02:11.970858+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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":"no scrub is scheduled","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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,2],"avail_no_missing":["3","2","4","5"],"object_location_counts":[{"shards":"2,3","objects":2}],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":2,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757250,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4865,"internal_metadata":27585791},"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":31,"seq":133143986181,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27896,"kb_used_data":932,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975304,"statfs":{"total":751619276800,"available":751590711296,"internally_reserved":0,"allocated":954368,"data_stored":726667,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,2,3],"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":24,"seq":103079215110,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27908,"kb_used_data":944,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975292,"statfs":{"total":751619276800,"available":751590699008,"internally_reserved":0,"allocated":966656,"data_stored":731429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":14643,"internal_metadata":27576013},"hb_peers":[0,1,2,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":2,"up_from":17,"seq":73014444040,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27920,"kb_used_data":956,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975280,"statfs":{"total":751619276800,"available":751590686720,"internally_reserved":0,"allocated":978944,"data_stored":736183,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":13,"seq":55834574858,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":20504,"internal_metadata":27570152},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738380,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27328,"kb_used_data":364,"kb_used_omap":22,"kb_used_meta":26921,"kb_avail":733975872,"statfs":{"total":751619276800,"available":751591292928,"internally_reserved":0,"allocated":372736,"data_stored":141061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":23108,"internal_metadata":27567548},"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T23:02:42.990 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:02:43.104 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: pgmap v73: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 144 KiB/s, 0 objects/s recovering 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: osdmap e42: 6 total, 6 up, 6 in 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/53908997' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1508937479' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1895613151' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/3069515105' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/2222612069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:02:43.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:42 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1431321877' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: pgmap v73: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 144 KiB/s, 0 objects/s recovering 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: osdmap e42: 6 total, 6 up, 6 in 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/53908997' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1508937479' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1895613151' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/3069515105' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-20T23:02:43.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/2222612069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-20T23:02:43.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:42 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1431321877' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-20T23:02:43.315 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:43.316 INFO:teuthology.orchestra.run.trial004.stderr:dumped all 2026-02-20T23:02:43.351 INFO:teuthology.orchestra.run.trial004.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-20T23:02:41.789211+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":132,"ondisk_log_size":132,"up":3,"acting":2,"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":4404019200,"kb_used":165684,"kb_used_data":3900,"kb_used_omap":90,"kb_used_meta":161573,"kb_avail":4403853516,"statfs":{"total":4509715660800,"available":4509546000384,"internally_reserved":0,"allocated":3993600,"data_stored":2607938,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":92398,"internal_metadata":165451538},"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":590368,"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.015613"},"pg_stats":[{"pgid":"1.0","version":"20'132","reported_seq":232,"reported_epoch":40,"state":"active+undersized+remapped","last_fresh":"2026-02-20T23:02:39.854635+0000","last_change":"2026-02-20T23:02:39.854777+0000","last_active":"2026-02-20T23:02:39.854635+0000","last_peered":"2026-02-20T23:02:39.854635+0000","last_clean":"2026-02-20T23:02:35.773022+0000","last_became_active":"2026-02-20T23:02:39.851281+0000","last_became_peered":"2026-02-20T23:02:39.851281+0000","last_unstale":"2026-02-20T23:02:39.854635+0000","last_undegraded":"2026-02-20T23:02:39.854635+0000","last_fullsized":"2026-02-20T23:02:39.782953+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":35,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_clean_scrub_stamp":"2026-02-20T23:02:11.970858+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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":"no scrub is scheduled","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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,2],"avail_no_missing":["3","2","4","5"],"object_location_counts":[{"shards":"2,3","objects":2}],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":2,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757250,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4865,"internal_metadata":27585791},"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":31,"seq":133143986181,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27896,"kb_used_data":932,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975304,"statfs":{"total":751619276800,"available":751590711296,"internally_reserved":0,"allocated":954368,"data_stored":726667,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,2,3],"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":24,"seq":103079215110,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27908,"kb_used_data":944,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975292,"statfs":{"total":751619276800,"available":751590699008,"internally_reserved":0,"allocated":966656,"data_stored":731429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":14643,"internal_metadata":27576013},"hb_peers":[0,1,2,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":2,"up_from":17,"seq":73014444040,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27920,"kb_used_data":956,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975280,"statfs":{"total":751619276800,"available":751590686720,"internally_reserved":0,"allocated":978944,"data_stored":736183,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":13,"seq":55834574858,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":20504,"internal_metadata":27570152},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738380,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27328,"kb_used_data":364,"kb_used_omap":22,"kb_used_meta":26921,"kb_avail":733975872,"statfs":{"total":751619276800,"available":751591292928,"internally_reserved":0,"allocated":372736,"data_stored":141061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":23108,"internal_metadata":27567548},"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T23:02:43.353 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:02:43.468 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:43.684 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:43.684 INFO:teuthology.orchestra.run.trial004.stderr:dumped all 2026-02-20T23:02:43.721 INFO:teuthology.orchestra.run.trial004.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-20T23:02:41.789211+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":132,"ondisk_log_size":132,"up":3,"acting":2,"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":4404019200,"kb_used":165684,"kb_used_data":3900,"kb_used_omap":90,"kb_used_meta":161573,"kb_avail":4403853516,"statfs":{"total":4509715660800,"available":4509546000384,"internally_reserved":0,"allocated":3993600,"data_stored":2607938,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":92398,"internal_metadata":165451538},"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":590368,"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.015613"},"pg_stats":[{"pgid":"1.0","version":"20'132","reported_seq":232,"reported_epoch":40,"state":"active+undersized+remapped","last_fresh":"2026-02-20T23:02:39.854635+0000","last_change":"2026-02-20T23:02:39.854777+0000","last_active":"2026-02-20T23:02:39.854635+0000","last_peered":"2026-02-20T23:02:39.854635+0000","last_clean":"2026-02-20T23:02:35.773022+0000","last_became_active":"2026-02-20T23:02:39.851281+0000","last_became_peered":"2026-02-20T23:02:39.851281+0000","last_unstale":"2026-02-20T23:02:39.854635+0000","last_undegraded":"2026-02-20T23:02:39.854635+0000","last_fullsized":"2026-02-20T23:02:39.782953+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":35,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_clean_scrub_stamp":"2026-02-20T23:02:11.970858+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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":"no scrub is scheduled","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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,2],"avail_no_missing":["3","2","4","5"],"object_location_counts":[{"shards":"2,3","objects":2}],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":2,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757250,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4865,"internal_metadata":27585791},"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":31,"seq":133143986181,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27896,"kb_used_data":932,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975304,"statfs":{"total":751619276800,"available":751590711296,"internally_reserved":0,"allocated":954368,"data_stored":726667,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,2,3],"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":24,"seq":103079215110,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27908,"kb_used_data":944,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975292,"statfs":{"total":751619276800,"available":751590699008,"internally_reserved":0,"allocated":966656,"data_stored":731429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":14643,"internal_metadata":27576013},"hb_peers":[0,1,2,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":2,"up_from":17,"seq":73014444040,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27920,"kb_used_data":956,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975280,"statfs":{"total":751619276800,"available":751590686720,"internally_reserved":0,"allocated":978944,"data_stored":736183,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":13,"seq":55834574858,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":20504,"internal_metadata":27570152},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738380,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27328,"kb_used_data":364,"kb_used_omap":22,"kb_used_meta":26921,"kb_avail":733975872,"statfs":{"total":751619276800,"available":751591292928,"internally_reserved":0,"allocated":372736,"data_stored":141061,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":23108,"internal_metadata":27567548},"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T23:02:43.722 INFO:tasks.cephadm.ceph_manager.ceph:PG 1.0 is not active+clean 2026-02-20T23:02:43.722 INFO:tasks.cephadm.ceph_manager.ceph:{'pgid': '1.0', 'version': "20'132", 'reported_seq': 232, 'reported_epoch': 40, 'state': 'active+undersized+remapped', 'last_fresh': '2026-02-20T23:02:39.854635+0000', 'last_change': '2026-02-20T23:02:39.854777+0000', 'last_active': '2026-02-20T23:02:39.854635+0000', 'last_peered': '2026-02-20T23:02:39.854635+0000', 'last_clean': '2026-02-20T23:02:35.773022+0000', 'last_became_active': '2026-02-20T23:02:39.851281+0000', 'last_became_peered': '2026-02-20T23:02:39.851281+0000', 'last_unstale': '2026-02-20T23:02:39.854635+0000', 'last_undegraded': '2026-02-20T23:02:39.854635+0000', 'last_fullsized': '2026-02-20T23:02:39.782953+0000', 'mapping_epoch': 39, 'log_start': "0'0", 'ondisk_log_start': "0'0", 'created': 19, 'last_epoch_clean': 35, 'parent': '0.0', 'parent_split_bits': 0, 'last_scrub': "0'0", 'last_scrub_stamp': '2026-02-20T23:02:11.970858+0000', 'last_deep_scrub': "0'0", 'last_deep_scrub_stamp': '2026-02-20T23:02:11.970858+0000', 'last_clean_scrub_stamp': '2026-02-20T23:02:11.970858+0000', 'objects_scrubbed': 0, 'log_size': 132, 'log_dups_size': 0, 'ondisk_log_size': 132, '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': 'no scrub is scheduled', 'scrub_duration': 0, 'objects_trimmed': 0, 'snaptrim_duration': 0, 'stat_sum': {'num_bytes': 590368, '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': 96, 'num_read_kb': 82, 'num_write': 167, 'num_write_kb': 3194, 'num_scrub_errors': 0, 'num_shallow_scrub_errors': 0, 'num_deep_scrub_errors': 0, 'num_objects_recovered': 6, 'num_bytes_recovered': 1771104, '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, 2], 'avail_no_missing': ['3', '2', '4', '5'], 'object_location_counts': [{'shards': '2,3', 'objects': 2}], 'blocked_by': [], 'up_primary': 3, 'acting_primary': 3, 'purged_snaps': []} 2026-02-20T23:02:43.722 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph status --format=json 2026-02-20T23:02:43.838 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:44.092 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:44.092 INFO:teuthology.orchestra.run.trial004.stdout:{"fsid":"fc725b2a-0eaf-11f1-a959-d404e6e7d460","health":{"status":"HEALTH_OK","checks":{},"mutes":[]},"election_epoch":14,"quorum":[0,1,2],"quorum_names":["a","c","b"],"quorum_age":62,"monmap":{"epoch":3,"min_mon_release_name":"tentacle","num_mons":3},"osdmap":{"epoch":42,"num_osds":6,"num_up_osds":6,"osd_up_since":1771628557,"num_in_osds":6,"osd_in_since":1771628548,"num_remapped_pgs":0},"pgmap":{"pgs_by_state":[{"state_name":"active+undersized+remapped","count":1}],"num_pgs":1,"num_pools":1,"num_objects":2,"data_bytes":590368,"bytes_used":170303488,"bytes_avail":4509545357312,"bytes_total":4509715660800,"recovering_objects_per_sec":0,"recovering_bytes_per_sec":119576,"recovering_keys_per_sec":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0},"fsmap":{"epoch":1,"btime":"2026-02-20T23:00:58:145493+0000","by_rank":[],"up:standby":0},"mgrmap":{"available":true,"num_standbys":1,"modules":["cephadm","dashboard","iostat","nfs"],"services":{"dashboard":"https://10.20.193.4:8443/"}},"servicemap":{"epoch":3,"modified":"2026-02-20T23:02:39.716570+0000","services":{"mgr":{"daemons":{"summary":"","b":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}}}},"mon":{"daemons":{"summary":"","b":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}}}},"osd":{"daemons":{"summary":"","0":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}},"1":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}},"2":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}},"3":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}},"4":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}},"5":{"start_epoch":0,"start_stamp":"0.000000","gid":0,"addr":"(unrecognized address family 0)/0","metadata":{},"task_status":{}}}}}},"progress_events":{}} 2026-02-20T23:02:44.092 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:43 trial004 ceph-mon[39338]: from='client.14541 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:44.130 INFO:tasks.cephadm.ceph_manager.ceph:making progress, resetting timeout 2026-02-20T23:02:44.130 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:02:44.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:43 trial197 ceph-mon[42178]: from='client.14541 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:44.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:43 trial064 ceph-mon[41740]: from='client.14541 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:44.248 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:44.456 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:44.457 INFO:teuthology.orchestra.run.trial004.stderr:dumped all 2026-02-20T23:02:44.509 INFO:teuthology.orchestra.run.trial004.stdout:{"pg_ready":true,"pg_map":{"version":75,"stamp":"2026-02-20T23:02:43.717149+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":132,"ondisk_log_size":132,"up":3,"acting":2,"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":4404019200,"kb_used":166312,"kb_used_data":4528,"kb_used_omap":92,"kb_used_meta":161571,"kb_avail":4403852888,"statfs":{"total":4509715660800,"available":4509545357312,"internally_reserved":0,"allocated":4636672,"data_stored":3217309,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":95009,"internal_metadata":165448927},"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":590368,"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.937156"},"pg_stats":[{"pgid":"1.0","version":"20'132","reported_seq":232,"reported_epoch":40,"state":"active+undersized+remapped","last_fresh":"2026-02-20T23:02:39.854635+0000","last_change":"2026-02-20T23:02:39.854777+0000","last_active":"2026-02-20T23:02:39.854635+0000","last_peered":"2026-02-20T23:02:39.854635+0000","last_clean":"2026-02-20T23:02:35.773022+0000","last_became_active":"2026-02-20T23:02:39.851281+0000","last_became_peered":"2026-02-20T23:02:39.851281+0000","last_unstale":"2026-02-20T23:02:39.854635+0000","last_undegraded":"2026-02-20T23:02:39.854635+0000","last_fullsized":"2026-02-20T23:02:39.782953+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":35,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_clean_scrub_stamp":"2026-02-20T23:02:11.970858+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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":"no scrub is scheduled","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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,2],"avail_no_missing":["3","2","4","5"],"object_location_counts":[{"shards":"2,3","objects":2}],"blocked_by":[],"up_primary":3,"acting_primary":3,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":2,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757251,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27932,"kb_used_data":968,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733975268,"statfs":{"total":751619276800,"available":751590674432,"internally_reserved":0,"allocated":991232,"data_stored":740916,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"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":31,"seq":133143986181,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27896,"kb_used_data":932,"kb_used_omap":9,"kb_used_meta":26934,"kb_avail":733975304,"statfs":{"total":751619276800,"available":751590711296,"internally_reserved":0,"allocated":954368,"data_stored":726667,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":9425,"internal_metadata":27581231},"hb_peers":[0,1,2,3],"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":24,"seq":103079215110,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27908,"kb_used_data":944,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975292,"statfs":{"total":751619276800,"available":751590699008,"internally_reserved":0,"allocated":966656,"data_stored":731429,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":14643,"internal_metadata":27576013},"hb_peers":[0,1,2,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":2,"up_from":17,"seq":73014444040,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27920,"kb_used_data":956,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975280,"statfs":{"total":751619276800,"available":751590686720,"internally_reserved":0,"allocated":978944,"data_stored":736183,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":13,"seq":55834574858,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27316,"kb_used_data":352,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975884,"statfs":{"total":751619276800,"available":751591305216,"internally_reserved":0,"allocated":360448,"data_stored":136299,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":20504,"internal_metadata":27570152},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738381,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27340,"kb_used_data":376,"kb_used_omap":23,"kb_used_meta":26920,"kb_avail":733975860,"statfs":{"total":751619276800,"available":751591280640,"internally_reserved":0,"allocated":385024,"data_stored":145815,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":23759,"internal_metadata":27566897},"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T23:02:45.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:44 trial197 ceph-mon[42178]: from='client.14547 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:45.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:44 trial197 ceph-mon[42178]: from='client.14553 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:45.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:44 trial197 ceph-mon[42178]: pgmap v75: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 117 KiB/s, 0 objects/s recovering 2026-02-20T23:02:45.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:44 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1172891617' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-20T23:02:45.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:44 trial064 ceph-mon[41740]: from='client.14547 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:44 trial064 ceph-mon[41740]: from='client.14553 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:44 trial064 ceph-mon[41740]: pgmap v75: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 117 KiB/s, 0 objects/s recovering 2026-02-20T23:02:45.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:44 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1172891617' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-20T23:02:45.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:44 trial004 ceph-mon[39338]: from='client.14547 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:45.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:44 trial004 ceph-mon[39338]: from='client.14553 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:45.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:44 trial004 ceph-mon[39338]: pgmap v75: 1 pgs: 1 active+undersized+remapped; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 117 KiB/s, 0 objects/s recovering 2026-02-20T23:02:45.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:44 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1172891617' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-20T23:02:46.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:45 trial197 ceph-mon[42178]: from='client.14565 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:46.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:45 trial064 ceph-mon[41740]: from='client.14565 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:46.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:45 trial004 ceph-mon[39338]: from='client.14565 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:47.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:46 trial197 ceph-mon[42178]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-20T23:02:47.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:46 trial064 ceph-mon[41740]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-20T23:02:47.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:46 trial004 ceph-mon[39338]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-20T23:02:47.511 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph pg dump --format=json 2026-02-20T23:02:47.628 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:47.839 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:47.839 INFO:teuthology.orchestra.run.trial004.stderr:dumped all 2026-02-20T23:02:47.876 INFO:teuthology.orchestra.run.trial004.stdout:{"pg_ready":true,"pg_map":{"version":77,"stamp":"2026-02-20T23:02:47.717731+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":2,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":4404019200,"kb_used":165852,"kb_used_data":4068,"kb_used_omap":99,"kb_used_meta":161564,"kb_avail":4403853348,"statfs":{"total":4509715660800,"available":4509545828352,"internally_reserved":0,"allocated":4165632,"data_stored":2674392,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":101516,"internal_metadata":165442420},"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":590368,"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":"7.936768"},"pg_stats":[{"pgid":"1.0","version":"20'132","reported_seq":243,"reported_epoch":42,"state":"active+clean","last_fresh":"2026-02-20T23:02:41.792057+0000","last_change":"2026-02-20T23:02:41.792002+0000","last_active":"2026-02-20T23:02:41.792057+0000","last_peered":"2026-02-20T23:02:41.792057+0000","last_clean":"2026-02-20T23:02:41.792057+0000","last_became_active":"2026-02-20T23:02:41.791724+0000","last_became_peered":"2026-02-20T23:02:41.791724+0000","last_unstale":"2026-02-20T23:02:41.792057+0000","last_undegraded":"2026-02-20T23:02:41.792057+0000","last_fullsized":"2026-02-20T23:02:41.792057+0000","mapping_epoch":41,"log_start":"0'0","ondisk_log_start":"0'0","created":19,"last_epoch_clean":42,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-20T23:02:11.970858+0000","last_clean_scrub_stamp":"2026-02-20T23:02:11.970858+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"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-02-22T02:37:32.809592+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":590368,"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":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":6,"num_bytes_recovered":1771104,"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":3563520,"data_stored":3542208,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":6}],"osd_stats":[{"osd":5,"up_from":38,"seq":163208757251,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27932,"kb_used_data":968,"kb_used_omap":6,"kb_used_meta":26937,"kb_avail":733975268,"statfs":{"total":751619276800,"available":751590674432,"internally_reserved":0,"allocated":991232,"data_stored":740916,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":6825,"internal_metadata":27583831},"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":31,"seq":133143986182,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27352,"kb_used_data":388,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975848,"statfs":{"total":751619276800,"available":751591268352,"internally_reserved":0,"allocated":397312,"data_stored":150548,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":11375,"internal_metadata":27579281},"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":24,"seq":103079215111,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27932,"kb_used_data":968,"kb_used_omap":15,"kb_used_meta":26928,"kb_avail":733975268,"statfs":{"total":751619276800,"available":751590674432,"internally_reserved":0,"allocated":991232,"data_stored":740916,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":15945,"internal_metadata":27574711},"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":17,"seq":73014444041,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27932,"kb_used_data":968,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975268,"statfs":{"total":751619276800,"available":751590674432,"internally_reserved":0,"allocated":991232,"data_stored":740916,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":20504,"internal_metadata":27570152},"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":13,"seq":55834574859,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27352,"kb_used_data":388,"kb_used_omap":21,"kb_used_meta":26922,"kb_avail":733975848,"statfs":{"total":751619276800,"available":751591268352,"internally_reserved":0,"allocated":397312,"data_stored":150548,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":22457,"internal_metadata":27568199},"hb_peers":[0,2,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":0,"up_from":8,"seq":34359738382,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27352,"kb_used_data":388,"kb_used_omap":23,"kb_used_meta":26920,"kb_avail":733975848,"statfs":{"total":751619276800,"available":751591268352,"internally_reserved":0,"allocated":397312,"data_stored":150548,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":24410,"internal_metadata":27566246},"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"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":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2026-02-20T23:02:47.876 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-20T23:02:47.876 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-20T23:02:47.877 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-20T23:02:47.877 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph health --format=json 2026-02-20T23:02:47.991 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:48.225 INFO:teuthology.orchestra.run.trial004.stdout: 2026-02-20T23:02:48.225 INFO:teuthology.orchestra.run.trial004.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-20T23:02:48.263 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-20T23:02:48.263 INFO:tasks.cephadm:Setup complete, yielding 2026-02-20T23:02:48.263 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-20T23:02:48.275 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial004.front.sepia.ceph.com 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- bash -c 'set -ex 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> for host in $HOSTNAMES; do 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # find the hostname for "host.c" which will have no mgr 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> if [ "$HAS_MGRS" == "false" ]; then 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> HOST_C="${host}" 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> fi 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> done 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # One last thing to worry about before draining the host 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # is that the teuthology test tends to put the explicit 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # hostnames in the placement for the mon service. 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # We want to make sure we can drain without providing 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # --force and there is a check for the host being removed 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # being listed explicitly in the placements. Therefore, 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # we should remove it from the mon placement. 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> ceph orch ls mon --export > mon.yaml 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> ceph orch apply -i mon_adjusted.yaml 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # now drain that host 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> ceph orch host drain $HOST_C --zap-osd-devices 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # wait for drain to complete 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> sleep 15 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> done 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # we want to check the ability to remove the host from 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # the CRUSH map, so we should first verify the host is in 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # the CRUSH map. 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> ceph osd getcrushmap -o compiled-crushmap 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> crushtool -d compiled-crushmap -o crushmap.txt 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> CRUSH_MAP=$(cat crushmap.txt) 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> exit 1 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> fi 2026-02-20T23:02:48.276 DEBUG:teuthology.orchestra.run.trial004:> # If the drain was successful, we should be able to remove the 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> # host without force with no issues. If there are still daemons 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> # we will get a response telling us to drain the host and a 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> # non-zero return code 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> ceph orch host rm $HOST_C --rm-crush-entry 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> sleep 30 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> ceph osd getcrushmap -o compiled-crushmap 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> crushtool -d compiled-crushmap -o crushmap.txt 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> CRUSH_MAP=$(cat crushmap.txt) 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> exit 1 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> fi 2026-02-20T23:02:48.277 DEBUG:teuthology.orchestra.run.trial004:> ' 2026-02-20T23:02:48.393 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:02:48.451 INFO:teuthology.orchestra.run.trial004.stderr:++ ceph orch host ls --format json 2026-02-20T23:02:48.451 INFO:teuthology.orchestra.run.trial004.stderr:++ jq -r '.[] | .hostname' 2026-02-20T23:02:48.612 INFO:teuthology.orchestra.run.trial004.stderr:+ HOSTNAMES='trial004 2026-02-20T23:02:48.613 INFO:teuthology.orchestra.run.trial004.stderr:trial064 2026-02-20T23:02:48.613 INFO:teuthology.orchestra.run.trial004.stderr:trial197' 2026-02-20T23:02:48.613 INFO:teuthology.orchestra.run.trial004.stderr:+ for host in $HOSTNAMES 2026-02-20T23:02:48.613 INFO:teuthology.orchestra.run.trial004.stderr:++ ceph orch ps --hostname trial004 --format json 2026-02-20T23:02:48.613 INFO:teuthology.orchestra.run.trial004.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-20T23:02:48.778 INFO:teuthology.orchestra.run.trial004.stderr:+ HAS_MGRS=true 2026-02-20T23:02:48.778 INFO:teuthology.orchestra.run.trial004.stderr:+ '[' true == false ']' 2026-02-20T23:02:48.778 INFO:teuthology.orchestra.run.trial004.stderr:+ for host in $HOSTNAMES 2026-02-20T23:02:48.778 INFO:teuthology.orchestra.run.trial004.stderr:++ ceph orch ps --hostname trial064 --format json 2026-02-20T23:02:48.778 INFO:teuthology.orchestra.run.trial004.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-20T23:02:48.945 INFO:teuthology.orchestra.run.trial004.stderr:+ HAS_MGRS=true 2026-02-20T23:02:48.945 INFO:teuthology.orchestra.run.trial004.stderr:+ '[' true == false ']' 2026-02-20T23:02:48.945 INFO:teuthology.orchestra.run.trial004.stderr:+ for host in $HOSTNAMES 2026-02-20T23:02:48.945 INFO:teuthology.orchestra.run.trial004.stderr:++ ceph orch ps --hostname trial197 --format json 2026-02-20T23:02:48.945 INFO:teuthology.orchestra.run.trial004.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-20T23:02:49.114 INFO:teuthology.orchestra.run.trial004.stderr:+ HAS_MGRS=false 2026-02-20T23:02:49.114 INFO:teuthology.orchestra.run.trial004.stderr:+ '[' false == false ']' 2026-02-20T23:02:49.115 INFO:teuthology.orchestra.run.trial004.stderr:+ HOST_C=trial197 2026-02-20T23:02:49.115 INFO:teuthology.orchestra.run.trial004.stderr:+ ceph orch ls mon --export 2026-02-20T23:02:49.115 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:48 trial004 ceph-mon[39338]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 73 KiB/s, 0 objects/s recovering 2026-02-20T23:02:49.116 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:48 trial004 ceph-mon[39338]: from='client.14571 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:49.116 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:48 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/1363883189' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T23:02:49.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:48 trial197 ceph-mon[42178]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 73 KiB/s, 0 objects/s recovering 2026-02-20T23:02:49.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:48 trial197 ceph-mon[42178]: from='client.14571 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:49.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:48 trial197 ceph-mon[42178]: from='client.? 10.20.193.4:0/1363883189' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T23:02:49.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:48 trial064 ceph-mon[41740]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 73 KiB/s, 0 objects/s recovering 2026-02-20T23:02:49.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:48 trial064 ceph-mon[41740]: from='client.14571 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:49.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:48 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/1363883189' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-20T23:02:49.280 INFO:teuthology.orchestra.run.trial004.stderr:+ sed /trial197/d mon.yaml 2026-02-20T23:02:49.281 INFO:teuthology.orchestra.run.trial004.stderr:+ ceph orch apply -i mon_adjusted.yaml 2026-02-20T23:02:49.447 INFO:teuthology.orchestra.run.trial004.stdout:Scheduled mon update... 2026-02-20T23:02:49.456 INFO:teuthology.orchestra.run.trial004.stderr:+ ceph orch host drain trial197 --zap-osd-devices 2026-02-20T23:02:49.619 INFO:teuthology.orchestra.run.trial004.stdout:Scheduled to remove the following daemons from host 'trial197' 2026-02-20T23:02:49.619 INFO:teuthology.orchestra.run.trial004.stdout:type id 2026-02-20T23:02:49.620 INFO:teuthology.orchestra.run.trial004.stdout:-------------------- --------------- 2026-02-20T23:02:49.620 INFO:teuthology.orchestra.run.trial004.stdout:mon c 2026-02-20T23:02:49.620 INFO:teuthology.orchestra.run.trial004.stdout:osd 4 2026-02-20T23:02:49.620 INFO:teuthology.orchestra.run.trial004.stdout:osd 5 2026-02-20T23:02:49.628 INFO:teuthology.orchestra.run.trial004.stderr:++ ceph orch ps --hostname trial197 2026-02-20T23:02:49.795 INFO:teuthology.orchestra.run.trial004.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-20T23:02:49.795 INFO:teuthology.orchestra.run.trial004.stderr:mon.c trial197 running (79s) 13s ago 79s 43.0M 2048M 20.2.0-677-gf7870454 191e36ff62c2 847745fb4926 2026-02-20T23:02:49.795 INFO:teuthology.orchestra.run.trial004.stderr:osd.4 trial197 running (24s) 13s ago 27s 35.5M 43.0G 20.2.0-677-gf7870454 191e36ff62c2 961484e7bb1c 2026-02-20T23:02:49.795 INFO:teuthology.orchestra.run.trial004.stderr:osd.5 trial197 running (15s) 13s ago 17s 28.1M 43.0G 20.2.0-677-gf7870454 191e36ff62c2 a7e3912f3387 ' 2026-02-20T23:02:49.795 INFO:teuthology.orchestra.run.trial004.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-20T23:02:49.795 INFO:teuthology.orchestra.run.trial004.stderr:mon.c trial197 running (79s) 13s ago 79s 43.0M 2048M 20.2.0-677-gf7870454 191e36ff62c2 847745fb4926 2026-02-20T23:02:49.796 INFO:teuthology.orchestra.run.trial004.stderr:osd.4 trial197 running (24s) 13s ago 27s 35.5M 43.0G 20.2.0-677-gf7870454 191e36ff62c2 961484e7bb1c 2026-02-20T23:02:49.796 INFO:teuthology.orchestra.run.trial004.stderr:osd.5 trial197 running (15s) 13s ago 17s 28.1M 43.0G 20.2.0-677-gf7870454 191e36ff62c2 a7e3912f3387 ' '!=' 'No daemons reported' ']' 2026-02-20T23:02:49.796 INFO:teuthology.orchestra.run.trial004.stderr:+ sleep 15 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='client.14583 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='client.14589 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial004", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='client.14595 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial064", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:49.964 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-20T23:02:49.965 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:49 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-20T23:02:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='client.14583 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='client.14589 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial004", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='client.14595 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial064", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:50.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:50.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:50.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:50.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:50.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-20T23:02:50.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:49 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-20T23:02:50.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='client.14583 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:50.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='client.14589 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial004", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:50.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='client.14595 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial064", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:50.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:50.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:50.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:50.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:50.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-20T23:02:50.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:49 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='client.14601 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='client.14607 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='client.14613 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: Saving service mon spec with placement trial004:10.20.193.4=a;trial064:10.20.193.64=b;count:3 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='client.14619 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial197", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: Added label _no_schedule to host trial197 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: Added label _no_conf_keyring to host trial197 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: osd.4 crush weight is 0.68359375 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: osd.5 crush weight is 0.68359375 2026-02-20T23:02:51.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='client.14625 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-20T23:02:51.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:50 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-20T23:02:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='client.14601 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='client.14607 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='client.14613 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: Saving service mon spec with placement trial004:10.20.193.4=a;trial064:10.20.193.64=b;count:3 2026-02-20T23:02:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='client.14619 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial197", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: Added label _no_schedule to host trial197 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: Added label _no_conf_keyring to host trial197 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: osd.4 crush weight is 0.68359375 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: osd.5 crush weight is 0.68359375 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='client.14625 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-20T23:02:51.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:50 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='client.14601 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='client.14607 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='client.14613 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: Saving service mon spec with placement trial004:10.20.193.4=a;trial064:10.20.193.64=b;count:3 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='client.14619 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial197", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: Added label _no_schedule to host trial197 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: Added label _no_conf_keyring to host trial197 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: osd.4 crush weight is 0.68359375 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: osd.5 crush weight is 0.68359375 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='client.14625 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-20T23:02:51.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:50 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-20T23:02:51.818 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a[39334]: 2026-02-20T23:02:51.526+0000 7fa47a842640 -1 mon.a@0(leader).osd e43 definitely_dead 0 2026-02-20T23:02:52.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: Removing trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:52.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: Removing trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:02:52.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: Removing trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:02:52.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: osdmap e43: 6 total, 6 up, 6 in 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-20T23:02:52.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:51 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: Removing trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: Removing trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: Removing trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: osdmap e43: 6 total, 6 up, 6 in 2026-02-20T23:02:52.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:52.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-20T23:02:52.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:51 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: Removing trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: Removing trial197:/etc/ceph/ceph.client.admin.keyring 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: Removing trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: osdmap e43: 6 total, 6 up, 6 in 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-20T23:02:52.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:51 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: osd.5 weight is now 0.0 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: osdmap e44: 6 total, 5 up, 6 in 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: Monitor daemon marked osd.4 down, but it is still running 2026-02-20T23:02:52.959 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: map e44 wrongly marked me down at e44 2026-02-20T23:02:52.960 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:52 trial197 ceph-mon[42178]: osd.4 marked itself dead as of e44 2026-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 systemd[1]: Stopping Ceph osd.4 for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4[47491]: 2026-02-20T23:02:52.742+0000 7f28c1e5b640 -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-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4[47491]: 2026-02-20T23:02:52.742+0000 7f28c1e5b640 -1 osd.4 44 *** Got signal Terminated *** 2026-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4[47491]: 2026-02-20T23:02:52.742+0000 7f28c1e5b640 -1 osd.4 44 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 podman[59122]: 2026-02-20 23:02:52.815065361 +0000 UTC m=+0.083400626 container died 961484e7bb1cb7ac9163941eaf493d0654208f7531b134e4fbd7cdf8d9c53bd6 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, OSD_FLAVOR=default, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 podman[59122]: 2026-02-20 23:02:52.823684891 +0000 UTC m=+0.092020156 container remove 961484e7bb1cb7ac9163941eaf493d0654208f7531b134e4fbd7cdf8d9c53bd6 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.license=GPLv2, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS) 2026-02-20T23:02:52.960 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 bash[59122]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4 2026-02-20T23:02:52.961 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 podman[59253]: 2026-02-20 23:02:52.956640779 +0000 UTC m=+0.015182830 container create 4b88ba480cf21582645c90e8868e6afe65e69284d4f67da82888e16027c91eb7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0) 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: osd.5 weight is now 0.0 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: osdmap e44: 6 total, 5 up, 6 in 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: Monitor daemon marked osd.4 down, but it is still running 2026-02-20T23:02:53.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: map e44 wrongly marked me down at e44 2026-02-20T23:02:53.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:52 trial064 ceph-mon[41740]: osd.4 marked itself dead as of e44 2026-02-20T23:02:53.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: osd.5 weight is now 0.0 2026-02-20T23:02:53.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:53.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-20T23:02:53.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-20T23:02:53.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-20T23:02:53.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-20T23:02:53.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: osdmap e44: 6 total, 5 up, 6 in 2026-02-20T23:02:53.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: Monitor daemon marked osd.4 down, but it is still running 2026-02-20T23:02:53.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: map e44 wrongly marked me down at e44 2026-02-20T23:02:53.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:52 trial004 ceph-mon[39338]: osd.4 marked itself dead as of e44 2026-02-20T23:02:53.384 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 podman[59253]: 2026-02-20 23:02:52.983853272 +0000 UTC m=+0.042395323 container init 4b88ba480cf21582645c90e8868e6afe65e69284d4f67da82888e16027c91eb7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4-deactivate, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.license=GPLv2, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default) 2026-02-20T23:02:53.384 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 podman[59253]: 2026-02-20 23:02:52.986836651 +0000 UTC m=+0.045378692 container start 4b88ba480cf21582645c90e8868e6afe65e69284d4f67da82888e16027c91eb7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4-deactivate, OSD_FLAVOR=default, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531) 2026-02-20T23:02:53.385 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:52 trial197 podman[59253]: 2026-02-20 23:02:52.987317757 +0000 UTC m=+0.045859818 container attach 4b88ba480cf21582645c90e8868e6afe65e69284d4f67da82888e16027c91eb7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, ceph=True, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.documentation=https://docs.ceph.com/, 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_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-20T23:02:53.385 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:53 trial197 podman[59253]: 2026-02-20 23:02:52.950884464 +0000 UTC m=+0.009426515 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T23:02:53.385 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:53 trial197 podman[59253]: 2026-02-20 23:02:53.113793722 +0000 UTC m=+0.172335773 container died 4b88ba480cf21582645c90e8868e6afe65e69284d4f67da82888e16027c91eb7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4-deactivate, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, 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, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531) 2026-02-20T23:02:53.385 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:53 trial197 podman[59253]: 2026-02-20 23:02:53.123792382 +0000 UTC m=+0.182334433 container remove 4b88ba480cf21582645c90e8868e6afe65e69284d4f67da82888e16027c91eb7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-4-deactivate, org.label-schema.license=GPLv2, 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.33.7, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, ceph=True) 2026-02-20T23:02:53.385 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:53 trial197 systemd[1]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.4.service: Deactivated successfully. 2026-02-20T23:02:53.385 INFO:journalctl@ceph.osd.4.trial197.stdout:Feb 20 23:02:53 trial197 systemd[1]: Stopped Ceph osd.4 for fc725b2a-0eaf-11f1-a959-d404e6e7d460. 2026-02-20T23:02:54.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: osd.4 now down 2026-02-20T23:02:54.134 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: Removing daemon osd.4 from trial197 -- ports [] 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: Cluster is now healthy 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:02:54.135 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:53 trial197 ceph-mon[42178]: osdmap e45: 5 total, 5 up, 5 in 2026-02-20T23:02:54.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: osd.4 now down 2026-02-20T23:02:54.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: Removing daemon osd.4 from trial197 -- ports [] 2026-02-20T23:02:54.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-20T23:02:54.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-20T23:02:54.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:02:54.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-20T23:02:54.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: Cluster is now healthy 2026-02-20T23:02:54.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:02:54.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:53 trial064 ceph-mon[41740]: osdmap e45: 5 total, 5 up, 5 in 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: osd.4 now down 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: Removing daemon osd.4 from trial197 -- ports [] 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: Cluster is now healthy 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:02:54.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:53 trial004 ceph-mon[39338]: osdmap e45: 5 total, 5 up, 5 in 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: Removing key for osd.4 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: Successfully removed osd.4 on trial197 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: Successfully purged osd.4 on trial197 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: Zapping devices for osd.4 on trial197 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: osdmap e46: 5 total, 5 up, 5 in 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.074 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:54 trial197 ceph-mon[42178]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: Removing key for osd.4 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: Successfully removed osd.4 on trial197 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: Successfully purged osd.4 on trial197 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: Zapping devices for osd.4 on trial197 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: osdmap e46: 5 total, 5 up, 5 in 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.095 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:54 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: Removing key for osd.4 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: Successfully removed osd.4 on trial197 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: Successfully purged osd.4 on trial197 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: Zapping devices for osd.4 on trial197 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: pgmap v83: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: osdmap e46: 5 total, 5 up, 5 in 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:55.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.181 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:54 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:55.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:55 trial197 podman[61437]: 2026-02-20 23:02:55.124003837 +0000 UTC m=+0.011758981 container died 847745fb4926e42bd0a3c93a4dc4b95b3de26b853ef3563438a3c6b73cb1b0b7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-c, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, ceph=True, org.label-schema.license=GPLv2, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.label-schema.schema-version=1.0) 2026-02-20T23:02:55.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:55 trial197 podman[61437]: 2026-02-20 23:02:55.132782033 +0000 UTC m=+0.020537167 container remove 847745fb4926e42bd0a3c93a4dc4b95b3de26b853ef3563438a3c6b73cb1b0b7 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-c, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, OSD_FLAVOR=default, 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 , CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216) 2026-02-20T23:02:55.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:55 trial197 systemd[1]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.c.service: Deactivated successfully. 2026-02-20T23:02:55.385 INFO:journalctl@ceph.mon.c.trial197.stdout:Feb 20 23:02:55 trial197 systemd[1]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.c.service: Consumed 1.150s CPU time. 2026-02-20T23:02:55.444 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:02:55 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 2026-02-20T23:02:55.092+0000 7f8e45b08640 -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-02-20T23:02:57.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: purged_snaps scrub ok 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: Detected new or changed devices on trial197 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: Removing monitor c from monmap... 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: mon.b calling monitor election 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: mon.a calling monitor election 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: monmap epoch 4 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: last_changed 2026-02-20T23:02:55.096755+0000 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: created 2026-02-20T23:00:57.191708+0000 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: min_mon_release 20 (tentacle) 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: election_strategy: 1 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: 0: [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] mon.a 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: 1: [v2:10.20.193.64:3300/0,v1:10.20.193.64:6789/0] mon.b 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: fsmap 2026-02-20T23:02:57.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: osdmap e47: 5 total, 5 up, 5 in 2026-02-20T23:02:57.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: mgrmap e15: a(active, since 99s), standbys: b 2026-02-20T23:02:57.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:57 trial064 ceph-mon[41740]: overall HEALTH_OK 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: purged_snaps scrub ok 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: Detected new or changed devices on trial197 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: Removing monitor c from monmap... 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: mon.b calling monitor election 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: mon.a calling monitor election 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: monmap epoch 4 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:02:57.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: last_changed 2026-02-20T23:02:55.096755+0000 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: created 2026-02-20T23:00:57.191708+0000 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: min_mon_release 20 (tentacle) 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: election_strategy: 1 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: 0: [v2:10.20.193.4:3300/0,v1:10.20.193.4:6789/0] mon.a 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: 1: [v2:10.20.193.64:3300/0,v1:10.20.193.64:6789/0] mon.b 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: fsmap 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: osdmap e47: 5 total, 5 up, 5 in 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: mgrmap e15: a(active, since 99s), standbys: b 2026-02-20T23:02:57.445 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:57 trial004 ceph-mon[39338]: overall HEALTH_OK 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: Removing daemon mon.c from trial197 -- ports [] 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: osdmap e48: 5 total, 5 up, 5 in 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:58.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:58 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: Removing daemon mon.c from trial197 -- ports [] 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: osdmap e48: 5 total, 5 up, 5 in 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:58.982 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:02:58 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 2026-02-20T23:02:58.728+0000 7f8e45b08640 -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-02-20T23:02:59.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: osdmap e49: 5 total, 5 up, 5 in 2026-02-20T23:02:59.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:59.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:59.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: Updating trial004:/etc/ceph/ceph.conf 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: Updating trial064:/etc/ceph/ceph.conf 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:59.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: Reconfiguring mon.a (monmap changed)... 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: Reconfiguring daemon mon.a on trial004 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:02:59.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:02:59.433 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:02:59 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:59.433 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: osdmap e49: 5 total, 5 up, 5 in 2026-02-20T23:02:59.433 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.433 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.433 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:59.433 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: Updating trial004:/etc/ceph/ceph.conf 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: Updating trial064:/etc/ceph/ceph.conf 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: Updating trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: Updating trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/config/ceph.conf 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:02:59.434 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: Reconfiguring mon.a (monmap changed)... 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: Reconfiguring daemon mon.a on trial004 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:02:59.435 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:02:59.436 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:02:59.436 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:02:59 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring mgr.a (monmap changed)... 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring daemon mgr.a on trial004 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring osd.0 (monmap changed)... 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring daemon osd.0 on trial004 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring osd.1 (monmap changed)... 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring daemon osd.1 on trial004 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: pgmap v90: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:03:00.274 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring mgr.a (monmap changed)... 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring daemon mgr.a on trial004 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring osd.0 (monmap changed)... 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.472 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring daemon osd.0 on trial004 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring osd.1 (monmap changed)... 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring daemon osd.1 on trial004 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: pgmap v90: 1 pgs: 1 remapped+peering; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring mon.b (monmap changed)... 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:03:00.473 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: Reconfiguring daemon mon.b on trial064 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:03:00.474 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:00 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring mon.b (monmap changed)... 2026-02-20T23:03:00.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: Reconfiguring daemon mon.b on trial064 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-20T23:03:00.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:00 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring mgr.b (monmap changed)... 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring daemon mgr.b on trial064 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring osd.2 (monmap changed)... 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring daemon osd.2 on trial064 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring osd.3 (monmap changed)... 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring daemon osd.3 on trial064 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring osd.5 (monmap changed)... 2026-02-20T23:03:01.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:03:01.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: Reconfiguring daemon osd.5 on trial197 2026-02-20T23:03:01.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.681 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:01 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring mgr.b (monmap changed)... 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring daemon mgr.b on trial064 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring osd.2 (monmap changed)... 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring daemon osd.2 on trial064 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring osd.3 (monmap changed)... 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring daemon osd.3 on trial064 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring osd.5 (monmap changed)... 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: Reconfiguring daemon osd.5 on trial197 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:01.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:01 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:02.439 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a[39334]: 2026-02-20T23:03:02.127+0000 7fa47a842640 -1 mon.a@0(leader).osd e49 definitely_dead 0 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: pgmap v91: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 86 KiB/s, 0 objects/s recovering 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-20T23:03:02.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:02 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: pgmap v91: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 86 KiB/s, 0 objects/s recovering 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:02.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:03:02.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:03:02.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-20T23:03:02.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-20T23:03:02.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:02 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 systemd[1]: Stopping Ceph osd.5 for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5[53995]: 2026-02-20T23:03:03.341+0000 7f820afd9640 -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-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5[53995]: 2026-02-20T23:03:03.341+0000 7f820afd9640 -1 osd.5 50 *** Got signal Terminated *** 2026-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5[53995]: 2026-02-20T23:03:03.341+0000 7f820afd9640 -1 osd.5 50 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65246]: 2026-02-20 23:03:03.403081252 +0000 UTC m=+0.074130523 container died a7e3912f33876a7227f5d706e75f6048454f23b530a2e4afd6be63c8b3d496c3 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, ceph=True, 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) 2026-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65246]: 2026-02-20 23:03:03.412009067 +0000 UTC m=+0.083058338 container remove a7e3912f33876a7227f5d706e75f6048454f23b530a2e4afd6be63c8b3d496c3 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, ceph=True) 2026-02-20T23:03:03.540 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 bash[65246]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5 2026-02-20T23:03:03.541 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.537762795 +0000 UTC m=+0.015375830 container create c5211081c6f879afbf0fc9fc2713a4534457b785762423021d90e54963fd7368 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5-deactivate, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, 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, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.vendor=CentOS) 2026-02-20T23:03:03.679 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: osdmap e50: 5 total, 4 up, 5 in 2026-02-20T23:03:03.680 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:03 trial064 ceph-mon[41740]: osd.5 marked itself dead as of e50 2026-02-20T23:03:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:03:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-20T23:03:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-20T23:03:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-20T23:03:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-02-20T23:03:03.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-02-20T23:03:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: osdmap e50: 5 total, 4 up, 5 in 2026-02-20T23:03:03.695 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:03 trial004 ceph-mon[39338]: osd.5 marked itself dead as of e50 2026-02-20T23:03:03.884 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.571937932 +0000 UTC m=+0.049550976 container init c5211081c6f879afbf0fc9fc2713a4534457b785762423021d90e54963fd7368 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, ceph=True, io.buildah.version=1.33.7) 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.574305693 +0000 UTC m=+0.051918748 container start c5211081c6f879afbf0fc9fc2713a4534457b785762423021d90e54963fd7368 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, io.buildah.version=1.33.7) 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.574816535 +0000 UTC m=+0.052429579 container attach c5211081c6f879afbf0fc9fc2713a4534457b785762423021d90e54963fd7368 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5-deactivate, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.vendor=CentOS, ceph=True) 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.531264187 +0000 UTC m=+0.008877231 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.697548824 +0000 UTC m=+0.175161878 container died c5211081c6f879afbf0fc9fc2713a4534457b785762423021d90e54963fd7368 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5-deactivate, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.license=GPLv2, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle) 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 podman[65364]: 2026-02-20 23:03:03.707367469 +0000 UTC m=+0.184980513 container remove c5211081c6f879afbf0fc9fc2713a4534457b785762423021d90e54963fd7368 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-5-deactivate, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, 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.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, ceph=True, io.buildah.version=1.33.7, OSD_FLAVOR=default, org.label-schema.vendor=CentOS) 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 systemd[1]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.5.service: Deactivated successfully. 2026-02-20T23:03:03.885 INFO:journalctl@ceph.osd.5.trial197.stdout:Feb 20 23:03:03 trial197 systemd[1]: Stopped Ceph osd.5 for fc725b2a-0eaf-11f1-a959-d404e6e7d460. 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: osd.5 now down 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: Removing daemon osd.5 from trial197 -- ports [] 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: pgmap v93: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 88 KiB/s, 0 objects/s recovering 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: Cluster is now healthy 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:03:04.694 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:04 trial004 ceph-mon[39338]: osdmap e51: 4 total, 4 up, 4 in 2026-02-20T23:03:04.797 INFO:teuthology.orchestra.run.trial004.stderr:++ ceph orch ps --hostname trial197 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: osd.5 now down 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: Removing daemon osd.5 from trial197 -- ports [] 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: pgmap v93: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 88 KiB/s, 0 objects/s recovering 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-20T23:03:04.929 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-02-20T23:03:04.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: Cluster is now healthy 2026-02-20T23:03:04.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-02-20T23:03:04.930 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:04 trial064 ceph-mon[41740]: osdmap e51: 4 total, 4 up, 4 in 2026-02-20T23:03:04.969 INFO:teuthology.orchestra.run.trial004.stderr:+ HOST_C_DAEMONS='No daemons reported' 2026-02-20T23:03:04.969 INFO:teuthology.orchestra.run.trial004.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2026-02-20T23:03:04.969 INFO:teuthology.orchestra.run.trial004.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-02-20T23:03:05.127 INFO:teuthology.orchestra.run.trial004.stderr:17 2026-02-20T23:03:05.135 INFO:teuthology.orchestra.run.trial004.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-02-20T23:03:05.145 INFO:teuthology.orchestra.run.trial004.stderr:++ cat crushmap.txt 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:+ CRUSH_MAP='# begin crush map 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable choose_local_tries 0 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable choose_local_fallback_tries 0 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable choose_total_tries 50 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable chooseleaf_descend_once 1 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable chooseleaf_vary_r 1 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable chooseleaf_stable 1 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable straw_calc_version 1 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:tunable allowed_bucket_algs 54 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:# devices 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:device 0 osd.0 class ssd 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:device 1 osd.1 class ssd 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:device 2 osd.2 class ssd 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:device 3 osd.3 class ssd 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:# types 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 0 osd 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 1 host 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 2 chassis 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 3 rack 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 4 row 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 5 pdu 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 6 pod 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 7 room 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 8 datacenter 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 9 zone 2026-02-20T23:03:05.146 INFO:teuthology.orchestra.run.trial004.stderr:type 10 region 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:type 11 root 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:# buckets 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:host trial004 { 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -3 # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -4 class ssd # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: # weight 1.36719 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item osd.0 weight 0.68359 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item osd.1 weight 0.68359 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:host trial064 { 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -5 # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -6 class ssd # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: # weight 1.36719 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item osd.2 weight 0.68359 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item osd.3 weight 0.68359 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:host trial197 { 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -7 # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -8 class ssd # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: # weight 0.00000 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:root default { 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -1 # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id -2 class ssd # do not change unnecessarily 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: # weight 2.73438 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item trial004 weight 1.36719 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item trial064 weight 1.36719 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: item trial197 weight 0.00000 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:# rules 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr:rule replicated_rule { 2026-02-20T23:03:05.147 INFO:teuthology.orchestra.run.trial004.stderr: id 0 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr: type replicated 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr: step take default 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr: step choose firstn 0 type osd 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr: step emit 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr:# end crush map' 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr:+ grep -q trial197 2026-02-20T23:03:05.148 INFO:teuthology.orchestra.run.trial004.stderr:+ ceph orch host rm trial197 --rm-crush-entry 2026-02-20T23:03:05.939 INFO:teuthology.orchestra.run.trial004.stdout:Removed host 'trial197' 2026-02-20T23:03:05.949 INFO:teuthology.orchestra.run.trial004.stderr:+ sleep 30 2026-02-20T23:03:06.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: Removing key for osd.5 2026-02-20T23:03:06.179 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: Successfully removed osd.5 on trial197 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: Successfully purged osd.5 on trial197 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: Zapping devices for osd.5 on trial197 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: Successfully zapped devices for osd.5 on trial197 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='client.? 10.20.193.4:0/2063935594' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "trial197"} : dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:03:06.180 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:05 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: Removing key for osd.5 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: Successfully removed osd.5 on trial197 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: Successfully purged osd.5 on trial197 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: Zapping devices for osd.5 on trial197 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: Successfully zapped devices for osd.5 on trial197 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:06.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial197", "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='client.? 10.20.193.4:0/2063935594' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "trial197"} : dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 2026-02-20T23:03:05.935+0000 7f8e34aa6640 -1 log_channel(cephadm) log [ERR] : host trial197 `cephadm ceph-volume` failed: Cannot decode JSON: 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: Traceback (most recent call last): 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1623, in _run_cephadm_json 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: return json.loads(''.join(out)) 2026-02-20T23:03:06.195 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: return _default_decoder.decode(s) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: raise JSONDecodeError("Expecting value", s, err.value) from None 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: 2026-02-20T23:03:05.936+0000 7f8e3d2f7640 -1 log_channel(cephadm) log [ERR] : executing refresh((['trial004', 'trial064', 'trial197'],)) failed. 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: Traceback (most recent call last): 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/usr/share/ceph/mgr/cephadm/utils.py", line 98, in do_work 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: return f(*arg) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/usr/share/ceph/mgr/cephadm/serve.py", line 321, in refresh 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 206, in has_label 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: host = self._get_stored_name(host) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 133, in _get_stored_name 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: self.assert_host(host) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 161, in assert_host 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: raise OrchestratorError('host %s does not exist' % host) 2026-02-20T23:03:06.196 INFO:journalctl@ceph.mgr.a.trial004.stdout:Feb 20 23:03:05 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mgr-a[39600]: orchestrator._interface.OrchestratorError: host trial197 does not exist 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "trial197", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: Detected new or changed devices on trial197 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: pgmap v95: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail; 76 KiB/s, 0 objects/s recovering 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "trial197"}]': finished 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: osdmap e52: 4 total, 4 up, 4 in 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:07.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.trial197"} : dispatch 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.trial197"}]': finished 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: host trial197 `cephadm ceph-volume` failed: Cannot decode JSON: 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: Traceback (most recent call last): 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1623, in _run_cephadm_json 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: return json.loads(''.join(out)) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: return _default_decoder.decode(s) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: raise JSONDecodeError("Expecting value", s, err.value) from None 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: Removed host trial197 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: executing refresh((['trial004', 'trial064', 'trial197'],)) failed. 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: Traceback (most recent call last): 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/usr/share/ceph/mgr/cephadm/utils.py", line 98, in do_work 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: return f(*arg) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 321, in refresh 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 206, in has_label 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: host = self._get_stored_name(host) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 133, in _get_stored_name 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: self.assert_host(host) 2026-02-20T23:03:07.195 INFO:journalctl@ceph.mon.a.trial004.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 161, in assert_host 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout: raise OrchestratorError('host %s does not exist' % host) 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout: orchestrator._interface.OrchestratorError: host trial197 does not exist 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:07.196 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:06 trial004 ceph-mon[39338]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:03:07.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "trial197", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-20T23:03:07.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: Detected new or changed devices on trial197 2026-02-20T23:03:07.430 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: pgmap v95: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail; 76 KiB/s, 0 objects/s recovering 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "trial197"}]': finished 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: osdmap e52: 4 total, 4 up, 4 in 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.trial197"} : dispatch 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.trial197"}]': finished 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: host trial197 `cephadm ceph-volume` failed: Cannot decode JSON: 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout: Traceback (most recent call last): 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 1623, in _run_cephadm_json 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout: return json.loads(''.join(out)) 2026-02-20T23:03:07.431 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/lib64/python3.9/json/__init__.py", line 346, in loads 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: return _default_decoder.decode(s) 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/lib64/python3.9/json/decoder.py", line 337, in decode 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: obj, end = self.raw_decode(s, idx=_w(s, 0).end()) 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/lib64/python3.9/json/decoder.py", line 355, in raw_decode 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: raise JSONDecodeError("Expecting value", s, err.value) from None 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: json.decoder.JSONDecodeError: Expecting value: line 1 column 1 (char 0) 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: Removed host trial197 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: executing refresh((['trial004', 'trial064', 'trial197'],)) failed. 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: Traceback (most recent call last): 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/usr/share/ceph/mgr/cephadm/utils.py", line 98, in do_work 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: return f(*arg) 2026-02-20T23:03:07.432 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/usr/share/ceph/mgr/cephadm/serve.py", line 321, in refresh 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: and not self.mgr.inventory.has_label(host, SpecialHostLabels.NO_MEMORY_AUTOTUNE) 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 206, in has_label 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: host = self._get_stored_name(host) 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 133, in _get_stored_name 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: self.assert_host(host) 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: File "/usr/share/ceph/mgr/cephadm/inventory.py", line 161, in assert_host 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: raise OrchestratorError('host %s does not exist' % host) 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout: orchestrator._interface.OrchestratorError: host trial197 does not exist 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-20T23:03:07.433 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' 2026-02-20T23:03:07.434 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:06 trial064 ceph-mon[41740]: from='mgr.14152 10.20.193.4:0/4201939833' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-20T23:03:09.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:08 trial004 ceph-mon[39338]: pgmap v97: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:09.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:08 trial064 ceph-mon[41740]: pgmap v97: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:11.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:10 trial004 ceph-mon[39338]: pgmap v98: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:11.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:10 trial064 ceph-mon[41740]: pgmap v98: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:13.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:12 trial004 ceph-mon[39338]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:13.409 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:12 trial064 ceph-mon[41740]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:15.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:14 trial004 ceph-mon[39338]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:15.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:14 trial064 ceph-mon[41740]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:17.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:16 trial004 ceph-mon[39338]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:17.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:16 trial064 ceph-mon[41740]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:19.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:18 trial004 ceph-mon[39338]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:19.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:18 trial064 ceph-mon[41740]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:21.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:20 trial004 ceph-mon[39338]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:21.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:20 trial064 ceph-mon[41740]: pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:23.194 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:22 trial004 ceph-mon[39338]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:23.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:22 trial064 ceph-mon[41740]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:25.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:24 trial064 ceph-mon[41740]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:25.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:24 trial004 ceph-mon[39338]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:27.231 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:26 trial064 ceph-mon[41740]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:27.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:26 trial004 ceph-mon[39338]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:29.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:28 trial064 ceph-mon[41740]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:29.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:28 trial004 ceph-mon[39338]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:31.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:30 trial064 ceph-mon[41740]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:31.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:30 trial004 ceph-mon[39338]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:33.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:32 trial064 ceph-mon[41740]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:33.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:32 trial004 ceph-mon[39338]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:35.429 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:34 trial064 ceph-mon[41740]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:35.444 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:34 trial004 ceph-mon[39338]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-20T23:03:35.952 INFO:teuthology.orchestra.run.trial004.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-02-20T23:03:36.109 INFO:teuthology.orchestra.run.trial004.stderr:18 2026-02-20T23:03:36.116 INFO:teuthology.orchestra.run.trial004.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-02-20T23:03:36.126 INFO:teuthology.orchestra.run.trial004.stderr:++ cat crushmap.txt 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:+ CRUSH_MAP='# begin crush map 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable choose_local_tries 0 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable choose_local_fallback_tries 0 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable choose_total_tries 50 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable chooseleaf_descend_once 1 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable chooseleaf_vary_r 1 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable chooseleaf_stable 1 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable straw_calc_version 1 2026-02-20T23:03:36.127 INFO:teuthology.orchestra.run.trial004.stderr:tunable allowed_bucket_algs 54 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:# devices 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:device 0 osd.0 class ssd 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:device 1 osd.1 class ssd 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:device 2 osd.2 class ssd 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:device 3 osd.3 class ssd 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:# types 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:type 0 osd 2026-02-20T23:03:36.128 INFO:teuthology.orchestra.run.trial004.stderr:type 1 host 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 2 chassis 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 3 rack 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 4 row 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 5 pdu 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 6 pod 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 7 room 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 8 datacenter 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 9 zone 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 10 region 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:type 11 root 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:36.129 INFO:teuthology.orchestra.run.trial004.stderr:# buckets 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr:host trial004 { 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: id -3 # do not change unnecessarily 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: id -4 class ssd # do not change unnecessarily 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: # weight 1.36719 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: item osd.0 weight 0.68359 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: item osd.1 weight 0.68359 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr:host trial064 { 2026-02-20T23:03:36.130 INFO:teuthology.orchestra.run.trial004.stderr: id -5 # do not change unnecessarily 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: id -6 class ssd # do not change unnecessarily 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: # weight 1.36719 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: item osd.2 weight 0.68359 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: item osd.3 weight 0.68359 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr:root default { 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: id -1 # do not change unnecessarily 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: id -2 class ssd # do not change unnecessarily 2026-02-20T23:03:36.131 INFO:teuthology.orchestra.run.trial004.stderr: # weight 2.73438 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: alg straw2 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: hash 0 # rjenkins1 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: item trial004 weight 1.36719 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: item trial064 weight 1.36719 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr:# rules 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr:rule replicated_rule { 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: id 0 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: type replicated 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: step take default 2026-02-20T23:03:36.132 INFO:teuthology.orchestra.run.trial004.stderr: step choose firstn 0 type osd 2026-02-20T23:03:36.133 INFO:teuthology.orchestra.run.trial004.stderr: step emit 2026-02-20T23:03:36.133 INFO:teuthology.orchestra.run.trial004.stderr:} 2026-02-20T23:03:36.133 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:03:36.133 INFO:teuthology.orchestra.run.trial004.stderr:# end crush map' 2026-02-20T23:03:36.133 INFO:teuthology.orchestra.run.trial004.stderr:+ grep -q trial197 2026-02-20T23:03:36.179 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-20T23:03:36.189 INFO:tasks.cephadm:Teardown begin 2026-02-20T23:03:36.189 DEBUG:teuthology.orchestra.run.trial004:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:03:36.217 DEBUG:teuthology.orchestra.run.trial064:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:03:36.246 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:03:36.276 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-20T23:03:36.277 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-20T23:03:36.393 INFO:teuthology.orchestra.run.trial004.stderr:Inferring config /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/mon.a/config 2026-02-20T23:03:36.411 INFO:teuthology.orchestra.run.trial004.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-20T23:03:36.427 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-20T23:03:36.428 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-20T23:03:36.428 DEBUG:teuthology.orchestra.run.trial004:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:03:36.444 DEBUG:teuthology.orchestra.run.trial064:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:03:36.463 DEBUG:teuthology.orchestra.run.trial197:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-20T23:03:36.480 INFO:tasks.cephadm:Stopping all daemons... 2026-02-20T23:03:36.481 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2026-02-20T23:03:36.481 DEBUG:teuthology.orchestra.run.trial004:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a 2026-02-20T23:03:36.758 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:36 trial004 systemd[1]: Stopping Ceph mon.a for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:36.758 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:36 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a[39334]: 2026-02-20T23:03:36.580+0000 7fa48004d640 -1 received signal: Terminated from /run/podman-init -- /usr/bin/ceph-mon -n mon.a -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-journald=true --default-log-to-stderr=false --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-journald=true --default-mon-cluster-log-to-stderr=false (PID: 1) UID: 0 2026-02-20T23:03:36.758 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:36 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a[39334]: 2026-02-20T23:03:36.580+0000 7fa48004d640 -1 mon.a@0(leader) e4 *** Got Signal Terminated *** 2026-02-20T23:03:36.758 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:36 trial004 podman[68856]: 2026-02-20 23:03:36.732864597 +0000 UTC m=+0.165768159 container died 0355cbd21ccab3255b492b37999e77a726bebd0bd5fe685a1d6ef4514b32dbeb (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a, 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.vendor=CentOS, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, io.buildah.version=1.33.7, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True) 2026-02-20T23:03:36.758 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:36 trial004 podman[68856]: 2026-02-20 23:03:36.741536825 +0000 UTC m=+0.174440387 container remove 0355cbd21ccab3255b492b37999e77a726bebd0bd5fe685a1d6ef4514b32dbeb (image=quay.ceph.io/ceph-ci/ceph:f7870454149f22574086dd2ff55d050585136531, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, OSD_FLAVOR=default, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-20T23:03:36.758 INFO:journalctl@ceph.mon.a.trial004.stdout:Feb 20 23:03:36 trial004 bash[68856]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-a 2026-02-20T23:03:36.827 DEBUG:teuthology.orchestra.run.trial004:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.a.service' 2026-02-20T23:03:36.873 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:36.873 INFO:tasks.cephadm.mon.a:Stopped mon.a 2026-02-20T23:03:36.873 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2026-02-20T23:03:36.874 DEBUG:teuthology.orchestra.run.trial064:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.b 2026-02-20T23:03:37.172 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:36 trial064 systemd[1]: Stopping Ceph mon.b for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:37.172 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:36 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-b[41736]: 2026-02-20T23:03:36.966+0000 7f2ae19ee640 -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-02-20T23:03:37.172 INFO:journalctl@ceph.mon.b.trial064.stdout:Feb 20 23:03:36 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-mon-b[41736]: 2026-02-20T23:03:36.966+0000 7f2ae19ee640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2026-02-20T23:03:37.261 DEBUG:teuthology.orchestra.run.trial064:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.b.service' 2026-02-20T23:03:37.315 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:37.315 INFO:tasks.cephadm.mon.c:Stopped mon.b 2026-02-20T23:03:37.315 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2026-02-20T23:03:37.316 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.c 2026-02-20T23:03:37.350 DEBUG:teuthology.orchestra.run.trial197:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mon.c.service' 2026-02-20T23:03:37.441 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:37.442 INFO:tasks.cephadm.mon.c:Stopped mon.c 2026-02-20T23:03:37.442 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2026-02-20T23:03:37.442 DEBUG:teuthology.orchestra.run.trial004:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a 2026-02-20T23:03:37.668 DEBUG:teuthology.orchestra.run.trial004:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.a.service' 2026-02-20T23:03:37.711 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:37.712 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2026-02-20T23:03:37.712 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2026-02-20T23:03:37.712 DEBUG:teuthology.orchestra.run.trial064:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.b 2026-02-20T23:03:37.847 INFO:journalctl@ceph.mgr.b.trial064.stdout:Feb 20 23:03:37 trial064 systemd[1]: Stopping Ceph mgr.b for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:37.937 DEBUG:teuthology.orchestra.run.trial064:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@mgr.b.service' 2026-02-20T23:03:37.985 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:37.985 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2026-02-20T23:03:37.985 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2026-02-20T23:03:37.986 DEBUG:teuthology.orchestra.run.trial004:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.0 2026-02-20T23:03:38.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:38 trial004 systemd[1]: Stopping Ceph osd.0 for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:38.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:38 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0[52809]: 2026-02-20T23:03:38.080+0000 7fa5a0d06640 -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-02-20T23:03:38.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:38 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0[52809]: 2026-02-20T23:03:38.080+0000 7fa5a0d06640 -1 osd.0 52 *** Got signal Terminated *** 2026-02-20T23:03:38.445 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:38 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0[52809]: 2026-02-20T23:03:38.080+0000 7fa5a0d06640 -1 osd.0 52 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69246]: 2026-02-20 23:03:43.140034211 +0000 UTC m=+5.070214249 container died 9327fcb0c9812ae8237b76e7dee564bde372704ebcb65b1e38d795df8552e50a (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, org.label-schema.build-date=20260216, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.license=GPLv2) 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69246]: 2026-02-20 23:03:43.148674265 +0000 UTC m=+5.078854303 container remove 9327fcb0c9812ae8237b76e7dee564bde372704ebcb65b1e38d795df8552e50a (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, org.label-schema.license=GPLv2, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 bash[69246]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69376]: 2026-02-20 23:03:43.287262322 +0000 UTC m=+0.015957311 container create 49894e0c2e252f721c7d0c875dd8be3e218a94fcfdacd57fc403b1d96b8a4132 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0-deactivate, OSD_FLAVOR=default, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, 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, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, ceph=True, org.label-schema.license=GPLv2, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69376]: 2026-02-20 23:03:43.318683293 +0000 UTC m=+0.047378272 container init 49894e0c2e252f721c7d0c875dd8be3e218a94fcfdacd57fc403b1d96b8a4132 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0-deactivate, org.label-schema.schema-version=1.0, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , ceph=True) 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69376]: 2026-02-20 23:03:43.32110757 +0000 UTC m=+0.049802559 container start 49894e0c2e252f721c7d0c875dd8be3e218a94fcfdacd57fc403b1d96b8a4132 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0-deactivate, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, ceph=True, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7) 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69376]: 2026-02-20 23:03:43.321755986 +0000 UTC m=+0.050450975 container attach 49894e0c2e252f721c7d0c875dd8be3e218a94fcfdacd57fc403b1d96b8a4132 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-0-deactivate, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.33.7, 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.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.build-date=20260216, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-20T23:03:43.444 INFO:journalctl@ceph.osd.0.trial004.stdout:Feb 20 23:03:43 trial004 podman[69376]: 2026-02-20 23:03:43.280908849 +0000 UTC m=+0.009603848 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T23:03:43.494 DEBUG:teuthology.orchestra.run.trial004:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.0.service' 2026-02-20T23:03:43.536 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:43.536 INFO:tasks.cephadm.osd.0:Stopped osd.0 2026-02-20T23:03:43.537 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2026-02-20T23:03:43.537 DEBUG:teuthology.orchestra.run.trial004:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.1 2026-02-20T23:03:43.944 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:43 trial004 systemd[1]: Stopping Ceph osd.1 for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:43.945 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:43 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1[59077]: 2026-02-20T23:03:43.667+0000 7efc96554640 -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-02-20T23:03:43.945 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:43 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1[59077]: 2026-02-20T23:03:43.667+0000 7efc96554640 -1 osd.1 52 *** Got signal Terminated *** 2026-02-20T23:03:43.945 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:43 trial004 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1[59077]: 2026-02-20T23:03:43.667+0000 7efc96554640 -1 osd.1 52 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-20T23:03:49.013 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69517]: 2026-02-20 23:03:48.727009299 +0000 UTC m=+5.071615332 container died c898ceebcca83793ce78761edb1647c8d6c629c25ef8d06f8462d5687d14a287 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, ceph=True, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69517]: 2026-02-20 23:03:48.73566908 +0000 UTC m=+5.080275113 container remove c898ceebcca83793ce78761edb1647c8d6c629c25ef8d06f8462d5687d14a287 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, io.buildah.version=1.33.7, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2) 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 bash[69517]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69642]: 2026-02-20 23:03:48.860028361 +0000 UTC m=+0.015827930 container create 4998795b7fd7c5d2ea1417ebd46f6d9f6cfacd5ea30af871507449ed7bcf8da4 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1-deactivate, ceph=True, org.label-schema.vendor=CentOS, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69642]: 2026-02-20 23:03:48.886642856 +0000 UTC m=+0.042442425 container init 4998795b7fd7c5d2ea1417ebd46f6d9f6cfacd5ea30af871507449ed7bcf8da4 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, io.buildah.version=1.33.7, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , ceph=True) 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69642]: 2026-02-20 23:03:48.889037568 +0000 UTC m=+0.044837137 container start 4998795b7fd7c5d2ea1417ebd46f6d9f6cfacd5ea30af871507449ed7bcf8da4 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1-deactivate, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True) 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69642]: 2026-02-20 23:03:48.889564027 +0000 UTC m=+0.045363606 container attach 4998795b7fd7c5d2ea1417ebd46f6d9f6cfacd5ea30af871507449ed7bcf8da4 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-1-deactivate, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, ceph=True, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , 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/, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default) 2026-02-20T23:03:49.014 INFO:journalctl@ceph.osd.1.trial004.stdout:Feb 20 23:03:48 trial004 podman[69642]: 2026-02-20 23:03:48.853760447 +0000 UTC m=+0.009560016 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T23:03:49.057 DEBUG:teuthology.orchestra.run.trial004:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.1.service' 2026-02-20T23:03:49.100 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:49.100 INFO:tasks.cephadm.osd.1:Stopped osd.1 2026-02-20T23:03:49.100 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2026-02-20T23:03:49.101 DEBUG:teuthology.orchestra.run.trial064:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.2 2026-02-20T23:03:49.430 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:49 trial064 systemd[1]: Stopping Ceph osd.2 for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:49.430 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:49 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2[46162]: 2026-02-20T23:03:49.196+0000 7f0ff17ae640 -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-02-20T23:03:49.430 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:49 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2[46162]: 2026-02-20T23:03:49.196+0000 7f0ff17ae640 -1 osd.2 52 *** Got signal Terminated *** 2026-02-20T23:03:49.430 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:49 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2[46162]: 2026-02-20T23:03:49.196+0000 7f0ff17ae640 -1 osd.2 52 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59463]: 2026-02-20 23:03:54.25685961 +0000 UTC m=+5.071436807 container died f58e88145508098f6acf5d8e7cdb202730b6367d403188d2feae6d8c726cfa6a (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2, 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, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, OSD_FLAVOR=default, org.label-schema.build-date=20260216, io.buildah.version=1.33.7, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle) 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59463]: 2026-02-20 23:03:54.267494085 +0000 UTC m=+5.082071282 container remove f58e88145508098f6acf5d8e7cdb202730b6367d403188d2feae6d8c726cfa6a (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 bash[59463]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59594]: 2026-02-20 23:03:54.420907407 +0000 UTC m=+0.015339178 container create 47495a8914d70e7f1265009de9a5906c64f4bc919e44723c1a739e5ee2a76589 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2-deactivate, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, ceph=True, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59594]: 2026-02-20 23:03:54.454783504 +0000 UTC m=+0.049215285 container init 47495a8914d70e7f1265009de9a5906c64f4bc919e44723c1a739e5ee2a76589 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2-deactivate, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default) 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59594]: 2026-02-20 23:03:54.45733113 +0000 UTC m=+0.051762911 container start 47495a8914d70e7f1265009de9a5906c64f4bc919e44723c1a739e5ee2a76589 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2-deactivate, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS) 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59594]: 2026-02-20 23:03:54.45795645 +0000 UTC m=+0.052388231 container attach 47495a8914d70e7f1265009de9a5906c64f4bc919e44723c1a739e5ee2a76589 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-2-deactivate, org.label-schema.schema-version=1.0, 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, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.vendor=CentOS) 2026-02-20T23:03:54.514 INFO:journalctl@ceph.osd.2.trial064.stdout:Feb 20 23:03:54 trial064 podman[59594]: 2026-02-20 23:03:54.415165976 +0000 UTC m=+0.009597887 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T23:03:54.616 DEBUG:teuthology.orchestra.run.trial064:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.2.service' 2026-02-20T23:03:54.664 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:03:54.664 INFO:tasks.cephadm.osd.2:Stopped osd.2 2026-02-20T23:03:54.664 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2026-02-20T23:03:54.664 DEBUG:teuthology.orchestra.run.trial064:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.3 2026-02-20T23:03:54.929 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:54 trial064 systemd[1]: Stopping Ceph osd.3 for fc725b2a-0eaf-11f1-a959-d404e6e7d460... 2026-02-20T23:03:54.929 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:54 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3[53032]: 2026-02-20T23:03:54.758+0000 7f0b44e58640 -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-02-20T23:03:54.929 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:54 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3[53032]: 2026-02-20T23:03:54.759+0000 7f0b44e58640 -1 osd.3 52 *** Got signal Terminated *** 2026-02-20T23:03:54.929 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:54 trial064 ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3[53032]: 2026-02-20T23:03:54.759+0000 7f0b44e58640 -1 osd.3 52 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-20T23:04:00.134 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:59 trial064 podman[59725]: 2026-02-20 23:03:59.829232967 +0000 UTC m=+5.082023963 container died c55c2b69d33cc237b2210840fc0765fdd6654cf9d186f3b649132f3df6590e8f (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, ceph=True, io.buildah.version=1.33.7, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, 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=20260216, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:59 trial064 podman[59725]: 2026-02-20 23:03:59.837439791 +0000 UTC m=+5.090230777 container remove c55c2b69d33cc237b2210840fc0765fdd6654cf9d186f3b649132f3df6590e8f (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.33.7, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, ceph=True, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.license=GPLv2) 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:59 trial064 bash[59725]: ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:03:59 trial064 podman[59856]: 2026-02-20 23:03:59.969720859 +0000 UTC m=+0.016571885 container create d4840e980c183fd869e350a75be1887420d3bfd729af5eeafece324b9c9f7d96 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3-deactivate, io.buildah.version=1.33.7, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:04:00 trial064 podman[59856]: 2026-02-20 23:04:00.000493238 +0000 UTC m=+0.047344194 container init d4840e980c183fd869e350a75be1887420d3bfd729af5eeafece324b9c9f7d96 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3-deactivate, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:04:00 trial064 podman[59856]: 2026-02-20 23:04:00.002916812 +0000 UTC m=+0.049767758 container start d4840e980c183fd869e350a75be1887420d3bfd729af5eeafece324b9c9f7d96 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3-deactivate, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.33.7, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:04:00 trial064 podman[59856]: 2026-02-20 23:04:00.003334994 +0000 UTC m=+0.050185950 container attach d4840e980c183fd869e350a75be1887420d3bfd729af5eeafece324b9c9f7d96 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3-deactivate, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, ceph=True, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:04:00 trial064 podman[59856]: 2026-02-20 23:03:59.963552428 +0000 UTC m=+0.010403374 image pull 191e36ff62c2c47de9f007d502ed6fbffff443749f925d00e4709abf526900f1 quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4 2026-02-20T23:04:00.135 INFO:journalctl@ceph.osd.3.trial064.stdout:Feb 20 23:04:00 trial064 podman[59856]: 2026-02-20 23:04:00.133357243 +0000 UTC m=+0.180208199 container died d4840e980c183fd869e350a75be1887420d3bfd729af5eeafece324b9c9f7d96 (image=quay.ceph.io/ceph-ci/ceph@sha256:9cc281dd1e60310f8109166bc76e656ce4c5c9b7d9bb9abfc9aa033dfa762ae4, name=ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460-osd-3-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.33.7, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, CEPH_SHA1=f7870454149f22574086dd2ff55d050585136531, org.label-schema.vendor=CentOS, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-pdonnell-testing-20260219.182737-tentacle) 2026-02-20T23:04:00.171 DEBUG:teuthology.orchestra.run.trial064:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.3.service' 2026-02-20T23:04:00.220 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:04:00.220 INFO:tasks.cephadm.osd.3:Stopped osd.3 2026-02-20T23:04:00.220 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2026-02-20T23:04:00.220 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.4 2026-02-20T23:04:00.254 DEBUG:teuthology.orchestra.run.trial197:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.4.service' 2026-02-20T23:04:00.338 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:04:00.338 INFO:tasks.cephadm.osd.4:Stopped osd.4 2026-02-20T23:04:00.338 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2026-02-20T23:04:00.338 DEBUG:teuthology.orchestra.run.trial197:> sudo systemctl stop ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.5 2026-02-20T23:04:00.410 DEBUG:teuthology.orchestra.run.trial197:> sudo pkill -f 'journalctl -f -n 0 -u ceph-fc725b2a-0eaf-11f1-a959-d404e6e7d460@osd.5.service' 2026-02-20T23:04:00.494 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-20T23:04:00.494 INFO:tasks.cephadm.osd.5:Stopped osd.5 2026-02-20T23:04:00.495 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --force --keep-logs 2026-02-20T23:04:00.614 INFO:teuthology.orchestra.run.trial004.stdout:Deleting cluster with fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:04:01.553 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --force --keep-logs 2026-02-20T23:04:01.672 INFO:teuthology.orchestra.run.trial064.stdout:Deleting cluster with fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:04:02.584 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --force --keep-logs 2026-02-20T23:04:02.701 INFO:teuthology.orchestra.run.trial197.stdout:Deleting cluster with fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:04:02.972 DEBUG:teuthology.orchestra.run.trial004:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:04:03.000 DEBUG:teuthology.orchestra.run.trial064:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:04:03.028 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-20T23:04:03.055 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-20T23:04:03.057 DEBUG:teuthology.misc:Transferring archived files from trial004:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial004/crash 2026-02-20T23:04:03.058 DEBUG:teuthology.orchestra.run.trial004:> sudo tar c -f - -C /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash -- . 2026-02-20T23:04:03.084 INFO:teuthology.orchestra.run.trial004.stderr:tar: /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-20T23:04:03.084 INFO:teuthology.orchestra.run.trial004.stderr:tar: Error is not recoverable: exiting now 2026-02-20T23:04:03.086 DEBUG:teuthology.misc:Transferring archived files from trial064:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial064/crash 2026-02-20T23:04:03.087 DEBUG:teuthology.orchestra.run.trial064:> sudo tar c -f - -C /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash -- . 2026-02-20T23:04:03.111 INFO:teuthology.orchestra.run.trial064.stderr:tar: /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-20T23:04:03.111 INFO:teuthology.orchestra.run.trial064.stderr:tar: Error is not recoverable: exiting now 2026-02-20T23:04:03.113 DEBUG:teuthology.misc:Transferring archived files from trial197:/var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial197/crash 2026-02-20T23:04:03.114 DEBUG:teuthology.orchestra.run.trial197:> sudo tar c -f - -C /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash -- . 2026-02-20T23:04:03.138 INFO:teuthology.orchestra.run.trial197.stderr:tar: /var/lib/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-20T23:04:03.138 INFO:teuthology.orchestra.run.trial197.stderr:tar: Error is not recoverable: exiting now 2026-02-20T23:04:03.139 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-20T23:04:03.139 DEBUG:teuthology.orchestra.run.trial004:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/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-02-20T23:04:03.165 INFO:tasks.cephadm:Compressing logs... 2026-02-20T23:04:03.165 DEBUG:teuthology.orchestra.run.trial004:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:04:03.207 DEBUG:teuthology.orchestra.run.trial064:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:04:03.210 DEBUG:teuthology.orchestra.run.trial197:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:04:03.230 INFO:teuthology.orchestra.run.trial004.stderr:find: ‘/var/log/rbd-target-api’gzip: No such file or directory 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr: -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.a.log 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.0.log 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.a.log: /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mgr.a.log 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log 2026-02-20T23:04:03.231 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mgr.a.log: 89.0% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-20T23:04:03.232 INFO:teuthology.orchestra.run.trial004.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log 2026-02-20T23:04:03.232 INFO:teuthology.orchestra.run.trial004.stderr: 81.7% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log.gz 2026-02-20T23:04:03.232 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.1.log 2026-02-20T23:04:03.232 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log 2026-02-20T23:04:03.232 INFO:teuthology.orchestra.run.trial004.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.1.log: /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log: 90.3% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log.gz 2026-02-20T23:04:03.233 INFO:teuthology.orchestra.run.trial004.stderr: 84.3% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log.gz 2026-02-20T23:04:03.234 INFO:teuthology.orchestra.run.trial064.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-20T23:04:03.234 INFO:teuthology.orchestra.run.trial064.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-20T23:04:03.234 INFO:teuthology.orchestra.run.trial064.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.2.log 2026-02-20T23:04:03.234 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.3.log 2026-02-20T23:04:03.237 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log 2026-02-20T23:04:03.237 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.3.log: 90.5% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-20T23:04:03.237 INFO:teuthology.orchestra.run.trial064.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mgr.b.log 2026-02-20T23:04:03.237 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log 2026-02-20T23:04:03.237 INFO:teuthology.orchestra.run.trial064.stderr: 81.5% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log.gz 2026-02-20T23:04:03.237 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.b.log 2026-02-20T23:04:03.238 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log 2026-02-20T23:04:03.238 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.b.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log 2026-02-20T23:04:03.238 INFO:teuthology.orchestra.run.trial064.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log: /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log: 90.6% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log.gz 2026-02-20T23:04:03.238 INFO:teuthology.orchestra.run.trial064.stderr: 83.8% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log.gz 2026-02-20T23:04:03.238 INFO:teuthology.orchestra.run.trial064.stderr: 89.7% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mgr.b.log.gz 2026-02-20T23:04:03.239 INFO:teuthology.orchestra.run.trial004.stderr: 95.4% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log.gz 2026-02-20T23:04:03.241 INFO:teuthology.orchestra.run.trial197.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-20T23:04:03.241 INFO:teuthology.orchestra.run.trial197.stderr:: No such file or directory 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.c.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.5.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.c.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.4.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr: 89.8% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr: 82.8% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.cephadm.log.gz 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.4.log: /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log 2026-02-20T23:04:03.242 INFO:teuthology.orchestra.run.trial197.stderr:/var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log: /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log: 90.5% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.audit.log.gz 2026-02-20T23:04:03.243 INFO:teuthology.orchestra.run.trial197.stderr: 82.6% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph.log.gz 2026-02-20T23:04:03.243 INFO:teuthology.orchestra.run.trial064.stderr: 95.6% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log.gz 2026-02-20T23:04:03.245 INFO:teuthology.orchestra.run.trial197.stderr: 95.4% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-volume.log.gz 2026-02-20T23:04:03.247 INFO:teuthology.orchestra.run.trial004.stderr: 93.6% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.1.log.gz 2026-02-20T23:04:03.248 INFO:teuthology.orchestra.run.trial197.stderr: 93.0% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.5.log.gz 2026-02-20T23:04:03.250 INFO:teuthology.orchestra.run.trial004.stderr: 93.4% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.0.log.gz 2026-02-20T23:04:03.250 INFO:teuthology.orchestra.run.trial197.stderr: 92.9% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.4.log.gz 2026-02-20T23:04:03.258 INFO:teuthology.orchestra.run.trial064.stderr: 93.3% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.3.log.gz 2026-02-20T23:04:03.259 INFO:teuthology.orchestra.run.trial197.stderr: 92.5% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.c.log.gz 2026-02-20T23:04:03.261 INFO:teuthology.orchestra.run.trial197.stderr: 2026-02-20T23:04:03.261 INFO:teuthology.orchestra.run.trial197.stderr:real 0m0.034s 2026-02-20T23:04:03.261 INFO:teuthology.orchestra.run.trial197.stderr:user 0m0.057s 2026-02-20T23:04:03.262 INFO:teuthology.orchestra.run.trial197.stderr:sys 0m0.020s 2026-02-20T23:04:03.264 INFO:teuthology.orchestra.run.trial004.stderr: 89.8% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mgr.a.log.gz 2026-02-20T23:04:03.266 INFO:teuthology.orchestra.run.trial064.stderr: 92.5% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.b.log.gz 2026-02-20T23:04:03.273 INFO:teuthology.orchestra.run.trial064.stderr: 93.6% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-osd.2.log.gz 2026-02-20T23:04:03.275 INFO:teuthology.orchestra.run.trial064.stderr: 2026-02-20T23:04:03.275 INFO:teuthology.orchestra.run.trial064.stderr:real 0m0.050s 2026-02-20T23:04:03.275 INFO:teuthology.orchestra.run.trial064.stderr:user 0m0.109s 2026-02-20T23:04:03.275 INFO:teuthology.orchestra.run.trial064.stderr:sys 0m0.015s 2026-02-20T23:04:03.331 INFO:teuthology.orchestra.run.trial004.stderr: 91.5% -- replaced with /var/log/ceph/fc725b2a-0eaf-11f1-a959-d404e6e7d460/ceph-mon.a.log.gz 2026-02-20T23:04:03.333 INFO:teuthology.orchestra.run.trial004.stderr: 2026-02-20T23:04:03.333 INFO:teuthology.orchestra.run.trial004.stderr:real 0m0.112s 2026-02-20T23:04:03.333 INFO:teuthology.orchestra.run.trial004.stderr:user 0m0.170s 2026-02-20T23:04:03.333 INFO:teuthology.orchestra.run.trial004.stderr:sys 0m0.036s 2026-02-20T23:04:03.334 INFO:tasks.cephadm:Archiving logs... 2026-02-20T23:04:03.334 DEBUG:teuthology.misc:Transferring archived files from trial004:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial004/log 2026-02-20T23:04:03.335 DEBUG:teuthology.orchestra.run.trial004:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-20T23:04:03.445 DEBUG:teuthology.misc:Transferring archived files from trial064:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial064/log 2026-02-20T23:04:03.446 DEBUG:teuthology.orchestra.run.trial064:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-20T23:04:03.497 DEBUG:teuthology.misc:Transferring archived files from trial197:/var/log/ceph to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial197/log 2026-02-20T23:04:03.498 DEBUG:teuthology.orchestra.run.trial197:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-20T23:04:03.548 INFO:tasks.cephadm:Removing cluster... 2026-02-20T23:04:03.548 DEBUG:teuthology.orchestra.run.trial004:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --force 2026-02-20T23:04:03.667 INFO:teuthology.orchestra.run.trial004.stdout:Deleting cluster with fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:04:03.821 DEBUG:teuthology.orchestra.run.trial064:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --force 2026-02-20T23:04:03.939 INFO:teuthology.orchestra.run.trial064.stdout:Deleting cluster with fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:04:04.106 DEBUG:teuthology.orchestra.run.trial197:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid fc725b2a-0eaf-11f1-a959-d404e6e7d460 --force 2026-02-20T23:04:04.223 INFO:teuthology.orchestra.run.trial197.stdout:Deleting cluster with fsid: fc725b2a-0eaf-11f1-a959-d404e6e7d460 2026-02-20T23:04:04.385 INFO:tasks.cephadm:Removing cephadm ... 2026-02-20T23:04:04.386 DEBUG:teuthology.orchestra.run.trial004:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-20T23:04:04.404 DEBUG:teuthology.orchestra.run.trial064:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-20T23:04:04.423 DEBUG:teuthology.orchestra.run.trial197:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-20T23:04:04.442 INFO:tasks.cephadm:Teardown complete 2026-02-20T23:04:04.442 DEBUG:teuthology.run_tasks:Unwinding manager install 2026-02-20T23:04:04.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-02-20T23:04:04.457 DEBUG:teuthology.orchestra.run.trial004:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-20T23:04:04.459 DEBUG:teuthology.orchestra.run.trial064:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-20T23:04:04.465 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-20T23:04:04.691 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-20T23:04:04.703 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-20T23:04:04.703 DEBUG:teuthology.orchestra.run.trial004:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T23:04:04.705 DEBUG:teuthology.orchestra.run.trial064:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T23:04:04.706 DEBUG:teuthology.orchestra.run.trial197:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-20T23:04:04.719 INFO:teuthology.orchestra.run.trial004.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:04:04.721 INFO:teuthology.orchestra.run.trial064.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:04:04.722 INFO:teuthology.orchestra.run.trial197.stderr:bash: line 1: ntpq: command not found 2026-02-20T23:04:04.837 INFO:teuthology.orchestra.run.trial004.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:04:04.837 INFO:teuthology.orchestra.run.trial004.stdout:=============================================================================== 2026-02-20T23:04:04.837 INFO:teuthology.orchestra.run.trial004.stdout:^+ kc1cloud.147.72.155.23.m> 3 6 377 27 -1232us[-1232us] +/- 49ms 2026-02-20T23:04:04.837 INFO:teuthology.orchestra.run.trial004.stdout:^x time-he.den.codehof.net 2 6 377 28 -183ms[ -183ms] +/- 117ms 2026-02-20T23:04:04.837 INFO:teuthology.orchestra.run.trial004.stdout:^+ owners.kjsl.com 2 6 176 157 +1847us[+1390us] +/- 37ms 2026-02-20T23:04:04.837 INFO:teuthology.orchestra.run.trial004.stdout:^* kjsl-fmt2-net.fmt2.kjsl.> 2 6 377 27 +114us[ +191us] +/- 34ms 2026-02-20T23:04:04.839 INFO:teuthology.orchestra.run.trial197.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:04:04.839 INFO:teuthology.orchestra.run.trial197.stdout:=============================================================================== 2026-02-20T23:04:04.839 INFO:teuthology.orchestra.run.trial197.stdout:^+ kc1cloud.147.72.155.23.m> 3 6 377 28 -1251us[-1251us] +/- 49ms 2026-02-20T23:04:04.839 INFO:teuthology.orchestra.run.trial197.stdout:^x time-he.den.codehof.net 2 6 377 28 -181ms[ -180ms] +/- 117ms 2026-02-20T23:04:04.839 INFO:teuthology.orchestra.run.trial197.stdout:^* owners.kjsl.com 2 6 375 28 +1398us[+3122us] +/- 38ms 2026-02-20T23:04:04.839 INFO:teuthology.orchestra.run.trial197.stdout:^+ kjsl-fmt2-net.fmt2.kjsl.> 2 6 377 26 +1190us[+1190us] +/- 34ms 2026-02-20T23:04:04.840 INFO:teuthology.orchestra.run.trial064.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-20T23:04:04.840 INFO:teuthology.orchestra.run.trial064.stdout:=============================================================================== 2026-02-20T23:04:04.840 INFO:teuthology.orchestra.run.trial064.stdout:^+ kc1cloud.147.72.155.23.m> 3 6 377 27 -924us[ -924us] +/- 49ms 2026-02-20T23:04:04.840 INFO:teuthology.orchestra.run.trial064.stdout:^x time-he.den.codehof.net 2 6 377 27 -183ms[ -183ms] +/- 117ms 2026-02-20T23:04:04.840 INFO:teuthology.orchestra.run.trial064.stdout:^+ owners.kjsl.com 2 6 377 28 +1660us[+1660us] +/- 38ms 2026-02-20T23:04:04.840 INFO:teuthology.orchestra.run.trial064.stdout:^* kjsl-fmt2-net.fmt2.kjsl.> 2 6 377 28 +429us[ +502us] +/- 34ms 2026-02-20T23:04:04.840 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-20T23:04:04.852 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-20T23:04:04.853 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-20T23:04:04.868 DEBUG:teuthology.orchestra.run.trial004:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2026-02-20T23:04:04.937 DEBUG:teuthology.orchestra.run.trial064:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2026-02-20T23:04:04.993 DEBUG:teuthology.orchestra.run.trial197:> mkdir /home/ubuntu/cephtest/archive/audit && sudo cp /var/log/audit/audit.log /home/ubuntu/cephtest/archive/audit && sudo chown $USER /home/ubuntu/cephtest/archive/audit/audit.log && gzip /home/ubuntu/cephtest/archive/audit/audit.log 2026-02-20T23:04:05.050 DEBUG:teuthology.orchestra.run.trial004:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-20T23:04:05.078 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:05.078 DEBUG:teuthology.orchestra.run.trial064:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-20T23:04:05.106 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:05.107 DEBUG:teuthology.orchestra.run.trial197:> sudo grep -a 'avc: .*denied' /var/log/audit/audit.log | grep -av -e 'comm="dmidecode"' -e chronyd.service -e 'name="cephtest"' -e scontext=system_u:system_r:nrpe_t:s0 -e scontext=system_u:system_r:pcp_pmlogger_t -e scontext=system_u:system_r:pcp_pmcd_t:s0 -e 'comm="rhsmd"' -e scontext=system_u:system_r:syslogd_t:s0 -e tcontext=system_u:system_r:nrpe_t:s0 -e 'comm="updatedb"' -e 'comm="smartd"' -e 'comm="rhsmcertd-worke"' -e 'comm="setroubleshootd"' -e 'comm="rpm"' -e tcontext=system_u:object_r:container_runtime_exec_t:s0 -e 'comm="ksmtuned"' -e 'comm="sssd"' -e 'comm="sss_cache"' -e context=system_u:system_r:NetworkManager_dispatcher_t:s0 -e context=system_u:system_r:getty_t:s0 -e scontext=system_u:system_r:logrotate_t:s0 -e scontext=system_u:system_r:getty_t:s0 2026-02-20T23:04:05.134 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:05.135 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-20T23:04:05.151 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-20T23:04:05.169 INFO:teuthology.task.internal:Duration was 464.579906 seconds 2026-02-20T23:04:05.169 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-20T23:04:05.184 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-20T23:04:05.185 DEBUG:teuthology.orchestra.run.trial004:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-20T23:04:05.187 DEBUG:teuthology.orchestra.run.trial064:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-20T23:04:05.190 DEBUG:teuthology.orchestra.run.trial197:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-20T23:04:05.223 INFO:teuthology.orchestra.run.trial004.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:04:05.225 INFO:teuthology.orchestra.run.trial064.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:04:05.228 INFO:teuthology.orchestra.run.trial197.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-20T23:04:05.730 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-20T23:04:05.730 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial004.front.sepia.ceph.com 2026-02-20T23:04:05.731 DEBUG:teuthology.orchestra.run.trial004:> grep -E --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-20T23:04:05.789 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial064.front.sepia.ceph.com 2026-02-20T23:04:05.789 DEBUG:teuthology.orchestra.run.trial064:> grep -E --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-20T23:04:05.810 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial197.front.sepia.ceph.com 2026-02-20T23:04:05.811 DEBUG:teuthology.orchestra.run.trial197:> grep -E --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | grep -E -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | grep -E -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2026-02-20T23:04:05.831 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-20T23:04:05.831 DEBUG:teuthology.orchestra.run.trial004:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:04:05.833 DEBUG:teuthology.orchestra.run.trial064:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:04:05.852 DEBUG:teuthology.orchestra.run.trial197:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:04:05.962 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-20T23:04:05.962 DEBUG:teuthology.orchestra.run.trial004:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:04:05.964 DEBUG:teuthology.orchestra.run.trial064:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:04:05.965 DEBUG:teuthology.orchestra.run.trial197:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --max-args=1 --max-procs=0 --verbose --no-run-if-empty -- gzip -5 --verbose -- 2026-02-20T23:04:05.986 INFO:teuthology.orchestra.run.trial004.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:05.986 INFO:teuthology.orchestra.run.trial004.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:05.986 INFO:teuthology.orchestra.run.trial004.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:04:05.986 INFO:teuthology.orchestra.run.trial004.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-20T23:04:05.986 INFO:teuthology.orchestra.run.trial004.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-20T23:04:05.987 INFO:teuthology.orchestra.run.trial064.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:05.988 INFO:teuthology.orchestra.run.trial064.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:05.988 INFO:teuthology.orchestra.run.trial064.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:04:05.988 INFO:teuthology.orchestra.run.trial064.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-20T23:04:05.989 INFO:teuthology.orchestra.run.trial064.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-20T23:04:05.990 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-20T23:04:05.990 INFO:teuthology.orchestra.run.trial197.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-20T23:04:05.990 INFO:teuthology.orchestra.run.trial197.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose 0.0% -- -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-20T23:04:05.990 INFO:teuthology.orchestra.run.trial197.stderr: 2026-02-20T23:04:05.990 INFO:teuthology.orchestra.run.trial197.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-20T23:04:06.002 INFO:teuthology.orchestra.run.trial064.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 84.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-20T23:04:06.004 INFO:teuthology.orchestra.run.trial197.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 85.6% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-20T23:04:06.006 INFO:teuthology.orchestra.run.trial004.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 86.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-20T23:04:06.008 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-20T23:04:06.024 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-20T23:04:06.024 DEBUG:teuthology.orchestra.run.trial004:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-20T23:04:06.073 DEBUG:teuthology.orchestra.run.trial064:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-20T23:04:06.097 DEBUG:teuthology.orchestra.run.trial197:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-20T23:04:06.122 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-20T23:04:06.139 DEBUG:teuthology.orchestra.run.trial004:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:04:06.142 DEBUG:teuthology.orchestra.run.trial064:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:04:06.144 DEBUG:teuthology.orchestra.run.trial197:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:04:06.164 INFO:teuthology.orchestra.run.trial004.stdout:kernel.core_pattern = core 2026-02-20T23:04:06.166 INFO:teuthology.orchestra.run.trial064.stdout:kernel.core_pattern = core 2026-02-20T23:04:06.186 INFO:teuthology.orchestra.run.trial197.stdout:kernel.core_pattern = core 2026-02-20T23:04:06.201 DEBUG:teuthology.orchestra.run.trial004:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:04:06.236 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:06.237 DEBUG:teuthology.orchestra.run.trial064:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:04:06.253 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:06.254 DEBUG:teuthology.orchestra.run.trial197:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-20T23:04:06.269 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-20T23:04:06.270 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-20T23:04:06.287 INFO:teuthology.task.internal:Transferring archived files... 2026-02-20T23:04:06.288 DEBUG:teuthology.misc:Transferring archived files from trial004:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial004 2026-02-20T23:04:06.288 DEBUG:teuthology.orchestra.run.trial004:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-20T23:04:06.329 DEBUG:teuthology.misc:Transferring archived files from trial064:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial064 2026-02-20T23:04:06.329 DEBUG:teuthology.orchestra.run.trial064:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-20T23:04:06.366 DEBUG:teuthology.misc:Transferring archived files from trial197:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/yuriw-2026-02-20_16:19:15-orch-wip-pdonnell-testing-20260219.182737-tentacle-distro-default-trial/61676/remote/trial197 2026-02-20T23:04:06.366 DEBUG:teuthology.orchestra.run.trial197:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-20T23:04:06.405 INFO:teuthology.task.internal:Removing archive directory... 2026-02-20T23:04:06.405 DEBUG:teuthology.orchestra.run.trial004:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-20T23:04:06.408 DEBUG:teuthology.orchestra.run.trial064:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-20T23:04:06.411 DEBUG:teuthology.orchestra.run.trial197:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-20T23:04:06.452 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-20T23:04:06.470 INFO:teuthology.task.internal:Not uploading archives. 2026-02-20T23:04:06.470 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-20T23:04:06.487 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-20T23:04:06.488 DEBUG:teuthology.orchestra.run.trial004:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-20T23:04:06.491 DEBUG:teuthology.orchestra.run.trial064:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-20T23:04:06.493 DEBUG:teuthology.orchestra.run.trial197:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-20T23:04:06.505 INFO:teuthology.orchestra.run.trial004.stdout: 917521 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 20 23:04 /home/ubuntu/cephtest 2026-02-20T23:04:06.507 INFO:teuthology.orchestra.run.trial064.stdout: 917521 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 20 23:04 /home/ubuntu/cephtest 2026-02-20T23:04:06.511 INFO:teuthology.orchestra.run.trial197.stdout: 917572 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 20 23:04 /home/ubuntu/cephtest 2026-02-20T23:04:06.512 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-20T23:04:06.531 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-20T23:04:06.572 INFO:teuthology.run:Summary data: description: orch/cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 464.57990646362305 flavor: default owner: scheduled_yuriw@soko04.front.sepia.ceph.com success: true 2026-02-20T23:04:06.572 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-20T23:04:06.697 INFO:teuthology.run:pass