2026-02-19T11:19:16.626 INFO:root:teuthology version: 1.2.4.dev9+gfa17720d0 2026-02-19T11:19:16.640 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-19T11:19:16.717 INFO:teuthology.run:Config: archive_path: /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004 branch: main description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} email: null first_in_suite: false flavor: default job_id: '58004' kernel: branch: distro kdb: true sha1: distro last_in_suite: false machine_type: trial name: shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial no_nested_subset: false os_type: centos os_version: 9.stream overrides: admin_socket: branch: main 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 - OSD_DOWN - OSD_HOST_DOWN log-only-match: - CEPHADM_ sha1: 941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 941b42cabfa3c4e4d30b96a58cbe2fa653f560ec selinux: allowlist: - scontext=system_u:system_r:logrotate_t:s0 - scontext=system_u:system_r:getty_t:s0 workunit: branch: main sha1: 172f796f82d7d43ae7fabdf5a2e00c9e376def86 owner: scheduled_shraddhaag@soko04.front.sepia.ceph.com priority: 69 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - mon.a - mgr.a - osd.0 - osd.1 - - host.b - mon.b - mgr.b - osd.2 - osd.3 - - host.c - mon.c - osd.4 - osd.5 seed: 9368 sha1: 941b42cabfa3c4e4d30b96a58cbe2fa653f560ec sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: main suite_path: /home/teuthworker/src/github.com_ceph_ceph_172f796f82d7d43ae7fabdf5a2e00c9e376def86/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph.git suite_sha1: 172f796f82d7d43ae7fabdf5a2e00c9e376def86 targets: trial010.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHat7YcjblcUuLk85L3aJSPWVcKDJf1m35c4Z/1mIFb8BMlBz4iQJ9CnuyVeERcfB96fKom+y4gDi3Eg7nDkSvY= trial132.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIb2tPHPfC30Huvm4xiuJ311cVSfOv0SnPlF5ICTwCs3kd3suuVY9RWqs+ckN4Z+ajg5tD9+2pSkD8NNpGs0kEg= trial186.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBI6cMgcEPUr5z/AQiiUxhUb4H9KVdRE7IXia23FL6mma8Iyegyh9aEw9eMtXr0/NyXXL5PgkVly72ofaAurvL9o= 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-19_09:54:34 tube: trial user: shraddhaag verbose: true worker_log: /home/teuthworker/mnt/teuthology/worker_logs/dispatcher.trial.1540699 2026-02-19T11:19:16.717 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph_172f796f82d7d43ae7fabdf5a2e00c9e376def86/qa; will attempt to use it 2026-02-19T11:19:16.718 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph_172f796f82d7d43ae7fabdf5a2e00c9e376def86/qa/tasks 2026-02-19T11:19:16.718 INFO:teuthology.run_tasks:Running task internal.check_packages... 2026-02-19T11:19:16.719 INFO:teuthology.task.internal:Checking packages... 2026-02-19T11:19:16.720 INFO:teuthology.task.internal:Checking packages for os_type 'centos', flavor 'default' and ceph hash '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec' 2026-02-19T11:19:16.720 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2026-02-19T11:19:16.720 INFO:teuthology.packaging:ref: None 2026-02-19T11:19:16.720 INFO:teuthology.packaging:tag: None 2026-02-19T11:19:16.720 INFO:teuthology.packaging:branch: main 2026-02-19T11:19:16.720 INFO:teuthology.packaging:sha1: 941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:19:16.720 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&ref=main 2026-02-19T11:19:16.868 INFO:teuthology.task.internal:Found packages for ceph version 20.3.0-5253.g5ccdd6ad 2026-02-19T11:19:16.869 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2026-02-19T11:19:16.880 INFO:teuthology.task.internal:no buildpackages task found 2026-02-19T11:19:16.880 INFO:teuthology.run_tasks:Running task internal.save_config... 2026-02-19T11:19:16.894 INFO:teuthology.task.internal:Saving configuration 2026-02-19T11:19:16.911 INFO:teuthology.run_tasks:Running task internal.check_lock... 2026-02-19T11:19:16.924 INFO:teuthology.task.internal.check_lock:Checking locks... 2026-02-19T11:19:17.009 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial010.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004', '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-19 11:15:46.998860', 'locked_by': 'scheduled_shraddhaag@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHat7YcjblcUuLk85L3aJSPWVcKDJf1m35c4Z/1mIFb8BMlBz4iQJ9CnuyVeERcfB96fKom+y4gDi3Eg7nDkSvY='} 2026-02-19T11:19:17.066 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial132.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004', '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-19 11:15:46.999489', 'locked_by': 'scheduled_shraddhaag@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBIb2tPHPfC30Huvm4xiuJ311cVSfOv0SnPlF5ICTwCs3kd3suuVY9RWqs+ckN4Z+ajg5tD9+2pSkD8NNpGs0kEg='} 2026-02-19T11:19:17.122 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'trial186.front.sepia.ceph.com', 'description': '/home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004', '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-19 11:15:46.999855', 'locked_by': 'scheduled_shraddhaag@soko04.front.sepia.ceph.com', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBI6cMgcEPUr5z/AQiiUxhUb4H9KVdRE7IXia23FL6mma8Iyegyh9aEw9eMtXr0/NyXXL5PgkVly72ofaAurvL9o='} 2026-02-19T11:19:17.122 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2026-02-19T11:19:17.133 INFO:teuthology.task.internal:roles: ubuntu@trial010.front.sepia.ceph.com - ['host.a', 'mon.a', 'mgr.a', 'osd.0', 'osd.1'] 2026-02-19T11:19:17.133 INFO:teuthology.task.internal:roles: ubuntu@trial132.front.sepia.ceph.com - ['host.b', 'mon.b', 'mgr.b', 'osd.2', 'osd.3'] 2026-02-19T11:19:17.134 INFO:teuthology.task.internal:roles: ubuntu@trial186.front.sepia.ceph.com - ['host.c', 'mon.c', 'osd.4', 'osd.5'] 2026-02-19T11:19:17.134 INFO:teuthology.run_tasks:Running task console_log... 2026-02-19T11:19:17.323 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7054a3308220>, signals=[15]) 2026-02-19T11:19:17.323 INFO:teuthology.run_tasks:Running task internal.connect... 2026-02-19T11:19:17.334 INFO:teuthology.task.internal:Opening connections... 2026-02-19T11:19:17.334 DEBUG:teuthology.task.internal:connecting to ubuntu@trial010.front.sepia.ceph.com 2026-02-19T11:19:17.334 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial010.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-19T11:19:17.397 DEBUG:teuthology.task.internal:connecting to ubuntu@trial132.front.sepia.ceph.com 2026-02-19T11:19:17.398 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-19T11:19:17.460 DEBUG:teuthology.task.internal:connecting to ubuntu@trial186.front.sepia.ceph.com 2026-02-19T11:19:17.460 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial186.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-19T11:19:17.523 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2026-02-19T11:19:17.535 DEBUG:teuthology.orchestra.run.trial010:> uname -m 2026-02-19T11:19:17.550 INFO:teuthology.orchestra.run.trial010.stdout:x86_64 2026-02-19T11:19:17.550 DEBUG:teuthology.orchestra.run.trial010:> cat /etc/os-release 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:NAME="CentOS Stream" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:VERSION="9" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:ID="centos" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:ID_LIKE="rhel fedora" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:VERSION_ID="9" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:PLATFORM_ID="platform:el9" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:ANSI_COLOR="0;31" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:LOGO="fedora-logo-icon" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:HOME_URL="https://centos.org/" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-19T11:19:17.606 INFO:teuthology.orchestra.run.trial010.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-19T11:19:17.607 INFO:teuthology.lock.ops:Updating trial010.front.sepia.ceph.com on lock server 2026-02-19T11:19:17.676 DEBUG:teuthology.orchestra.run.trial132:> uname -m 2026-02-19T11:19:17.691 INFO:teuthology.orchestra.run.trial132.stdout:x86_64 2026-02-19T11:19:17.691 DEBUG:teuthology.orchestra.run.trial132:> cat /etc/os-release 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:NAME="CentOS Stream" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:VERSION="9" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:ID="centos" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:ID_LIKE="rhel fedora" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:VERSION_ID="9" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:PLATFORM_ID="platform:el9" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:ANSI_COLOR="0;31" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:LOGO="fedora-logo-icon" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:HOME_URL="https://centos.org/" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-19T11:19:17.747 INFO:teuthology.orchestra.run.trial132.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-19T11:19:17.748 INFO:teuthology.lock.ops:Updating trial132.front.sepia.ceph.com on lock server 2026-02-19T11:19:17.822 DEBUG:teuthology.orchestra.run.trial186:> uname -m 2026-02-19T11:19:17.837 INFO:teuthology.orchestra.run.trial186.stdout:x86_64 2026-02-19T11:19:17.837 DEBUG:teuthology.orchestra.run.trial186:> cat /etc/os-release 2026-02-19T11:19:17.892 INFO:teuthology.orchestra.run.trial186.stdout:NAME="CentOS Stream" 2026-02-19T11:19:17.892 INFO:teuthology.orchestra.run.trial186.stdout:VERSION="9" 2026-02-19T11:19:17.892 INFO:teuthology.orchestra.run.trial186.stdout:ID="centos" 2026-02-19T11:19:17.892 INFO:teuthology.orchestra.run.trial186.stdout:ID_LIKE="rhel fedora" 2026-02-19T11:19:17.892 INFO:teuthology.orchestra.run.trial186.stdout:VERSION_ID="9" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:PLATFORM_ID="platform:el9" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:PRETTY_NAME="CentOS Stream 9" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:ANSI_COLOR="0;31" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:LOGO="fedora-logo-icon" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:CPE_NAME="cpe:/o:centos:centos:9" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:HOME_URL="https://centos.org/" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:BUG_REPORT_URL="https://issues.redhat.com/" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux 9" 2026-02-19T11:19:17.893 INFO:teuthology.orchestra.run.trial186.stdout:REDHAT_SUPPORT_PRODUCT_VERSION="CentOS Stream" 2026-02-19T11:19:17.893 INFO:teuthology.lock.ops:Updating trial186.front.sepia.ceph.com on lock server 2026-02-19T11:19:17.972 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2026-02-19T11:19:17.984 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2026-02-19T11:19:17.997 INFO:teuthology.task.internal:Checking for old test directory... 2026-02-19T11:19:17.997 DEBUG:teuthology.orchestra.run.trial010:> test '!' -e /home/ubuntu/cephtest 2026-02-19T11:19:17.998 DEBUG:teuthology.orchestra.run.trial132:> test '!' -e /home/ubuntu/cephtest 2026-02-19T11:19:18.000 DEBUG:teuthology.orchestra.run.trial186:> test '!' -e /home/ubuntu/cephtest 2026-02-19T11:19:18.014 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2026-02-19T11:19:18.026 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2026-02-19T11:19:18.026 DEBUG:teuthology.orchestra.run.trial010:> test -z $(ls -A /var/lib/ceph) 2026-02-19T11:19:18.054 DEBUG:teuthology.orchestra.run.trial132:> test -z $(ls -A /var/lib/ceph) 2026-02-19T11:19:18.056 DEBUG:teuthology.orchestra.run.trial186:> test -z $(ls -A /var/lib/ceph) 2026-02-19T11:19:18.073 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2026-02-19T11:19:18.290 INFO:teuthology.run_tasks:Running task kernel... 2026-02-19T11:19:18.309 INFO:teuthology.task.kernel:normalize config orig: {'branch': 'distro', 'kdb': True, 'sha1': 'distro'} 2026-02-19T11:19:18.309 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-19T11:19:18.309 DEBUG:teuthology.orchestra.run.trial010:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-19T11:19:18.309 DEBUG:teuthology.orchestra.run.trial132:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-19T11:19:18.310 DEBUG:teuthology.orchestra.run.trial186:> test -f /run/.containerenv -o -f /.dockerenv 2026-02-19T11:19:18.325 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:19:18.325 DEBUG:teuthology.orchestra.run.trial132:> uname -r 2026-02-19T11:19:18.325 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:19:18.325 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:19:18.326 DEBUG:teuthology.orchestra.run.trial010:> uname -r 2026-02-19T11:19:18.326 DEBUG:teuthology.orchestra.run.trial186:> uname -r 2026-02-19T11:19:18.381 INFO:teuthology.orchestra.run.trial010.stdout:5.14.0-681.el9.x86_64 2026-02-19T11:19:18.381 INFO:teuthology.task.kernel:Running kernel on trial010: 5.14.0-681.el9.x86_64 2026-02-19T11:19:18.382 DEBUG:teuthology.orchestra.run.trial010:> sudo yum install -y kernel 2026-02-19T11:19:18.383 INFO:teuthology.orchestra.run.trial186.stdout:5.14.0-681.el9.x86_64 2026-02-19T11:19:18.383 INFO:teuthology.orchestra.run.trial132.stdout:5.14.0-681.el9.x86_64 2026-02-19T11:19:18.383 INFO:teuthology.task.kernel:Running kernel on trial186: 5.14.0-681.el9.x86_64 2026-02-19T11:19:18.383 DEBUG:teuthology.orchestra.run.trial186:> sudo yum install -y kernel 2026-02-19T11:19:18.383 INFO:teuthology.task.kernel:Running kernel on trial132: 5.14.0-681.el9.x86_64 2026-02-19T11:19:18.383 DEBUG:teuthology.orchestra.run.trial132:> sudo yum install -y kernel 2026-02-19T11:19:19.437 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - BaseOS 13 MB/s | 8.9 MB 00:00 2026-02-19T11:19:20.456 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - AppStream 54 MB/s | 27 MB 00:00 2026-02-19T11:19:20.670 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - BaseOS 4.7 MB/s | 8.9 MB 00:01 2026-02-19T11:19:23.709 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-19T11:19:24.018 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - CRB 6.5 MB/s | 7.8 MB 00:01 2026-02-19T11:19:24.911 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - Extras packages 115 kB/s | 20 kB 00:00 2026-02-19T11:19:25.813 INFO:teuthology.orchestra.run.trial010.stdout:Extra Packages for Enterprise Linux 24 MB/s | 20 MB 00:00 2026-02-19T11:19:26.081 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - BaseOS 1.2 MB/s | 8.9 MB 00:07 2026-02-19T11:19:29.040 INFO:teuthology.orchestra.run.trial010.stdout:lab-extras 2.5 MB/s | 50 kB 00:00 2026-02-19T11:19:30.024 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - AppStream 7.8 MB/s | 27 MB 00:03 2026-02-19T11:19:30.043 INFO:teuthology.orchestra.run.trial010.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-19T11:19:30.043 INFO:teuthology.orchestra.run.trial010.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-19T11:19:30.062 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:19:30.063 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:19:30.063 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:19:30.087 DEBUG:teuthology.orchestra.run.trial010:> echo no | sudo yum reinstall kernel || true 2026-02-19T11:19:30.388 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:01 ago on Thu 19 Feb 2026 11:19:29 AM UTC. 2026-02-19T11:19:30.420 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - CRB 1.8 MB/s | 7.8 MB 00:04 2026-02-19T11:19:30.468 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:19:30.468 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:19:30.468 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-19T11:19:30.468 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:19:30.468 INFO:teuthology.orchestra.run.trial010.stdout:Reinstalling: 2026-02-19T11:19:30.468 INFO:teuthology.orchestra.run.trial010.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 803 k 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 0 2026-02-19T11:19:30.469 INFO:teuthology.orchestra.run.trial010.stderr:Operation aborted. 2026-02-19T11:19:30.489 INFO:teuthology.orchestra.run.trial010.stdout:Is this ok [y/N]: 2026-02-19T11:19:30.489 DEBUG:teuthology.orchestra.run.trial010:> sudo yum reinstall -y kernel || true 2026-02-19T11:19:30.785 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:01 ago on Thu 19 Feb 2026 11:19:29 AM UTC. 2026-02-19T11:19:30.865 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:19:30.865 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout:Reinstalling: 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 803 k 2026-02-19T11:19:30.866 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 0 2026-02-19T11:19:30.867 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:19:31.032 INFO:teuthology.orchestra.run.trial010.stdout:kernel-5.14.0-681.el9.x86_64.rpm 9.8 MB/s | 803 kB 00:00 2026-02-19T11:19:31.032 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:19:31.032 INFO:teuthology.orchestra.run.trial010.stdout:Total 4.7 MB/s | 803 kB 00:00 2026-02-19T11:19:31.042 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:19:31.076 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:19:31.076 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:19:31.080 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:19:31.081 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:19:31.104 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:19:31.108 INFO:teuthology.orchestra.run.trial010.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-19T11:19:31.108 INFO:teuthology.orchestra.run.trial010.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:31.220 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:31.220 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-19T11:19:31.275 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:31.275 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:19:31.275 INFO:teuthology.orchestra.run.trial010.stdout:Reinstalled: 2026-02-19T11:19:31.276 INFO:teuthology.orchestra.run.trial010.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-19T11:19:31.276 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:19:31.276 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:19:31.302 DEBUG:teuthology.orchestra.run.trial010:> rpm -q kernel | sort -rV | head -n 1 2026-02-19T11:19:31.327 INFO:teuthology.orchestra.run.trial010.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-19T11:19:31.327 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-19T11:19:31.327 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-19T11:19:31.328 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2026-02-19T11:19:31.328 DEBUG:teuthology.orchestra.run.trial010:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-19T11:19:31.377 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - Extras packages 91 kB/s | 20 kB 00:00 2026-02-19T11:19:31.391 INFO:teuthology.orchestra.run.trial010.stdout:ttyS1 2026-02-19T11:19:31.420 DEBUG:teuthology.parallel:result is None 2026-02-19T11:19:32.067 INFO:teuthology.orchestra.run.trial186.stdout:Extra Packages for Enterprise Linux 32 MB/s | 20 MB 00:00 2026-02-19T11:19:33.317 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - CRB 8.7 MB/s | 7.8 MB 00:00 2026-02-19T11:19:35.165 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - Extras packages 18 kB/s | 20 kB 00:01 2026-02-19T11:19:35.281 INFO:teuthology.orchestra.run.trial186.stdout:lab-extras 2.6 MB/s | 50 kB 00:00 2026-02-19T11:19:36.057 INFO:teuthology.orchestra.run.trial132.stdout:Extra Packages for Enterprise Linux 24 MB/s | 20 MB 00:00 2026-02-19T11:19:36.290 INFO:teuthology.orchestra.run.trial186.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-19T11:19:36.291 INFO:teuthology.orchestra.run.trial186.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-19T11:19:36.310 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:19:36.310 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:19:36.311 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:19:36.333 DEBUG:teuthology.orchestra.run.trial186:> echo no | sudo yum reinstall kernel || true 2026-02-19T11:19:36.630 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:01 ago on Thu 19 Feb 2026 11:19:35 AM UTC. 2026-02-19T11:19:36.710 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:19:36.711 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:19:36.711 INFO:teuthology.orchestra.run.trial186.stdout: Package Architecture Version Repository Size 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout:Reinstalling: 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 803 k 2026-02-19T11:19:36.712 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 0 2026-02-19T11:19:36.713 INFO:teuthology.orchestra.run.trial186.stderr:Operation aborted. 2026-02-19T11:19:36.731 INFO:teuthology.orchestra.run.trial186.stdout:Is this ok [y/N]: 2026-02-19T11:19:36.732 DEBUG:teuthology.orchestra.run.trial186:> sudo yum reinstall -y kernel || true 2026-02-19T11:19:37.032 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:02 ago on Thu 19 Feb 2026 11:19:35 AM UTC. 2026-02-19T11:19:37.112 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:19:37.112 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout: Package Architecture Version Repository Size 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:Reinstalling: 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 803 k 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 0 2026-02-19T11:19:37.113 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:19:38.558 INFO:teuthology.orchestra.run.trial186.stdout:kernel-5.14.0-681.el9.x86_64.rpm 587 kB/s | 803 kB 00:01 2026-02-19T11:19:38.559 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:19:38.559 INFO:teuthology.orchestra.run.trial186.stdout:Total 555 kB/s | 803 kB 00:01 2026-02-19T11:19:38.568 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:19:38.602 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:19:38.602 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:19:38.606 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:19:38.606 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:19:38.630 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:19:38.634 INFO:teuthology.orchestra.run.trial186.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-19T11:19:38.634 INFO:teuthology.orchestra.run.trial186.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:38.745 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:38.746 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-19T11:19:38.800 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:38.801 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:19:38.801 INFO:teuthology.orchestra.run.trial186.stdout:Reinstalled: 2026-02-19T11:19:38.801 INFO:teuthology.orchestra.run.trial186.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-19T11:19:38.801 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:19:38.801 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:19:38.828 DEBUG:teuthology.orchestra.run.trial186:> rpm -q kernel | sort -rV | head -n 1 2026-02-19T11:19:38.852 INFO:teuthology.orchestra.run.trial186.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-19T11:19:38.853 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-19T11:19:38.853 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-19T11:19:38.853 INFO:teuthology.task.kernel:Enabling kdb on host.c... 2026-02-19T11:19:38.854 DEBUG:teuthology.orchestra.run.trial186:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-19T11:19:38.918 INFO:teuthology.orchestra.run.trial186.stdout:ttyS1 2026-02-19T11:19:38.946 DEBUG:teuthology.parallel:result is None 2026-02-19T11:19:39.283 INFO:teuthology.orchestra.run.trial132.stdout:lab-extras 2.5 MB/s | 50 kB 00:00 2026-02-19T11:19:40.290 INFO:teuthology.orchestra.run.trial132.stdout:Package kernel-5.14.0-645.el9.x86_64 is already installed. 2026-02-19T11:19:40.290 INFO:teuthology.orchestra.run.trial132.stdout:Package kernel-5.14.0-681.el9.x86_64 is already installed. 2026-02-19T11:19:40.309 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:19:40.310 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:19:40.310 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:19:40.333 DEBUG:teuthology.orchestra.run.trial132:> echo no | sudo yum reinstall kernel || true 2026-02-19T11:19:40.633 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:01 ago on Thu 19 Feb 2026 11:19:39 AM UTC. 2026-02-19T11:19:40.713 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:19:40.714 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:19:40.714 INFO:teuthology.orchestra.run.trial132.stdout: Package Architecture Version Repository Size 2026-02-19T11:19:40.714 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:19:40.714 INFO:teuthology.orchestra.run.trial132.stdout:Reinstalling: 2026-02-19T11:19:40.714 INFO:teuthology.orchestra.run.trial132.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 803 k 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 0 2026-02-19T11:19:40.715 INFO:teuthology.orchestra.run.trial132.stderr:Operation aborted. 2026-02-19T11:19:40.734 INFO:teuthology.orchestra.run.trial132.stdout:Is this ok [y/N]: 2026-02-19T11:19:40.735 DEBUG:teuthology.orchestra.run.trial132:> sudo yum reinstall -y kernel || true 2026-02-19T11:19:41.029 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:02 ago on Thu 19 Feb 2026 11:19:39 AM UTC. 2026-02-19T11:19:41.109 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:19:41.110 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout: Package Architecture Version Repository Size 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout:Reinstalling: 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout: kernel x86_64 5.14.0-681.el9 baseos 803 k 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 803 k 2026-02-19T11:19:41.111 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 0 2026-02-19T11:19:41.112 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:19:41.349 INFO:teuthology.orchestra.run.trial132.stdout:kernel-5.14.0-681.el9.x86_64.rpm 5.8 MB/s | 803 kB 00:00 2026-02-19T11:19:41.350 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:19:41.350 INFO:teuthology.orchestra.run.trial132.stdout:Total 3.3 MB/s | 803 kB 00:00 2026-02-19T11:19:41.362 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:19:41.395 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:19:41.395 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:19:41.400 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:19:41.400 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:19:41.423 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:19:41.427 INFO:teuthology.orchestra.run.trial132.stdout: Reinstalling : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-19T11:19:41.428 INFO:teuthology.orchestra.run.trial132.stdout: Cleanup : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:41.539 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:41.539 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 1/2 2026-02-19T11:19:41.591 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : kernel-5.14.0-681.el9.x86_64 2/2 2026-02-19T11:19:41.591 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:19:41.591 INFO:teuthology.orchestra.run.trial132.stdout:Reinstalled: 2026-02-19T11:19:41.591 INFO:teuthology.orchestra.run.trial132.stdout: kernel-5.14.0-681.el9.x86_64 2026-02-19T11:19:41.591 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:19:41.591 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:19:41.620 DEBUG:teuthology.orchestra.run.trial132:> rpm -q kernel | sort -rV | head -n 1 2026-02-19T11:19:41.645 INFO:teuthology.orchestra.run.trial132.stdout:kernel-5.14.0-681.el9.x86_64 2026-02-19T11:19:41.645 DEBUG:teuthology.task.kernel:get_latest_image_version_rpm: 5.14.0-681.el9.x86_64 2026-02-19T11:19:41.645 INFO:teuthology.task.kernel:Newest distro kernel installed and running 2026-02-19T11:19:41.646 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2026-02-19T11:19:41.646 DEBUG:teuthology.orchestra.run.trial132:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2026-02-19T11:19:41.709 INFO:teuthology.orchestra.run.trial132.stdout:ttyS1 2026-02-19T11:19:41.738 DEBUG:teuthology.parallel:result is None 2026-02-19T11:19:41.738 INFO:teuthology.run_tasks:Running task internal.base... 2026-02-19T11:19:41.749 INFO:teuthology.task.internal:Creating test directory... 2026-02-19T11:19:41.750 DEBUG:teuthology.orchestra.run.trial010:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-19T11:19:41.753 DEBUG:teuthology.orchestra.run.trial132:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-19T11:19:41.781 DEBUG:teuthology.orchestra.run.trial186:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2026-02-19T11:19:41.797 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2026-02-19T11:19:41.809 INFO:teuthology.run_tasks:Running task internal.archive... 2026-02-19T11:19:41.821 INFO:teuthology.task.internal:Creating archive directory... 2026-02-19T11:19:41.821 DEBUG:teuthology.orchestra.run.trial010:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-19T11:19:41.824 DEBUG:teuthology.orchestra.run.trial132:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-19T11:19:41.839 DEBUG:teuthology.orchestra.run.trial186:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2026-02-19T11:19:41.863 INFO:teuthology.run_tasks:Running task internal.coredump... 2026-02-19T11:19:41.875 INFO:teuthology.task.internal:Enabling coredump saving... 2026-02-19T11:19:41.875 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:19:41.881 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:19:41.896 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:19:41.903 INFO:teuthology.orchestra.run.trial010.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-19T11:19:41.912 INFO:teuthology.orchestra.run.trial010.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-19T11:19:41.918 INFO:teuthology.orchestra.run.trial132.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-19T11:19:41.921 INFO:teuthology.orchestra.run.trial186.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-19T11:19:41.927 INFO:teuthology.orchestra.run.trial132.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-19T11:19:41.930 INFO:teuthology.orchestra.run.trial186.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2026-02-19T11:19:41.931 INFO:teuthology.run_tasks:Running task internal.sudo... 2026-02-19T11:19:41.943 INFO:teuthology.task.internal:Configuring sudo... 2026-02-19T11:19:41.944 DEBUG:teuthology.orchestra.run.trial010:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-19T11:19:41.956 DEBUG:teuthology.orchestra.run.trial132:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-19T11:19:41.971 DEBUG:teuthology.orchestra.run.trial186:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2026-02-19T11:19:41.997 INFO:teuthology.run_tasks:Running task internal.syslog... 2026-02-19T11:19:42.014 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2026-02-19T11:19:42.014 DEBUG:teuthology.orchestra.run.trial010:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-19T11:19:42.020 DEBUG:teuthology.orchestra.run.trial132:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-19T11:19:42.037 DEBUG:teuthology.orchestra.run.trial186:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2026-02-19T11:19:42.053 DEBUG:teuthology.orchestra.run.trial010:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:19:42.192 DEBUG:teuthology.orchestra.run.trial010:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:19:42.215 DEBUG:teuthology.orchestra.run.trial010:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:19:42.358 DEBUG:teuthology.orchestra.run.trial010:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:19:42.381 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:19:42.381 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-19T11:19:42.444 DEBUG:teuthology.orchestra.run.trial132:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:19:42.562 DEBUG:teuthology.orchestra.run.trial132:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:19:42.587 DEBUG:teuthology.orchestra.run.trial132:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:19:42.734 DEBUG:teuthology.orchestra.run.trial132:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:19:42.760 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:19:42.760 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-19T11:19:42.823 DEBUG:teuthology.orchestra.run.trial186:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:19:42.940 DEBUG:teuthology.orchestra.run.trial186:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:19:42.965 DEBUG:teuthology.orchestra.run.trial186:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:19:43.112 DEBUG:teuthology.orchestra.run.trial186:> sudo chcon system_u:object_r:var_log_t:s0 /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:19:43.136 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:19:43.136 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2026-02-19T11:19:43.199 DEBUG:teuthology.orchestra.run.trial010:> sudo service rsyslog restart 2026-02-19T11:19:43.202 DEBUG:teuthology.orchestra.run.trial132:> sudo service rsyslog restart 2026-02-19T11:19:43.205 DEBUG:teuthology.orchestra.run.trial186:> sudo service rsyslog restart 2026-02-19T11:19:43.228 INFO:teuthology.orchestra.run.trial010.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-19T11:19:43.231 INFO:teuthology.orchestra.run.trial132.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-19T11:19:43.268 INFO:teuthology.orchestra.run.trial186.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-19T11:19:43.751 INFO:teuthology.run_tasks:Running task internal.timer... 2026-02-19T11:19:43.764 INFO:teuthology.task.internal:Starting timer... 2026-02-19T11:19:43.764 INFO:teuthology.run_tasks:Running task pcp... 2026-02-19T11:19:43.785 INFO:teuthology.run_tasks:Running task selinux... 2026-02-19T11:19:43.803 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-19T11:19:43.804 DEBUG:teuthology.orchestra.run.trial010:> sudo service auditd rotate 2026-02-19T11:19:43.834 INFO:teuthology.orchestra.run.trial010.stdout:Rotating logs: 2026-02-19T11:19:43.836 DEBUG:teuthology.orchestra.run.trial132:> sudo service auditd rotate 2026-02-19T11:19:43.866 INFO:teuthology.orchestra.run.trial132.stdout:Rotating logs: 2026-02-19T11:19:43.868 DEBUG:teuthology.orchestra.run.trial186:> sudo service auditd rotate 2026-02-19T11:19:43.898 INFO:teuthology.orchestra.run.trial186.stdout:Rotating logs: 2026-02-19T11:19:43.900 DEBUG:teuthology.task.selinux:Getting current SELinux state 2026-02-19T11:19:43.900 DEBUG:teuthology.orchestra.run.trial010:> /usr/sbin/getenforce 2026-02-19T11:19:43.916 INFO:teuthology.orchestra.run.trial010.stdout:Permissive 2026-02-19T11:19:43.917 DEBUG:teuthology.orchestra.run.trial132:> /usr/sbin/getenforce 2026-02-19T11:19:43.933 INFO:teuthology.orchestra.run.trial132.stdout:Permissive 2026-02-19T11:19:43.934 DEBUG:teuthology.orchestra.run.trial186:> /usr/sbin/getenforce 2026-02-19T11:19:43.955 INFO:teuthology.orchestra.run.trial186.stdout:Permissive 2026-02-19T11:19:43.956 DEBUG:teuthology.task.selinux:Existing SELinux modes: {'ubuntu@trial010.front.sepia.ceph.com': 'permissive', 'ubuntu@trial132.front.sepia.ceph.com': 'permissive', 'ubuntu@trial186.front.sepia.ceph.com': 'permissive'} 2026-02-19T11:19:43.956 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:19:43.981 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:19:43.981 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:19:44.006 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:19:44.006 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:19:44.032 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:19:44.033 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2026-02-19T11:19:44.033 DEBUG:teuthology.orchestra.run.trial010:> sudo /usr/sbin/setenforce permissive 2026-02-19T11:19:44.058 DEBUG:teuthology.orchestra.run.trial132:> sudo /usr/sbin/setenforce permissive 2026-02-19T11:19:44.084 DEBUG:teuthology.orchestra.run.trial186:> sudo /usr/sbin/setenforce permissive 2026-02-19T11:19:44.110 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2026-02-19T11:19:44.126 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2026-02-19T11:19:44.138 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-19T11:19:44.139 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit trial010.front.sepia.ceph.com,trial132.front.sepia.ceph.com,trial186.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2026-02-19T11:20:54.034 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@trial010.front.sepia.ceph.com'), Remote(name='ubuntu@trial132.front.sepia.ceph.com'), Remote(name='ubuntu@trial186.front.sepia.ceph.com')] 2026-02-19T11:20:54.035 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial010.front.sepia.ceph.com' 2026-02-19T11:20:54.036 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial010.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-19T11:20:54.148 DEBUG:teuthology.orchestra.run.trial010:> true 2026-02-19T11:20:54.225 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial010.front.sepia.ceph.com' 2026-02-19T11:20:54.226 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial132.front.sepia.ceph.com' 2026-02-19T11:20:54.226 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial132.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-19T11:20:54.317 DEBUG:teuthology.orchestra.run.trial132:> true 2026-02-19T11:20:54.394 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial132.front.sepia.ceph.com' 2026-02-19T11:20:54.395 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@trial186.front.sepia.ceph.com' 2026-02-19T11:20:54.395 DEBUG:teuthology.orchestra.connection:{'hostname': 'trial186.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2026-02-19T11:20:54.488 DEBUG:teuthology.orchestra.run.trial186:> true 2026-02-19T11:20:54.561 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@trial186.front.sepia.ceph.com' 2026-02-19T11:20:54.561 INFO:teuthology.run_tasks:Running task clock... 2026-02-19T11:20:54.574 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2026-02-19T11:20:54.575 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-19T11:20:54.575 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:20:54.577 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-19T11:20:54.577 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:20:54.579 INFO:teuthology.orchestra.run:Running command with timeout 360 2026-02-19T11:20:54.579 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:20:54.603 INFO:teuthology.orchestra.run.trial010.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-19T11:20:54.605 INFO:teuthology.orchestra.run.trial132.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-19T11:20:54.615 INFO:teuthology.orchestra.run.trial010.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-19T11:20:54.617 INFO:teuthology.orchestra.run.trial132.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-19T11:20:54.627 INFO:teuthology.orchestra.run.trial186.stderr:Failed to stop ntp.service: Unit ntp.service not loaded. 2026-02-19T11:20:54.635 INFO:teuthology.orchestra.run.trial010.stderr:sudo: ntpd: command not found 2026-02-19T11:20:54.638 INFO:teuthology.orchestra.run.trial132.stderr:sudo: ntpd: command not found 2026-02-19T11:20:54.640 INFO:teuthology.orchestra.run.trial186.stderr:Failed to stop ntpd.service: Unit ntpd.service not loaded. 2026-02-19T11:20:54.645 INFO:teuthology.orchestra.run.trial010.stdout:506 Cannot talk to daemon 2026-02-19T11:20:54.647 INFO:teuthology.orchestra.run.trial132.stdout:506 Cannot talk to daemon 2026-02-19T11:20:54.656 INFO:teuthology.orchestra.run.trial010.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-19T11:20:54.659 INFO:teuthology.orchestra.run.trial132.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-19T11:20:54.661 INFO:teuthology.orchestra.run.trial186.stderr:sudo: ntpd: command not found 2026-02-19T11:20:54.668 INFO:teuthology.orchestra.run.trial010.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-19T11:20:54.671 INFO:teuthology.orchestra.run.trial132.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-19T11:20:54.672 INFO:teuthology.orchestra.run.trial186.stdout:506 Cannot talk to daemon 2026-02-19T11:20:54.683 INFO:teuthology.orchestra.run.trial186.stderr:Failed to start ntp.service: Unit ntp.service not found. 2026-02-19T11:20:54.695 INFO:teuthology.orchestra.run.trial186.stderr:Failed to start ntpd.service: Unit ntpd.service not found. 2026-02-19T11:20:54.716 INFO:teuthology.orchestra.run.trial010.stderr:bash: line 1: ntpq: command not found 2026-02-19T11:20:54.717 INFO:teuthology.orchestra.run.trial132.stderr:bash: line 1: ntpq: command not found 2026-02-19T11:20:54.736 INFO:teuthology.orchestra.run.trial132.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-19T11:20:54.736 INFO:teuthology.orchestra.run.trial132.stdout:=============================================================================== 2026-02-19T11:20:54.736 INFO:teuthology.orchestra.run.trial132.stdout:^? 44.190.5.123 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.736 INFO:teuthology.orchestra.run.trial132.stdout:^? io.psychotron.org 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.736 INFO:teuthology.orchestra.run.trial132.stdout:^? as393746.mci.trtnw.net 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.736 INFO:teuthology.orchestra.run.trial132.stdout:^? 216.82.35.115 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.738 INFO:teuthology.orchestra.run.trial010.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-19T11:20:54.738 INFO:teuthology.orchestra.run.trial010.stdout:=============================================================================== 2026-02-19T11:20:54.738 INFO:teuthology.orchestra.run.trial010.stdout:^? lax1.us.ntp.li 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.738 INFO:teuthology.orchestra.run.trial010.stdout:^? 172-232-15-202.ip.linode> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.739 INFO:teuthology.orchestra.run.trial010.stdout:^? LAX.CALTICK.NET 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.739 INFO:teuthology.orchestra.run.trial010.stdout:^? ip212-227-240-160.pbiaas> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.743 INFO:teuthology.orchestra.run.trial186.stderr:bash: line 1: ntpq: command not found 2026-02-19T11:20:54.785 INFO:teuthology.orchestra.run.trial186.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-19T11:20:54.786 INFO:teuthology.orchestra.run.trial186.stdout:=============================================================================== 2026-02-19T11:20:54.786 INFO:teuthology.orchestra.run.trial186.stdout:^? pool-138-89-14-60.mad.ea> 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.786 INFO:teuthology.orchestra.run.trial186.stdout:^? us-east-2.clearnet.pw 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.786 INFO:teuthology.orchestra.run.trial186.stdout:^? vps5.drown.org 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.786 INFO:teuthology.orchestra.run.trial186.stdout:^? ntp.maxhost.io 0 6 0 - +0ns[ +0ns] +/- 0ns 2026-02-19T11:20:54.787 INFO:teuthology.run_tasks:Running task pexec... 2026-02-19T11:20:54.804 INFO:teuthology.task.pexec:Executing custom commands... 2026-02-19T11:20:54.805 DEBUG:teuthology.orchestra.run.trial010:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-19T11:20:54.805 DEBUG:teuthology.orchestra.run.trial132:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-19T11:20:54.806 DEBUG:teuthology.orchestra.run.trial186:> TESTDIR=/home/ubuntu/cephtest bash -s 2026-02-19T11:20:54.809 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial132.front.sepia.ceph.com 2026-02-19T11:20:54.809 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-19T11:20:54.809 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-19T11:20:54.811 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial010.front.sepia.ceph.com 2026-02-19T11:20:54.811 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-19T11:20:54.811 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-19T11:20:54.830 INFO:teuthology.task.pexec:Running commands on host ubuntu@trial186.front.sepia.ceph.com 2026-02-19T11:20:54.831 INFO:teuthology.task.pexec:sudo dnf remove nvme-cli -y 2026-02-19T11:20:54.831 INFO:teuthology.task.pexec:sudo dnf install nvmetcli nvme-cli -y 2026-02-19T11:20:54.980 INFO:teuthology.orchestra.run.trial010.stdout:No match for argument: nvme-cli 2026-02-19T11:20:54.981 INFO:teuthology.orchestra.run.trial010.stderr:No packages marked for removal. 2026-02-19T11:20:54.981 INFO:teuthology.orchestra.run.trial132.stdout:No match for argument: nvme-cli 2026-02-19T11:20:54.982 INFO:teuthology.orchestra.run.trial132.stderr:No packages marked for removal. 2026-02-19T11:20:54.982 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:20:54.983 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:20:54.983 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:20:54.983 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:20:54.984 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:20:54.984 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:20:55.007 INFO:teuthology.orchestra.run.trial186.stdout:No match for argument: nvme-cli 2026-02-19T11:20:55.007 INFO:teuthology.orchestra.run.trial186.stderr:No packages marked for removal. 2026-02-19T11:20:55.009 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:20:55.010 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:20:55.010 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:20:55.285 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:29 ago on Thu 19 Feb 2026 11:20:26 AM UTC. 2026-02-19T11:20:55.287 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:29 ago on Thu 19 Feb 2026 11:20:26 AM UTC. 2026-02-19T11:20:55.316 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:29 ago on Thu 19 Feb 2026 11:20:26 AM UTC. 2026-02-19T11:20:55.369 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:Installing dependencies: 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout:Install 6 Packages 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout: Package Architecture Version Repository Size 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-19T11:20:55.370 INFO:teuthology.orchestra.run.trial132.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:Installing dependencies: 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:Install 6 Packages 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 2.3 M 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 11 M 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 2.3 M 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 11 M 2026-02-19T11:20:55.371 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:20:55.400 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:20:55.401 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:20:55.401 INFO:teuthology.orchestra.run.trial186.stdout: Package Architecture Version Repository Size 2026-02-19T11:20:55.401 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:20:55.401 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: nvme-cli x86_64 2.16-1.el9 baseos 1.2 M 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: nvmetcli noarch 0.8-3.el9 baseos 44 k 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout:Installing dependencies: 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: python3-configshell noarch 1:1.1.30-1.el9 baseos 72 k 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: python3-kmod x86_64 0.9-32.el9 baseos 84 k 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyparsing noarch 2.4.7-9.el9 baseos 150 k 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: python3-urwid x86_64 2.1.2-4.el9 baseos 837 k 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:20:55.402 INFO:teuthology.orchestra.run.trial186.stdout:Install 6 Packages 2026-02-19T11:20:55.403 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:20:55.403 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 2.3 M 2026-02-19T11:20:55.403 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 11 M 2026-02-19T11:20:55.403 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:20:55.557 INFO:teuthology.orchestra.run.trial132.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 429 kB/s | 44 kB 00:00 2026-02-19T11:20:55.571 INFO:teuthology.orchestra.run.trial132.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 616 kB/s | 72 kB 00:00 2026-02-19T11:20:55.612 INFO:teuthology.orchestra.run.trial132.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 1.5 MB/s | 84 kB 00:00 2026-02-19T11:20:55.637 INFO:teuthology.orchestra.run.trial132.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 2.2 MB/s | 150 kB 00:00 2026-02-19T11:20:55.671 INFO:teuthology.orchestra.run.trial132.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 5.3 MB/s | 1.2 MB 00:00 2026-02-19T11:20:55.714 INFO:teuthology.orchestra.run.trial132.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 8.0 MB/s | 837 kB 00:00 2026-02-19T11:20:55.714 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:20:55.715 INFO:teuthology.orchestra.run.trial132.stdout:Total 6.7 MB/s | 2.3 MB 00:00 2026-02-19T11:20:55.766 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:20:55.775 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:20:55.775 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:20:55.841 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:20:55.841 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:20:55.971 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:20:55.979 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-19T11:20:55.988 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-19T11:20:55.993 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-19T11:20:55.999 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-19T11:20:56.000 INFO:teuthology.orchestra.run.trial132.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-19T11:20:56.036 INFO:teuthology.orchestra.run.trial186.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 76 kB/s | 44 kB 00:00 2026-02-19T11:20:56.104 INFO:teuthology.orchestra.run.trial186.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 111 kB/s | 72 kB 00:00 2026-02-19T11:20:56.134 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-19T11:20:56.136 INFO:teuthology.orchestra.run.trial132.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-19T11:20:56.148 INFO:teuthology.orchestra.run.trial010.stdout:(1/6): nvmetcli-0.8-3.el9.noarch.rpm 85 kB/s | 44 kB 00:00 2026-02-19T11:20:56.232 INFO:teuthology.orchestra.run.trial010.stdout:(2/6): python3-configshell-1.1.30-1.el9.noarch. 120 kB/s | 72 kB 00:00 2026-02-19T11:20:56.325 INFO:teuthology.orchestra.run.trial010.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 476 kB/s | 84 kB 00:00 2026-02-19T11:20:56.425 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-19T11:20:56.425 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-19T11:20:56.425 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:20:56.448 INFO:teuthology.orchestra.run.trial186.stdout:(3/6): python3-kmod-0.9-32.el9.x86_64.rpm 204 kB/s | 84 kB 00:00 2026-02-19T11:20:56.667 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-19T11:20:56.667 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-19T11:20:56.667 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-19T11:20:56.667 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-19T11:20:56.667 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-19T11:20:56.708 INFO:teuthology.orchestra.run.trial186.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 249 kB/s | 150 kB 00:00 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-19T11:20:56.719 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:20:56.720 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:20:56.749 DEBUG:teuthology.parallel:result is None 2026-02-19T11:20:56.879 INFO:teuthology.orchestra.run.trial010.stdout:(4/6): python3-pyparsing-2.4.7-9.el9.noarch.rpm 233 kB/s | 150 kB 00:00 2026-02-19T11:20:57.278 INFO:teuthology.orchestra.run.trial186.stdout:(5/6): nvme-cli-2.16-1.el9.x86_64.rpm 648 kB/s | 1.2 MB 00:01 2026-02-19T11:20:57.360 INFO:teuthology.orchestra.run.trial010.stdout:(5/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 810 kB/s | 837 kB 00:01 2026-02-19T11:20:57.415 INFO:teuthology.orchestra.run.trial010.stdout:(6/6): nvme-cli-2.16-1.el9.x86_64.rpm 662 kB/s | 1.2 MB 00:01 2026-02-19T11:20:57.418 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:20:57.419 INFO:teuthology.orchestra.run.trial010.stdout:Total 1.1 MB/s | 2.3 MB 00:02 2026-02-19T11:20:57.470 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:20:57.477 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:20:57.478 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:20:57.543 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:20:57.544 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:20:57.673 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:20:57.682 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-19T11:20:57.691 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-19T11:20:57.697 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-19T11:20:57.702 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-19T11:20:57.703 INFO:teuthology.orchestra.run.trial010.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-19T11:20:57.837 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-19T11:20:57.840 INFO:teuthology.orchestra.run.trial010.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-19T11:20:58.114 INFO:teuthology.orchestra.run.trial186.stdout:(6/6): python3-urwid-2.1.2-4.el9.x86_64.rpm 503 kB/s | 837 kB 00:01 2026-02-19T11:20:58.117 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:20:58.117 INFO:teuthology.orchestra.run.trial186.stdout:Total 871 kB/s | 2.3 MB 00:02 2026-02-19T11:20:58.129 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-19T11:20:58.129 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-19T11:20:58.129 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:20:58.170 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:20:58.177 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:20:58.178 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:20:58.244 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:20:58.244 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:20:58.372 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-19T11:20:58.372 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-19T11:20:58.372 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-19T11:20:58.372 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-19T11:20:58.372 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-19T11:20:58.374 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:20:58.382 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-urwid-2.1.2-4.el9.x86_64 1/6 2026-02-19T11:20:58.391 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-pyparsing-2.4.7-9.el9.noarch 2/6 2026-02-19T11:20:58.396 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-19T11:20:58.402 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-19T11:20:58.403 INFO:teuthology.orchestra.run.trial186.stdout: Installing : nvmetcli-0.8-3.el9.noarch 5/6 2026-02-19T11:20:58.424 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-19T11:20:58.424 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:20:58.425 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:20:58.425 INFO:teuthology.orchestra.run.trial010.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-19T11:20:58.425 INFO:teuthology.orchestra.run.trial010.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-19T11:20:58.425 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-19T11:20:58.425 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:20:58.425 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:20:58.454 DEBUG:teuthology.parallel:result is None 2026-02-19T11:20:58.537 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: nvmetcli-0.8-3.el9.noarch 5/6 2026-02-19T11:20:58.539 INFO:teuthology.orchestra.run.trial186.stdout: Installing : nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-19T11:20:58.821 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: nvme-cli-2.16-1.el9.x86_64 6/6 2026-02-19T11:20:58.822 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/default.target.wants/nvmefc-boot-connections.service → /usr/lib/systemd/system/nvmefc-boot-connections.service. 2026-02-19T11:20:58.822 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:20:59.054 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : nvme-cli-2.16-1.el9.x86_64 1/6 2026-02-19T11:20:59.054 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : nvmetcli-0.8-3.el9.noarch 2/6 2026-02-19T11:20:59.054 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-configshell-1:1.1.30-1.el9.noarch 3/6 2026-02-19T11:20:59.054 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-kmod-0.9-32.el9.x86_64 4/6 2026-02-19T11:20:59.054 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-pyparsing-2.4.7-9.el9.noarch 5/6 2026-02-19T11:20:59.109 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-urwid-2.1.2-4.el9.x86_64 6/6 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout: nvme-cli-2.16-1.el9.x86_64 nvmetcli-0.8-3.el9.noarch 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout: python3-configshell-1:1.1.30-1.el9.noarch python3-kmod-0.9-32.el9.x86_64 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyparsing-2.4.7-9.el9.noarch python3-urwid-2.1.2-4.el9.x86_64 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:20:59.110 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:20:59.140 DEBUG:teuthology.parallel:result is None 2026-02-19T11:20:59.140 INFO:teuthology.run_tasks:Running task install... 2026-02-19T11:20:59.164 DEBUG:teuthology.task.install:project ceph 2026-02-19T11:20:59.164 DEBUG:teuthology.task.install:INSTALL overrides: {'ceph': {'flavor': 'default', 'sha1': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec'}} 2026-02-19T11:20:59.165 DEBUG:teuthology.task.install:config {'flavor': 'default', 'sha1': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec'} 2026-02-19T11:20:59.165 INFO:teuthology.task.install:Using flavor: default 2026-02-19T11:20:59.169 DEBUG:teuthology.task.install:Package list is: {'deb': ['ceph', 'cephadm', 'ceph-mds', 'ceph-mgr', 'ceph-osd', 'ceph-osd-classic', '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-osd', 'ceph-osd-classic', '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-19T11:20:59.170 INFO:teuthology.task.install:extra packages: [] 2026-02-19T11:20:59.170 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': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec', 'tag': None, 'wait_for_package': False} 2026-02-19T11:20:59.170 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:20:59.171 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': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec', 'tag': None, 'wait_for_package': False} 2026-02-19T11:20:59.171 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:20:59.172 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': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec', 'tag': None, 'wait_for_package': False} 2026-02-19T11:20:59.172 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:20:59.412 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/ 2026-02-19T11:20:59.412 INFO:teuthology.task.install.rpm:Package version is 20.3.0-5314.g941b42ca 2026-02-19T11:20:59.414 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/ 2026-02-19T11:20:59.414 INFO:teuthology.task.install.rpm:Package version is 20.3.0-5314.g941b42ca 2026-02-19T11:20:59.421 INFO:teuthology.task.install.rpm:Pulling from https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/ 2026-02-19T11:20:59.421 INFO:teuthology.task.install.rpm:Package version is 20.3.0-5314.g941b42ca 2026-02-19T11:20:59.602 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-19T11:20:59.602 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:20:59.603 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-19T11:20:59.604 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-19T11:20:59.604 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:20:59.604 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-19T11:20:59.615 INFO:teuthology.packaging:Writing yum repo: [ceph] name=ceph packages for $basearch baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/$basearch enabled=1 gpgcheck=0 type=rpm-md [ceph-noarch] name=ceph noarch packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/noarch enabled=1 gpgcheck=0 type=rpm-md [ceph-source] name=ceph source packages baseurl=https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/SRPMS enabled=1 gpgcheck=0 type=rpm-md 2026-02-19T11:20:59.615 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:20:59.615 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/etc/yum.repos.d/ceph.repo 2026-02-19T11:20:59.633 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-osd, ceph-osd-classic, 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-19T11:20:59.633 DEBUG:teuthology.orchestra.run.trial132:> 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/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-19T11:20:59.633 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-osd, ceph-osd-classic, 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-19T11:20:59.633 DEBUG:teuthology.orchestra.run.trial010:> 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/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-19T11:20:59.642 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-osd, ceph-osd-classic, 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-19T11:20:59.642 DEBUG:teuthology.orchestra.run.trial186:> 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/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/;g' /etc/yum.repos.d/ceph.repo ; fi 2026-02-19T11:20:59.698 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:20:59.701 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:20:59.711 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:20:59.772 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:20:59.773 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:20:59.783 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:20:59.835 INFO:teuthology.orchestra.run.trial010.stdout:check_obsoletes = 1 2026-02-19T11:20:59.836 INFO:teuthology.orchestra.run.trial132.stdout:check_obsoletes = 1 2026-02-19T11:20:59.837 DEBUG:teuthology.orchestra.run.trial010:> sudo yum clean all 2026-02-19T11:20:59.837 DEBUG:teuthology.orchestra.run.trial132:> sudo yum clean all 2026-02-19T11:20:59.846 INFO:teuthology.orchestra.run.trial186.stdout:check_obsoletes = 1 2026-02-19T11:20:59.847 DEBUG:teuthology.orchestra.run.trial186:> sudo yum clean all 2026-02-19T11:20:59.993 INFO:teuthology.orchestra.run.trial010.stdout:41 files removed 2026-02-19T11:20:59.993 INFO:teuthology.orchestra.run.trial132.stdout:41 files removed 2026-02-19T11:21:00.007 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-radosgw 2026-02-19T11:21:00.009 INFO:teuthology.orchestra.run.trial186.stdout:41 files removed 2026-02-19T11:21:00.010 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-radosgw 2026-02-19T11:21:00.021 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-radosgw 2026-02-19T11:21:00.280 INFO:teuthology.orchestra.run.trial010.stdout:ceph packages for x86_64 713 kB/s | 93 kB 00:00 2026-02-19T11:21:00.282 INFO:teuthology.orchestra.run.trial132.stdout:ceph packages for x86_64 717 kB/s | 93 kB 00:00 2026-02-19T11:21:00.295 INFO:teuthology.orchestra.run.trial186.stdout:ceph packages for x86_64 718 kB/s | 93 kB 00:00 2026-02-19T11:21:00.421 INFO:teuthology.orchestra.run.trial010.stdout:ceph noarch packages 215 kB/s | 24 kB 00:00 2026-02-19T11:21:00.423 INFO:teuthology.orchestra.run.trial132.stdout:ceph noarch packages 214 kB/s | 24 kB 00:00 2026-02-19T11:21:00.438 INFO:teuthology.orchestra.run.trial186.stdout:ceph noarch packages 207 kB/s | 24 kB 00:00 2026-02-19T11:21:00.548 INFO:teuthology.orchestra.run.trial010.stdout:ceph source packages 20 kB/s | 2.1 kB 00:00 2026-02-19T11:21:00.548 INFO:teuthology.orchestra.run.trial132.stdout:ceph source packages 20 kB/s | 2.1 kB 00:00 2026-02-19T11:21:00.567 INFO:teuthology.orchestra.run.trial186.stdout:ceph source packages 19 kB/s | 2.1 kB 00:00 2026-02-19T11:21:01.483 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - BaseOS 9.7 MB/s | 8.9 MB 00:00 2026-02-19T11:21:04.906 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - AppStream 9.3 MB/s | 27 MB 00:02 2026-02-19T11:21:08.237 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - CRB 8.4 MB/s | 7.8 MB 00:00 2026-02-19T11:21:09.129 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - BaseOS 1.0 MB/s | 8.9 MB 00:08 2026-02-19T11:21:09.205 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - BaseOS 1.0 MB/s | 8.9 MB 00:08 2026-02-19T11:21:09.679 INFO:teuthology.orchestra.run.trial010.stdout:CentOS Stream 9 - Extras packages 28 kB/s | 20 kB 00:00 2026-02-19T11:21:10.329 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - AppStream 45 MB/s | 27 MB 00:00 2026-02-19T11:21:10.911 INFO:teuthology.orchestra.run.trial010.stdout:Extra Packages for Enterprise Linux 17 MB/s | 20 MB 00:01 2026-02-19T11:21:12.186 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - AppStream 11 MB/s | 27 MB 00:02 2026-02-19T11:21:13.776 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - CRB 7.2 MB/s | 7.8 MB 00:01 2026-02-19T11:21:14.101 INFO:teuthology.orchestra.run.trial010.stdout:lab-extras 1.4 MB/s | 50 kB 00:00 2026-02-19T11:21:14.708 INFO:teuthology.orchestra.run.trial132.stdout:CentOS Stream 9 - Extras packages 94 kB/s | 20 kB 00:00 2026-02-19T11:21:15.078 INFO:teuthology.orchestra.run.trial132.stdout:Extra Packages for Enterprise Linux 66 MB/s | 20 MB 00:00 2026-02-19T11:21:15.298 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:15.299 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:15.299 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repository Size 2026-02-19T11:21:15.299 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:15.299 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:15.299 INFO:teuthology.orchestra.run.trial010.stdout: ceph-radosgw x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 13 M 2026-02-19T11:21:15.299 INFO:teuthology.orchestra.run.trial010.stdout:Upgrading: 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: librados2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 3.5 M 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: librbd1 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.8 M 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout:Installing dependencies: 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: ceph-base x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 5.2 M 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: ceph-common x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 24 M 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: ceph-selinux x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 25 k 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 908 k 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-19T11:21:15.300 INFO:teuthology.orchestra.run.trial010.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: libradosstriper1 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 248 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: librgw2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 6.5 M 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: python3-ceph-argparse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 45 k 2026-02-19T11:21:15.301 INFO:teuthology.orchestra.run.trial010.stdout: python3-ceph-common x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 185 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: python3-cephfs x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 204 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: python3-rados x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 324 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: python3-rbd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 305 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: python3-rgw x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 100 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout:Installing weak dependencies: 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs-daemon x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 37 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs-proxy2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 26 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-19T11:21:15.302 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:15.303 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:15.303 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:15.303 INFO:teuthology.orchestra.run.trial010.stdout:Install 34 Packages 2026-02-19T11:21:15.303 INFO:teuthology.orchestra.run.trial010.stdout:Upgrade 2 Packages 2026-02-19T11:21:15.303 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:15.304 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 67 M 2026-02-19T11:21:15.304 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:15.614 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - CRB 7.4 MB/s | 7.8 MB 00:01 2026-02-19T11:21:16.217 INFO:teuthology.orchestra.run.trial010.stdout:(1/36): ceph-base-20.3.0-5314.g941b42ca.el9.x86 12 MB/s | 5.2 MB 00:00 2026-02-19T11:21:16.245 INFO:teuthology.orchestra.run.trial010.stdout:(2/36): ceph-selinux-20.3.0-5314.g941b42ca.el9. 912 kB/s | 25 kB 00:00 2026-02-19T11:21:16.273 INFO:teuthology.orchestra.run.trial010.stdout:(3/36): libcephfs-daemon-20.3.0-5314.g941b42ca. 1.3 MB/s | 37 kB 00:00 2026-02-19T11:21:16.302 INFO:teuthology.orchestra.run.trial010.stdout:(4/36): libcephfs-proxy2-20.3.0-5314.g941b42ca. 891 kB/s | 26 kB 00:00 2026-02-19T11:21:16.377 INFO:teuthology.orchestra.run.trial010.stdout:(5/36): libcephfs2-20.3.0-5314.g941b42ca.el9.x8 12 MB/s | 908 kB 00:00 2026-02-19T11:21:16.413 INFO:teuthology.orchestra.run.trial010.stdout:(6/36): libradosstriper1-20.3.0-5314.g941b42ca. 6.7 MB/s | 248 kB 00:00 2026-02-19T11:21:16.723 INFO:teuthology.orchestra.run.trial186.stdout:CentOS Stream 9 - Extras packages 53 kB/s | 20 kB 00:00 2026-02-19T11:21:16.747 INFO:teuthology.orchestra.run.trial010.stdout:(7/36): librgw2-20.3.0-5314.g941b42ca.el9.x86_6 19 MB/s | 6.5 MB 00:00 2026-02-19T11:21:16.779 INFO:teuthology.orchestra.run.trial010.stdout:(8/36): python3-ceph-argparse-20.3.0-5314.g941b 1.4 MB/s | 45 kB 00:00 2026-02-19T11:21:16.814 INFO:teuthology.orchestra.run.trial010.stdout:(9/36): python3-ceph-common-20.3.0-5314.g941b42 5.2 MB/s | 185 kB 00:00 2026-02-19T11:21:16.851 INFO:teuthology.orchestra.run.trial010.stdout:(10/36): python3-cephfs-20.3.0-5314.g941b42ca.e 5.5 MB/s | 204 kB 00:00 2026-02-19T11:21:16.887 INFO:teuthology.orchestra.run.trial010.stdout:(11/36): ceph-common-20.3.0-5314.g941b42ca.el9. 22 MB/s | 24 MB 00:01 2026-02-19T11:21:16.889 INFO:teuthology.orchestra.run.trial010.stdout:(12/36): python3-rados-20.3.0-5314.g941b42ca.el 8.4 MB/s | 324 kB 00:00 2026-02-19T11:21:16.901 INFO:teuthology.orchestra.run.trial010.stdout:(13/36): python3-rbd-20.3.0-5314.g941b42ca.el9. 21 MB/s | 305 kB 00:00 2026-02-19T11:21:16.902 INFO:teuthology.orchestra.run.trial010.stdout:(14/36): python3-rgw-20.3.0-5314.g941b42ca.el9. 7.5 MB/s | 100 kB 00:00 2026-02-19T11:21:16.927 INFO:teuthology.orchestra.run.trial010.stdout:(15/36): mailcap-2.1.49-5.el9.noarch.rpm 1.3 MB/s | 33 kB 00:00 2026-02-19T11:21:16.942 INFO:teuthology.orchestra.run.trial010.stdout:(16/36): pciutils-3.7.0-7.el9.x86_64.rpm 2.3 MB/s | 93 kB 00:00 2026-02-19T11:21:17.051 INFO:teuthology.orchestra.run.trial010.stdout:(17/36): boost-program-options-1.75.0-13.el9.x8 839 kB/s | 104 kB 00:00 2026-02-19T11:21:17.080 INFO:teuthology.orchestra.run.trial010.stdout:(18/36): ceph-radosgw-20.3.0-5314.g941b42ca.el9 10 MB/s | 13 MB 00:01 2026-02-19T11:21:17.083 INFO:teuthology.orchestra.run.trial010.stdout:(19/36): libnbd-1.20.3-4.el9.x86_64.rpm 1.1 MB/s | 164 kB 00:00 2026-02-19T11:21:17.106 INFO:teuthology.orchestra.run.trial010.stdout:(20/36): libpmemobj-1.12.1-1.el9.x86_64.rpm 2.9 MB/s | 160 kB 00:00 2026-02-19T11:21:17.157 INFO:teuthology.orchestra.run.trial010.stdout:(21/36): lttng-ust-2.12.0-6.el9.x86_64.rpm 5.6 MB/s | 292 kB 00:00 2026-02-19T11:21:17.167 INFO:teuthology.orchestra.run.trial010.stdout:(22/36): librdkafka-1.6.1-102.el9.x86_64.rpm 7.7 MB/s | 662 kB 00:00 2026-02-19T11:21:17.178 INFO:teuthology.orchestra.run.trial010.stdout:(23/36): librabbitmq-0.11.0-7.el9.x86_64.rpm 465 kB/s | 45 kB 00:00 2026-02-19T11:21:17.189 INFO:teuthology.orchestra.run.trial010.stdout:(24/36): qatlib-25.08.0-2.el9.x86_64.rpm 7.3 MB/s | 240 kB 00:00 2026-02-19T11:21:17.192 INFO:teuthology.orchestra.run.trial010.stdout:(25/36): qatlib-service-25.08.0-2.el9.x86_64.rp 1.4 MB/s | 37 kB 00:00 2026-02-19T11:21:17.228 INFO:teuthology.orchestra.run.trial010.stdout:(26/36): qatzip-libs-1.3.1-1.el9.x86_64.rpm 1.3 MB/s | 66 kB 00:00 2026-02-19T11:21:17.331 INFO:teuthology.orchestra.run.trial010.stdout:(27/36): libarrow-doc-9.0.0-15.el9.noarch.rpm 239 kB/s | 25 kB 00:00 2026-02-19T11:21:17.374 INFO:teuthology.orchestra.run.trial010.stdout:(28/36): gperftools-libs-2.9.1-3.el9.x86_64.rpm 1.6 MB/s | 308 kB 00:00 2026-02-19T11:21:17.378 INFO:teuthology.orchestra.run.trial010.stdout:(29/36): liboath-2.6.12-1.el9.x86_64.rpm 1.0 MB/s | 49 kB 00:00 2026-02-19T11:21:17.401 INFO:teuthology.orchestra.run.trial010.stdout:(30/36): libunwind-1.6.2-1.el9.x86_64.rpm 2.4 MB/s | 67 kB 00:00 2026-02-19T11:21:17.433 INFO:teuthology.orchestra.run.trial010.stdout:(31/36): libarrow-9.0.0-15.el9.x86_64.rpm 18 MB/s | 4.4 MB 00:00 2026-02-19T11:21:17.434 INFO:teuthology.orchestra.run.trial010.stdout:(32/36): re2-20211101-20.el9.x86_64.rpm 5.7 MB/s | 191 kB 00:00 2026-02-19T11:21:17.463 INFO:teuthology.orchestra.run.trial010.stdout:(33/36): thrift-0.15.0-4.el9.x86_64.rpm 54 MB/s | 1.6 MB 00:00 2026-02-19T11:21:17.475 INFO:teuthology.orchestra.run.trial186.stdout:Extra Packages for Enterprise Linux 29 MB/s | 20 MB 00:00 2026-02-19T11:21:17.490 INFO:teuthology.orchestra.run.trial010.stdout:(34/36): parquet-libs-9.0.0-15.el9.x86_64.rpm 7.4 MB/s | 838 kB 00:00 2026-02-19T11:21:17.550 INFO:teuthology.orchestra.run.trial010.stdout:(35/36): librados2-20.3.0-5314.g941b42ca.el9.x8 30 MB/s | 3.5 MB 00:00 2026-02-19T11:21:17.555 INFO:teuthology.orchestra.run.trial010.stdout:(36/36): librbd1-20.3.0-5314.g941b42ca.el9.x86_ 30 MB/s | 2.8 MB 00:00 2026-02-19T11:21:17.559 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:17.560 INFO:teuthology.orchestra.run.trial010.stdout:Total 30 MB/s | 67 MB 00:02 2026-02-19T11:21:17.653 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:17.670 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:17.670 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:17.917 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:17.917 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:18.220 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:18.288 INFO:teuthology.orchestra.run.trial132.stdout:lab-extras 1.4 MB/s | 50 kB 00:00 2026-02-19T11:21:18.372 INFO:teuthology.orchestra.run.trial010.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/38 2026-02-19T11:21:18.376 INFO:teuthology.orchestra.run.trial010.stdout: Upgrading : librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:18.428 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:18.429 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:18.443 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:18.445 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_6 4/38 2026-02-19T11:21:18.446 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:18.473 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:18.475 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 6/38 2026-02-19T11:21:18.482 INFO:teuthology.orchestra.run.trial010.stdout: Installing : liboath-2.6.12-1.el9.x86_64 7/38 2026-02-19T11:21:18.485 INFO:teuthology.orchestra.run.trial010.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 8/38 2026-02-19T11:21:18.488 INFO:teuthology.orchestra.run.trial010.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 9/38 2026-02-19T11:21:18.492 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 10/38 2026-02-19T11:21:18.503 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9. 11/38 2026-02-19T11:21:18.514 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 12/38 2026-02-19T11:21:18.515 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 13/38 2026-02-19T11:21:18.537 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 13/38 2026-02-19T11:21:18.540 INFO:teuthology.orchestra.run.trial010.stdout: Installing : thrift-0.15.0-4.el9.x86_64 14/38 2026-02-19T11:21:18.571 INFO:teuthology.orchestra.run.trial010.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/38 2026-02-19T11:21:18.574 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 16/38 2026-02-19T11:21:18.580 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/38 2026-02-19T11:21:18.583 INFO:teuthology.orchestra.run.trial010.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/38 2026-02-19T11:21:18.587 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 19/38 2026-02-19T11:21:18.708 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 20/38 2026-02-19T11:21:18.709 INFO:teuthology.orchestra.run.trial010.stdout: Upgrading : librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 21/38 2026-02-19T11:21:18.738 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 21/38 2026-02-19T11:21:18.740 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 22/38 2026-02-19T11:21:18.747 INFO:teuthology.orchestra.run.trial010.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 23/38 2026-02-19T11:21:19.029 INFO:teuthology.orchestra.run.trial010.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 24/38 2026-02-19T11:21:19.030 INFO:teuthology.orchestra.run.trial010.stdout: Installing : librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 25/38 2026-02-19T11:21:19.048 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 25/38 2026-02-19T11:21:19.052 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 26/38 2026-02-19T11:21:19.058 INFO:teuthology.orchestra.run.trial010.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 27/38 2026-02-19T11:21:19.061 INFO:teuthology.orchestra.run.trial010.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 28/38 2026-02-19T11:21:19.061 INFO:teuthology.orchestra.run.trial010.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-19T11:21:19.080 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-19T11:21:19.084 INFO:teuthology.orchestra.run.trial010.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 30/38 2026-02-19T11:21:19.118 INFO:teuthology.orchestra.run.trial010.stdout: Installing : mailcap-2.1.49-5.el9.noarch 31/38 2026-02-19T11:21:19.120 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x8 32/38 2026-02-19T11:21:19.478 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repository Size 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout: ceph-radosgw x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 13 M 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout:Upgrading: 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout: librados2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 3.5 M 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout: librbd1 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.8 M 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout:Installing dependencies: 2026-02-19T11:21:19.480 INFO:teuthology.orchestra.run.trial132.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: ceph-base x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 5.2 M 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: ceph-common x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 24 M 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: ceph-selinux x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 25 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 908 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: libradosstriper1 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 248 k 2026-02-19T11:21:19.481 INFO:teuthology.orchestra.run.trial132.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: librgw2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 6.5 M 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: python3-ceph-argparse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 45 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: python3-ceph-common x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 185 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: python3-cephfs x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 204 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: python3-rados x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 324 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: python3-rbd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 305 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: python3-rgw x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 100 k 2026-02-19T11:21:19.482 INFO:teuthology.orchestra.run.trial132.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout:Installing weak dependencies: 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs-daemon x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 37 k 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs-proxy2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 26 k 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout:Install 34 Packages 2026-02-19T11:21:19.483 INFO:teuthology.orchestra.run.trial132.stdout:Upgrade 2 Packages 2026-02-19T11:21:19.484 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:19.484 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 67 M 2026-02-19T11:21:19.484 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:21:19.994 INFO:teuthology.orchestra.run.trial132.stdout:(1/36): ceph-base-20.3.0-5314.g941b42ca.el9.x86 20 MB/s | 5.2 MB 00:00 2026-02-19T11:21:20.020 INFO:teuthology.orchestra.run.trial132.stdout:(2/36): ceph-selinux-20.3.0-5314.g941b42ca.el9. 960 kB/s | 25 kB 00:00 2026-02-19T11:21:20.048 INFO:teuthology.orchestra.run.trial132.stdout:(3/36): libcephfs-daemon-20.3.0-5314.g941b42ca. 1.3 MB/s | 37 kB 00:00 2026-02-19T11:21:20.078 INFO:teuthology.orchestra.run.trial132.stdout:(4/36): libcephfs-proxy2-20.3.0-5314.g941b42ca. 858 kB/s | 26 kB 00:00 2026-02-19T11:21:20.128 INFO:teuthology.orchestra.run.trial132.stdout:(5/36): libcephfs2-20.3.0-5314.g941b42ca.el9.x8 18 MB/s | 908 kB 00:00 2026-02-19T11:21:20.168 INFO:teuthology.orchestra.run.trial132.stdout:(6/36): libradosstriper1-20.3.0-5314.g941b42ca. 6.1 MB/s | 248 kB 00:00 2026-02-19T11:21:20.212 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:20.215 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:20.477 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:20.481 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 34/38 2026-02-19T11:21:20.485 INFO:teuthology.orchestra.run.trial132.stdout:(7/36): librgw2-20.3.0-5314.g941b42ca.el9.x86_6 20 MB/s | 6.5 MB 00:00 2026-02-19T11:21:20.518 INFO:teuthology.orchestra.run.trial132.stdout:(8/36): python3-ceph-argparse-20.3.0-5314.g941b 1.3 MB/s | 45 kB 00:00 2026-02-19T11:21:20.520 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 34/38 2026-02-19T11:21:20.520 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-19T11:21:20.521 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-19T11:21:20.521 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:20.524 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:20.556 INFO:teuthology.orchestra.run.trial132.stdout:(9/36): python3-ceph-common-20.3.0-5314.g941b42 4.8 MB/s | 185 kB 00:00 2026-02-19T11:21:20.592 INFO:teuthology.orchestra.run.trial132.stdout:(10/36): python3-cephfs-20.3.0-5314.g941b42ca.e 5.5 MB/s | 204 kB 00:00 2026-02-19T11:21:20.632 INFO:teuthology.orchestra.run.trial132.stdout:(11/36): python3-rados-20.3.0-5314.g941b42ca.el 8.0 MB/s | 324 kB 00:00 2026-02-19T11:21:20.640 INFO:teuthology.orchestra.run.trial186.stdout:lab-extras 2.6 MB/s | 50 kB 00:00 2026-02-19T11:21:20.670 INFO:teuthology.orchestra.run.trial132.stdout:(12/36): python3-rbd-20.3.0-5314.g941b42ca.el9. 7.8 MB/s | 305 kB 00:00 2026-02-19T11:21:20.707 INFO:teuthology.orchestra.run.trial132.stdout:(13/36): ceph-radosgw-20.3.0-5314.g941b42ca.el9 14 MB/s | 13 MB 00:00 2026-02-19T11:21:20.708 INFO:teuthology.orchestra.run.trial132.stdout:(14/36): python3-rgw-20.3.0-5314.g941b42ca.el9. 2.6 MB/s | 100 kB 00:00 2026-02-19T11:21:20.807 INFO:teuthology.orchestra.run.trial132.stdout:(15/36): ceph-common-20.3.0-5314.g941b42ca.el9. 22 MB/s | 24 MB 00:01 2026-02-19T11:21:20.875 INFO:teuthology.orchestra.run.trial132.stdout:(16/36): boost-program-options-1.75.0-13.el9.x8 1.5 MB/s | 104 kB 00:00 2026-02-19T11:21:20.929 INFO:teuthology.orchestra.run.trial132.stdout:(17/36): libnbd-1.20.3-4.el9.x86_64.rpm 3.0 MB/s | 164 kB 00:00 2026-02-19T11:21:20.954 INFO:teuthology.orchestra.run.trial132.stdout:(18/36): libpmemobj-1.12.1-1.el9.x86_64.rpm 6.1 MB/s | 160 kB 00:00 2026-02-19T11:21:20.981 INFO:teuthology.orchestra.run.trial132.stdout:(19/36): librabbitmq-0.11.0-7.el9.x86_64.rpm 1.7 MB/s | 45 kB 00:00 2026-02-19T11:21:21.029 INFO:teuthology.orchestra.run.trial132.stdout:(20/36): librdkafka-1.6.1-102.el9.x86_64.rpm 14 MB/s | 662 kB 00:00 2026-02-19T11:21:21.055 INFO:teuthology.orchestra.run.trial132.stdout:(21/36): lttng-ust-2.12.0-6.el9.x86_64.rpm 11 MB/s | 292 kB 00:00 2026-02-19T11:21:21.080 INFO:teuthology.orchestra.run.trial132.stdout:(22/36): qatlib-25.08.0-2.el9.x86_64.rpm 9.6 MB/s | 240 kB 00:00 2026-02-19T11:21:21.102 INFO:teuthology.orchestra.run.trial132.stdout:(23/36): qatlib-service-25.08.0-2.el9.x86_64.rp 1.6 MB/s | 37 kB 00:00 2026-02-19T11:21:21.127 INFO:teuthology.orchestra.run.trial132.stdout:(24/36): qatzip-libs-1.3.1-1.el9.x86_64.rpm 2.7 MB/s | 66 kB 00:00 2026-02-19T11:21:21.294 INFO:teuthology.orchestra.run.trial132.stdout:(25/36): mailcap-2.1.49-5.el9.noarch.rpm 57 kB/s | 33 kB 00:00 2026-02-19T11:21:21.440 INFO:teuthology.orchestra.run.trial132.stdout:(26/36): pciutils-3.7.0-7.el9.x86_64.rpm 127 kB/s | 93 kB 00:00 2026-02-19T11:21:21.574 INFO:teuthology.orchestra.run.trial132.stdout:(27/36): gperftools-libs-2.9.1-3.el9.x86_64.rpm 688 kB/s | 308 kB 00:00 2026-02-19T11:21:21.648 INFO:teuthology.orchestra.run.trial132.stdout:(28/36): libarrow-doc-9.0.0-15.el9.noarch.rpm 119 kB/s | 25 kB 00:00 2026-02-19T11:21:21.844 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repository Size 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout: ceph-radosgw x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 13 M 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout:Upgrading: 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout: librados2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 3.5 M 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout: librbd1 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.8 M 2026-02-19T11:21:21.846 INFO:teuthology.orchestra.run.trial186.stdout:Installing dependencies: 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: boost-program-options x86_64 1.75.0-13.el9 appstream 104 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: ceph-base x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 5.2 M 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: ceph-common x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 24 M 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: ceph-selinux x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 25 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: gperftools-libs x86_64 2.9.1-3.el9 epel 308 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: libarrow x86_64 9.0.0-15.el9 epel 4.4 M 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: libarrow-doc noarch 9.0.0-15.el9 epel 25 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 908 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: libnbd x86_64 1.20.3-4.el9 appstream 164 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: liboath x86_64 2.6.12-1.el9 epel 49 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: libpmemobj x86_64 1.12.1-1.el9 appstream 160 k 2026-02-19T11:21:21.847 INFO:teuthology.orchestra.run.trial186.stdout: librabbitmq x86_64 0.11.0-7.el9 appstream 45 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: libradosstriper1 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 248 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: librdkafka x86_64 1.6.1-102.el9 appstream 662 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: librgw2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 6.5 M 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: libunwind x86_64 1.6.2-1.el9 epel 67 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: lttng-ust x86_64 2.12.0-6.el9 appstream 292 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: mailcap noarch 2.1.49-5.el9 baseos 33 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: parquet-libs x86_64 9.0.0-15.el9 epel 838 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: pciutils x86_64 3.7.0-7.el9 baseos 93 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: python3-ceph-argparse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 45 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: python3-ceph-common x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 185 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: python3-cephfs x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 204 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: python3-rados x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 324 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: python3-rbd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 305 k 2026-02-19T11:21:21.848 INFO:teuthology.orchestra.run.trial186.stdout: python3-rgw x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 100 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: qatlib x86_64 25.08.0-2.el9 appstream 240 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: qatzip-libs x86_64 1.3.1-1.el9 appstream 66 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: re2 x86_64 1:20211101-20.el9 epel 191 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: thrift x86_64 0.15.0-4.el9 epel 1.6 M 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout:Installing weak dependencies: 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs-daemon x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 37 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs-proxy2 x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 26 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: qatlib-service x86_64 25.08.0-2.el9 appstream 37 k 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:21:21.849 INFO:teuthology.orchestra.run.trial186.stdout:Install 34 Packages 2026-02-19T11:21:21.850 INFO:teuthology.orchestra.run.trial186.stdout:Upgrade 2 Packages 2026-02-19T11:21:21.850 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:21.850 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 67 M 2026-02-19T11:21:21.850 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:21:21.854 INFO:teuthology.orchestra.run.trial132.stdout:(29/36): liboath-2.6.12-1.el9.x86_64.rpm 174 kB/s | 49 kB 00:00 2026-02-19T11:21:21.925 INFO:teuthology.orchestra.run.trial132.stdout:(30/36): libunwind-1.6.2-1.el9.x86_64.rpm 243 kB/s | 67 kB 00:00 2026-02-19T11:21:22.278 INFO:teuthology.orchestra.run.trial132.stdout:(31/36): re2-20211101-20.el9.x86_64.rpm 544 kB/s | 191 kB 00:00 2026-02-19T11:21:22.305 INFO:teuthology.orchestra.run.trial132.stdout:(32/36): libarrow-9.0.0-15.el9.x86_64.rpm 4.4 MB/s | 4.4 MB 00:01 2026-02-19T11:21:22.348 INFO:teuthology.orchestra.run.trial132.stdout:(33/36): parquet-libs-9.0.0-15.el9.x86_64.rpm 1.7 MB/s | 838 kB 00:00 2026-02-19T11:21:22.598 INFO:teuthology.orchestra.run.trial186.stdout:(1/36): ceph-base-20.3.0-5314.g941b42ca.el9.x86 9.5 MB/s | 5.2 MB 00:00 2026-02-19T11:21:22.658 INFO:teuthology.orchestra.run.trial186.stdout:(2/36): ceph-selinux-20.3.0-5314.g941b42ca.el9. 417 kB/s | 25 kB 00:00 2026-02-19T11:21:22.729 INFO:teuthology.orchestra.run.trial186.stdout:(3/36): libcephfs-daemon-20.3.0-5314.g941b42ca. 522 kB/s | 37 kB 00:00 2026-02-19T11:21:22.796 INFO:teuthology.orchestra.run.trial186.stdout:(4/36): libcephfs-proxy2-20.3.0-5314.g941b42ca. 381 kB/s | 26 kB 00:00 2026-02-19T11:21:22.836 INFO:teuthology.orchestra.run.trial132.stdout:(34/36): librados2-20.3.0-5314.g941b42ca.el9.x8 6.6 MB/s | 3.5 MB 00:00 2026-02-19T11:21:22.847 INFO:teuthology.orchestra.run.trial186.stdout:(5/36): ceph-radosgw-20.3.0-5314.g941b42ca.el9. 17 MB/s | 13 MB 00:00 2026-02-19T11:21:22.884 INFO:teuthology.orchestra.run.trial186.stdout:(6/36): libcephfs2-20.3.0-5314.g941b42ca.el9.x8 10 MB/s | 908 kB 00:00 2026-02-19T11:21:22.885 INFO:teuthology.orchestra.run.trial186.stdout:(7/36): libradosstriper1-20.3.0-5314.g941b42ca. 6.2 MB/s | 248 kB 00:00 2026-02-19T11:21:22.902 INFO:teuthology.orchestra.run.trial132.stdout:(35/36): librbd1-20.3.0-5314.g941b42ca.el9.x86_ 5.1 MB/s | 2.8 MB 00:00 2026-02-19T11:21:22.908 INFO:teuthology.orchestra.run.trial132.stdout:(36/36): thrift-0.15.0-4.el9.x86_64.rpm 2.5 MB/s | 1.6 MB 00:00 2026-02-19T11:21:22.910 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:22.910 INFO:teuthology.orchestra.run.trial132.stdout:Total 20 MB/s | 67 MB 00:03 2026-02-19T11:21:22.925 INFO:teuthology.orchestra.run.trial186.stdout:(8/36): python3-ceph-argparse-20.3.0-5314.g941b 1.1 MB/s | 45 kB 00:00 2026-02-19T11:21:22.961 INFO:teuthology.orchestra.run.trial186.stdout:(9/36): python3-ceph-common-20.3.0-5314.g941b42 4.9 MB/s | 185 kB 00:00 2026-02-19T11:21:23.000 INFO:teuthology.orchestra.run.trial186.stdout:(10/36): python3-cephfs-20.3.0-5314.g941b42ca.e 5.2 MB/s | 204 kB 00:00 2026-02-19T11:21:23.001 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:21:23.019 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:21:23.019 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:21:23.041 INFO:teuthology.orchestra.run.trial186.stdout:(11/36): python3-rados-20.3.0-5314.g941b42ca.el 7.6 MB/s | 324 kB 00:00 2026-02-19T11:21:23.083 INFO:teuthology.orchestra.run.trial186.stdout:(12/36): python3-rbd-20.3.0-5314.g941b42ca.el9. 7.1 MB/s | 305 kB 00:00 2026-02-19T11:21:23.122 INFO:teuthology.orchestra.run.trial186.stdout:(13/36): python3-rgw-20.3.0-5314.g941b42ca.el9. 2.5 MB/s | 100 kB 00:00 2026-02-19T11:21:23.192 INFO:teuthology.orchestra.run.trial186.stdout:(14/36): librgw2-20.3.0-5314.g941b42ca.el9.x86_ 21 MB/s | 6.5 MB 00:00 2026-02-19T11:21:23.193 INFO:teuthology.orchestra.run.trial186.stdout:(15/36): mailcap-2.1.49-5.el9.noarch.rpm 468 kB/s | 33 kB 00:00 2026-02-19T11:21:23.262 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:21:23.262 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:21:23.338 INFO:teuthology.orchestra.run.trial186.stdout:(16/36): pciutils-3.7.0-7.el9.x86_64.rpm 640 kB/s | 93 kB 00:00 2026-02-19T11:21:23.434 INFO:teuthology.orchestra.run.trial186.stdout:(17/36): ceph-common-20.3.0-5314.g941b42ca.el9. 17 MB/s | 24 MB 00:01 2026-02-19T11:21:23.564 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:21:23.603 INFO:teuthology.orchestra.run.trial186.stdout:(18/36): boost-program-options-1.75.0-13.el9.x8 253 kB/s | 104 kB 00:00 2026-02-19T11:21:23.704 INFO:teuthology.orchestra.run.trial186.stdout:(19/36): librabbitmq-0.11.0-7.el9.x86_64.rpm 448 kB/s | 45 kB 00:00 2026-02-19T11:21:23.715 INFO:teuthology.orchestra.run.trial132.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/38 2026-02-19T11:21:23.720 INFO:teuthology.orchestra.run.trial132.stdout: Upgrading : librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:23.771 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:23.772 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:23.784 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:23.788 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_6 4/38 2026-02-19T11:21:23.789 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:23.808 INFO:teuthology.orchestra.run.trial186.stdout:(20/36): libnbd-1.20.3-4.el9.x86_64.rpm 348 kB/s | 164 kB 00:00 2026-02-19T11:21:23.814 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:23.816 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 6/38 2026-02-19T11:21:23.826 INFO:teuthology.orchestra.run.trial132.stdout: Installing : liboath-2.6.12-1.el9.x86_64 7/38 2026-02-19T11:21:23.828 INFO:teuthology.orchestra.run.trial132.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 8/38 2026-02-19T11:21:23.831 INFO:teuthology.orchestra.run.trial132.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 9/38 2026-02-19T11:21:23.835 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 10/38 2026-02-19T11:21:23.846 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9. 11/38 2026-02-19T11:21:23.858 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 12/38 2026-02-19T11:21:23.858 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 13/38 2026-02-19T11:21:23.881 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 13/38 2026-02-19T11:21:23.884 INFO:teuthology.orchestra.run.trial186.stdout:(21/36): libpmemobj-1.12.1-1.el9.x86_64.rpm 355 kB/s | 160 kB 00:00 2026-02-19T11:21:23.886 INFO:teuthology.orchestra.run.trial132.stdout: Installing : thrift-0.15.0-4.el9.x86_64 14/38 2026-02-19T11:21:23.915 INFO:teuthology.orchestra.run.trial132.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/38 2026-02-19T11:21:23.919 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 16/38 2026-02-19T11:21:23.925 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/38 2026-02-19T11:21:23.927 INFO:teuthology.orchestra.run.trial132.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/38 2026-02-19T11:21:23.931 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 19/38 2026-02-19T11:21:24.002 INFO:teuthology.orchestra.run.trial186.stdout:(22/36): lttng-ust-2.12.0-6.el9.x86_64.rpm 1.5 MB/s | 292 kB 00:00 2026-02-19T11:21:24.007 INFO:teuthology.orchestra.run.trial186.stdout:(23/36): librdkafka-1.6.1-102.el9.x86_64.rpm 2.1 MB/s | 662 kB 00:00 2026-02-19T11:21:24.053 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 20/38 2026-02-19T11:21:24.054 INFO:teuthology.orchestra.run.trial132.stdout: Upgrading : librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 21/38 2026-02-19T11:21:24.062 INFO:teuthology.orchestra.run.trial186.stdout:(24/36): qatlib-25.08.0-2.el9.x86_64.rpm 1.3 MB/s | 240 kB 00:00 2026-02-19T11:21:24.080 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 21/38 2026-02-19T11:21:24.083 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 22/38 2026-02-19T11:21:24.086 INFO:teuthology.orchestra.run.trial186.stdout:(25/36): qatlib-service-25.08.0-2.el9.x86_64.rp 444 kB/s | 37 kB 00:00 2026-02-19T11:21:24.088 INFO:teuthology.orchestra.run.trial186.stdout:(26/36): qatzip-libs-1.3.1-1.el9.x86_64.rpm 814 kB/s | 66 kB 00:00 2026-02-19T11:21:24.089 INFO:teuthology.orchestra.run.trial132.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 23/38 2026-02-19T11:21:24.347 INFO:teuthology.orchestra.run.trial186.stdout:(27/36): libarrow-doc-9.0.0-15.el9.noarch.rpm 96 kB/s | 25 kB 00:00 2026-02-19T11:21:24.373 INFO:teuthology.orchestra.run.trial132.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 24/38 2026-02-19T11:21:24.375 INFO:teuthology.orchestra.run.trial132.stdout: Installing : librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 25/38 2026-02-19T11:21:24.392 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 25/38 2026-02-19T11:21:24.398 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 26/38 2026-02-19T11:21:24.403 INFO:teuthology.orchestra.run.trial132.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 27/38 2026-02-19T11:21:24.405 INFO:teuthology.orchestra.run.trial132.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 28/38 2026-02-19T11:21:24.406 INFO:teuthology.orchestra.run.trial132.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-19T11:21:24.424 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-19T11:21:24.427 INFO:teuthology.orchestra.run.trial132.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 30/38 2026-02-19T11:21:24.462 INFO:teuthology.orchestra.run.trial132.stdout: Installing : mailcap-2.1.49-5.el9.noarch 31/38 2026-02-19T11:21:24.464 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x8 32/38 2026-02-19T11:21:24.470 INFO:teuthology.orchestra.run.trial186.stdout:(28/36): liboath-2.6.12-1.el9.x86_64.rpm 397 kB/s | 49 kB 00:00 2026-02-19T11:21:24.526 INFO:teuthology.orchestra.run.trial186.stdout:(29/36): gperftools-libs-2.9.1-3.el9.x86_64.rpm 664 kB/s | 308 kB 00:00 2026-02-19T11:21:24.562 INFO:teuthology.orchestra.run.trial186.stdout:(30/36): libunwind-1.6.2-1.el9.x86_64.rpm 735 kB/s | 67 kB 00:00 2026-02-19T11:21:24.711 INFO:teuthology.orchestra.run.trial186.stdout:(31/36): parquet-libs-9.0.0-15.el9.x86_64.rpm 4.4 MB/s | 838 kB 00:00 2026-02-19T11:21:24.711 INFO:teuthology.orchestra.run.trial186.stdout:(32/36): re2-20211101-20.el9.x86_64.rpm 1.3 MB/s | 191 kB 00:00 2026-02-19T11:21:24.826 INFO:teuthology.orchestra.run.trial186.stdout:(33/36): librados2-20.3.0-5314.g941b42ca.el9.x8 31 MB/s | 3.5 MB 00:00 2026-02-19T11:21:24.857 INFO:teuthology.orchestra.run.trial186.stdout:(34/36): thrift-0.15.0-4.el9.x86_64.rpm 11 MB/s | 1.6 MB 00:00 2026-02-19T11:21:24.879 INFO:teuthology.orchestra.run.trial186.stdout:(35/36): librbd1-20.3.0-5314.g941b42ca.el9.x86_ 53 MB/s | 2.8 MB 00:00 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /sys 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /proc 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /mnt 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /var/tmp 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /home 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /root 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout:skipping the directory /tmp 2026-02-19T11:21:24.977 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:24.988 INFO:teuthology.orchestra.run.trial186.stdout:(36/36): libarrow-9.0.0-15.el9.x86_64.rpm 4.9 MB/s | 4.4 MB 00:00 2026-02-19T11:21:24.990 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:24.990 INFO:teuthology.orchestra.run.trial186.stdout:Total 21 MB/s | 67 MB 00:03 2026-02-19T11:21:25.085 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:21:25.104 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:21:25.104 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:21:25.349 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:21:25.349 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:21:25.555 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 36/38 2026-02-19T11:21:25.558 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:25.560 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:25.578 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 36/38 2026-02-19T11:21:25.578 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:25.578 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-19T11:21:25.578 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-19T11:21:25.578 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-19T11:21:25.578 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:25.580 INFO:teuthology.orchestra.run.trial010.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-19T11:21:25.591 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-19T11:21:25.591 INFO:teuthology.orchestra.run.trial010.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:25.646 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:25.646 INFO:teuthology.orchestra.run.trial010.stdout:Creating group 'qat' with GID 992. 2026-02-19T11:21:25.646 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:25.651 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:21:25.807 INFO:teuthology.orchestra.run.trial186.stdout: Installing : lttng-ust-2.12.0-6.el9.x86_64 1/38 2026-02-19T11:21:25.810 INFO:teuthology.orchestra.run.trial186.stdout: Upgrading : librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:25.822 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:25.826 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 34/38 2026-02-19T11:21:25.860 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:25.861 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:25.865 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 34/38 2026-02-19T11:21:25.865 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-19T11:21:25.865 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-19T11:21:25.865 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:25.869 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:25.874 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:25.877 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_6 4/38 2026-02-19T11:21:25.877 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:25.904 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:25.906 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 6/38 2026-02-19T11:21:25.914 INFO:teuthology.orchestra.run.trial186.stdout: Installing : liboath-2.6.12-1.el9.x86_64 7/38 2026-02-19T11:21:25.916 INFO:teuthology.orchestra.run.trial186.stdout: Installing : librdkafka-1.6.1-102.el9.x86_64 8/38 2026-02-19T11:21:25.919 INFO:teuthology.orchestra.run.trial186.stdout: Installing : librabbitmq-0.11.0-7.el9.x86_64 9/38 2026-02-19T11:21:25.923 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libpmemobj-1.12.1-1.el9.x86_64 10/38 2026-02-19T11:21:25.935 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9. 11/38 2026-02-19T11:21:25.938 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 1/38 2026-02-19T11:21:25.938 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:25.938 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:25.938 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 4/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 6/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 7/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 8/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 9/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9. 10/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x8 11/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 12/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 13/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 14/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 15/38 2026-02-19T11:21:25.939 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 16/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 17/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 18/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 19/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 20/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 21/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 22/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 23/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 24/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 25/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 26/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 27/38 2026-02-19T11:21:25.940 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 28/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 29/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 30/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 32/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : re2-1:20211101-20.el9.x86_64 33/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 34/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 36/38 2026-02-19T11:21:25.941 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 37/38 2026-02-19T11:21:25.946 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 12/38 2026-02-19T11:21:25.947 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 13/38 2026-02-19T11:21:25.968 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 13/38 2026-02-19T11:21:25.972 INFO:teuthology.orchestra.run.trial186.stdout: Installing : thrift-0.15.0-4.el9.x86_64 14/38 2026-02-19T11:21:25.998 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout:Upgraded: 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:25.999 INFO:teuthology.orchestra.run.trial010.stdout: ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-19T11:21:26.000 INFO:teuthology.orchestra.run.trial010.stdout: libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.001 INFO:teuthology.orchestra.run.trial010.stdout: python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: re2-1:20211101-20.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:26.002 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:26.003 INFO:teuthology.orchestra.run.trial186.stdout: Installing : re2-1:20211101-20.el9.x86_64 15/38 2026-02-19T11:21:26.006 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libarrow-9.0.0-15.el9.x86_64 16/38 2026-02-19T11:21:26.012 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libunwind-1.6.2-1.el9.x86_64 17/38 2026-02-19T11:21:26.014 INFO:teuthology.orchestra.run.trial186.stdout: Installing : gperftools-libs-2.9.1-3.el9.x86_64 18/38 2026-02-19T11:21:26.019 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libarrow-doc-9.0.0-15.el9.noarch 19/38 2026-02-19T11:21:26.041 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-test 2026-02-19T11:21:26.144 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libnbd-1.20.3-4.el9.x86_64 20/38 2026-02-19T11:21:26.145 INFO:teuthology.orchestra.run.trial186.stdout: Upgrading : librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 21/38 2026-02-19T11:21:26.172 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 21/38 2026-02-19T11:21:26.174 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 22/38 2026-02-19T11:21:26.180 INFO:teuthology.orchestra.run.trial186.stdout: Installing : boost-program-options-1.75.0-13.el9.x86_64 23/38 2026-02-19T11:21:26.356 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:12 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:26.440 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:26.441 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:26.441 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repository Size 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: ceph-test x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 78 M 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout:Installing dependencies: 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: hwloc-libs x86_64 2.4.1-6.el9 baseos 2.1 M 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: libatomic x86_64 11.5.0-14.el9 baseos 23 k 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: libcephsqlite x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 159 k 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: lksctp-tools x86_64 1.0.19-2.el9 baseos 94 k 2026-02-19T11:21:26.442 INFO:teuthology.orchestra.run.trial010.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout: yaml-cpp x86_64 0.6.3-5.el9 epel 122 k 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:26.443 INFO:teuthology.orchestra.run.trial010.stdout:Install 10 Packages 2026-02-19T11:21:26.444 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:26.444 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 82 M 2026-02-19T11:21:26.444 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 339 M 2026-02-19T11:21:26.444 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:26.468 INFO:teuthology.orchestra.run.trial186.stdout: Installing : parquet-libs-9.0.0-15.el9.x86_64 24/38 2026-02-19T11:21:26.469 INFO:teuthology.orchestra.run.trial186.stdout: Installing : librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 25/38 2026-02-19T11:21:26.486 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 25/38 2026-02-19T11:21:26.490 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 26/38 2026-02-19T11:21:26.495 INFO:teuthology.orchestra.run.trial186.stdout: Installing : pciutils-3.7.0-7.el9.x86_64 27/38 2026-02-19T11:21:26.497 INFO:teuthology.orchestra.run.trial186.stdout: Installing : qatlib-25.08.0-2.el9.x86_64 28/38 2026-02-19T11:21:26.498 INFO:teuthology.orchestra.run.trial186.stdout: Installing : qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-19T11:21:26.515 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: qatlib-service-25.08.0-2.el9.x86_64 29/38 2026-02-19T11:21:26.518 INFO:teuthology.orchestra.run.trial186.stdout: Installing : qatzip-libs-1.3.1-1.el9.x86_64 30/38 2026-02-19T11:21:26.551 INFO:teuthology.orchestra.run.trial186.stdout: Installing : mailcap-2.1.49-5.el9.noarch 31/38 2026-02-19T11:21:26.553 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x8 32/38 2026-02-19T11:21:27.039 INFO:teuthology.orchestra.run.trial010.stdout:(1/10): libcephsqlite-20.3.0-5314.g941b42ca.el9 1.8 MB/s | 159 kB 00:00 2026-02-19T11:21:27.095 INFO:teuthology.orchestra.run.trial010.stdout:(2/10): libatomic-11.5.0-14.el9.x86_64.rpm 409 kB/s | 23 kB 00:00 2026-02-19T11:21:27.134 INFO:teuthology.orchestra.run.trial010.stdout:(3/10): lksctp-tools-1.0.19-2.el9.x86_64.rpm 2.4 MB/s | 94 kB 00:00 2026-02-19T11:21:27.146 INFO:teuthology.orchestra.run.trial010.stdout:(4/10): hwloc-libs-2.4.1-6.el9.x86_64.rpm 11 MB/s | 2.1 MB 00:00 2026-02-19T11:21:27.300 INFO:teuthology.orchestra.run.trial010.stdout:(5/10): libxslt-1.1.34-12.el9.x86_64.rpm 1.4 MB/s | 233 kB 00:00 2026-02-19T11:21:27.352 INFO:teuthology.orchestra.run.trial010.stdout:(6/10): protobuf-3.14.0-17.el9.x86_64.rpm 4.9 MB/s | 1.0 MB 00:00 2026-02-19T11:21:27.353 INFO:teuthology.orchestra.run.trial010.stdout:(7/10): socat-1.7.4.1-8.el9.x86_64.rpm 5.6 MB/s | 303 kB 00:00 2026-02-19T11:21:27.378 INFO:teuthology.orchestra.run.trial010.stdout:(8/10): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.4 MB/s | 64 kB 00:00 2026-02-19T11:21:27.493 INFO:teuthology.orchestra.run.trial010.stdout:(9/10): yaml-cpp-0.6.3-5.el9.x86_64.rpm 872 kB/s | 122 kB 00:00 2026-02-19T11:21:27.660 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:27.662 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:27.928 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 33/38 2026-02-19T11:21:27.931 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 34/38 2026-02-19T11:21:27.976 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 34/38 2026-02-19T11:21:27.976 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /usr/lib/systemd/system/ceph.target. 2026-02-19T11:21:27.976 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-crash.service → /usr/lib/systemd/system/ceph-crash.service. 2026-02-19T11:21:27.976 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:27.979 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:28.503 INFO:teuthology.orchestra.run.trial010.stdout:(10/10): ceph-test-20.3.0-5314.g941b42ca.el9.x8 50 MB/s | 78 MB 00:01 2026-02-19T11:21:28.505 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:28.505 INFO:teuthology.orchestra.run.trial010.stdout:Total 40 MB/s | 82 MB 00:02 2026-02-19T11:21:28.570 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:28.582 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:28.582 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:28.868 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:28.868 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:29.180 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:29.188 INFO:teuthology.orchestra.run.trial010.stdout: Installing : yaml-cpp-0.6.3-5.el9.x86_64 1/10 2026-02-19T11:21:29.197 INFO:teuthology.orchestra.run.trial010.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 2/10 2026-02-19T11:21:29.202 INFO:teuthology.orchestra.run.trial010.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 3/10 2026-02-19T11:21:29.206 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 4/10 2026-02-19T11:21:29.211 INFO:teuthology.orchestra.run.trial010.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 5/10 2026-02-19T11:21:29.213 INFO:teuthology.orchestra.run.trial010.stdout: Installing : lksctp-tools-1.0.19-2.el9.x86_64 6/10 2026-02-19T11:21:29.223 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libatomic-11.5.0-14.el9.x86_64 7/10 2026-02-19T11:21:29.231 INFO:teuthology.orchestra.run.trial010.stdout: Installing : hwloc-libs-2.4.1-6.el9.x86_64 8/10 2026-02-19T11:21:29.232 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 9/10 2026-02-19T11:21:30.422 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:30.422 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /sys 2026-02-19T11:21:30.422 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /proc 2026-02-19T11:21:30.422 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /mnt 2026-02-19T11:21:30.423 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /var/tmp 2026-02-19T11:21:30.423 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /home 2026-02-19T11:21:30.423 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /root 2026-02-19T11:21:30.423 INFO:teuthology.orchestra.run.trial132.stdout:skipping the directory /tmp 2026-02-19T11:21:30.423 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:30.995 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 36/38 2026-02-19T11:21:31.019 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 36/38 2026-02-19T11:21:31.019 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:31.019 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-19T11:21:31.019 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-19T11:21:31.019 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-19T11:21:31.019 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:31.021 INFO:teuthology.orchestra.run.trial132.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-19T11:21:31.034 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-19T11:21:31.034 INFO:teuthology.orchestra.run.trial132.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:31.087 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:31.087 INFO:teuthology.orchestra.run.trial132.stdout:Creating group 'qat' with GID 992. 2026-02-19T11:21:31.087 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 1/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 4/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 6/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 7/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 8/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 9/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9. 10/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x8 11/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 12/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 13/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 14/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 15/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 16/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 17/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 18/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 19/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 20/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 21/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 22/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 23/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 24/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 25/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 26/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 27/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 28/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 29/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 30/38 2026-02-19T11:21:31.379 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/38 2026-02-19T11:21:31.380 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 32/38 2026-02-19T11:21:31.380 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : re2-1:20211101-20.el9.x86_64 33/38 2026-02-19T11:21:31.380 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 34/38 2026-02-19T11:21:31.380 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:31.380 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 36/38 2026-02-19T11:21:31.380 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 37/38 2026-02-19T11:21:31.441 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout:Upgraded: 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout: librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout: librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout: ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.442 INFO:teuthology.orchestra.run.trial132.stdout: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-19T11:21:31.443 INFO:teuthology.orchestra.run.trial132.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.444 INFO:teuthology.orchestra.run.trial132.stdout: python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: re2-1:20211101-20.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:31.445 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:31.481 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-test 2026-02-19T11:21:31.790 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:13 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:31.874 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repository Size 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: ceph-test x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 78 M 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Installing dependencies: 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: hwloc-libs x86_64 2.4.1-6.el9 baseos 2.1 M 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: libatomic x86_64 11.5.0-14.el9 baseos 23 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: libcephsqlite x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 159 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: lksctp-tools x86_64 1.0.19-2.el9 baseos 94 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: yaml-cpp x86_64 0.6.3-5.el9 epel 122 k 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Install 10 Packages 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 82 M 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 339 M 2026-02-19T11:21:31.875 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:21:32.440 INFO:teuthology.orchestra.run.trial132.stdout:(1/10): hwloc-libs-2.4.1-6.el9.x86_64.rpm 26 MB/s | 2.1 MB 00:00 2026-02-19T11:21:32.457 INFO:teuthology.orchestra.run.trial132.stdout:(2/10): libcephsqlite-20.3.0-5314.g941b42ca.el9 1.6 MB/s | 159 kB 00:00 2026-02-19T11:21:32.464 INFO:teuthology.orchestra.run.trial132.stdout:(3/10): libatomic-11.5.0-14.el9.x86_64.rpm 981 kB/s | 23 kB 00:00 2026-02-19T11:21:32.489 INFO:teuthology.orchestra.run.trial132.stdout:(4/10): lksctp-tools-1.0.19-2.el9.x86_64.rpm 2.9 MB/s | 94 kB 00:00 2026-02-19T11:21:32.492 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:32.492 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /sys 2026-02-19T11:21:32.492 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /proc 2026-02-19T11:21:32.492 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /mnt 2026-02-19T11:21:32.492 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /var/tmp 2026-02-19T11:21:32.492 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /home 2026-02-19T11:21:32.493 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /root 2026-02-19T11:21:32.493 INFO:teuthology.orchestra.run.trial186.stdout:skipping the directory /tmp 2026-02-19T11:21:32.493 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:32.627 INFO:teuthology.orchestra.run.trial132.stdout:(5/10): libxslt-1.1.34-12.el9.x86_64.rpm 1.4 MB/s | 233 kB 00:00 2026-02-19T11:21:32.680 INFO:teuthology.orchestra.run.trial132.stdout:(6/10): socat-1.7.4.1-8.el9.x86_64.rpm 5.6 MB/s | 303 kB 00:00 2026-02-19T11:21:32.684 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 9/10 2026-02-19T11:21:32.695 INFO:teuthology.orchestra.run.trial132.stdout:(7/10): protobuf-3.14.0-17.el9.x86_64.rpm 4.9 MB/s | 1.0 MB 00:00 2026-02-19T11:21:32.703 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 10/10 2026-02-19T11:21:32.706 INFO:teuthology.orchestra.run.trial132.stdout:(8/10): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.4 MB/s | 64 kB 00:00 2026-02-19T11:21:32.768 INFO:teuthology.orchestra.run.trial132.stdout:(9/10): yaml-cpp-0.6.3-5.el9.x86_64.rpm 1.6 MB/s | 122 kB 00:00 2026-02-19T11:21:33.048 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 10/10 2026-02-19T11:21:33.048 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 1/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 2/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : hwloc-libs-2.4.1-6.el9.x86_64 3/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libatomic-11.5.0-14.el9.x86_64 4/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : lksctp-tools-1.0.19-2.el9.x86_64 5/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 6/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 7/10 2026-02-19T11:21:33.049 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 8/10 2026-02-19T11:21:33.050 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 9/10 2026-02-19T11:21:33.081 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 36/38 2026-02-19T11:21:33.103 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : yaml-cpp-0.6.3-5.el9.x86_64 10/10 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: hwloc-libs-2.4.1-6.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: libatomic-11.5.0-14.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: lksctp-tools-1.0.19-2.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-19T11:21:33.104 INFO:teuthology.orchestra.run.trial010.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial010.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial010.stdout: yaml-cpp-0.6.3-5.el9.x86_64 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 36/38 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:33.105 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-radosgw@*.service" escaped as "ceph-radosgw@\x2a.service". 2026-02-19T11:21:33.106 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-19T11:21:33.106 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-radosgw.target → /usr/lib/systemd/system/ceph-radosgw.target. 2026-02-19T11:21:33.106 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:33.107 INFO:teuthology.orchestra.run.trial186.stdout: Cleanup : librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-19T11:21:33.118 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: librbd1-2:16.2.4-5.el9.x86_64 37/38 2026-02-19T11:21:33.118 INFO:teuthology.orchestra.run.trial186.stdout: Cleanup : librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:33.142 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph 2026-02-19T11:21:33.176 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: librados2-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:33.176 INFO:teuthology.orchestra.run.trial186.stdout:Creating group 'qat' with GID 992. 2026-02-19T11:21:33.176 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:33.450 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:19 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 1/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 3/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 4/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_6 5/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_6 6/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 7/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_6 8/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 9/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9. 10/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x8 11/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 12/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 13/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 14/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 15/38 2026-02-19T11:21:33.472 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : mailcap-2.1.49-5.el9.noarch 16/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : pciutils-3.7.0-7.el9.x86_64 17/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : boost-program-options-1.75.0-13.el9.x86_64 18/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libnbd-1.20.3-4.el9.x86_64 19/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libpmemobj-1.12.1-1.el9.x86_64 20/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librabbitmq-0.11.0-7.el9.x86_64 21/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librdkafka-1.6.1-102.el9.x86_64 22/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : lttng-ust-2.12.0-6.el9.x86_64 23/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : qatlib-25.08.0-2.el9.x86_64 24/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : qatlib-service-25.08.0-2.el9.x86_64 25/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : qatzip-libs-1.3.1-1.el9.x86_64 26/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : gperftools-libs-2.9.1-3.el9.x86_64 27/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libarrow-9.0.0-15.el9.x86_64 28/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libarrow-doc-9.0.0-15.el9.noarch 29/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : liboath-2.6.12-1.el9.x86_64 30/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libunwind-1.6.2-1.el9.x86_64 31/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : parquet-libs-9.0.0-15.el9.x86_64 32/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : re2-1:20211101-20.el9.x86_64 33/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : thrift-0.15.0-4.el9.x86_64 34/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 35/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librados2-2:16.2.4-5.el9.x86_64 36/38 2026-02-19T11:21:33.473 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 37/38 2026-02-19T11:21:33.536 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librbd1-2:16.2.4-5.el9.x86_64 38/38 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout:Upgraded: 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout: librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout: librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout: boost-program-options-1.75.0-13.el9.x86_64 2026-02-19T11:21:33.538 INFO:teuthology.orchestra.run.trial186.stdout: ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: ceph-radosgw-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: ceph-selinux-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: gperftools-libs-2.9.1-3.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libarrow-9.0.0-15.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libarrow-doc-9.0.0-15.el9.noarch 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs-daemon-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs-proxy2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libnbd-1.20.3-4.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: liboath-2.6.12-1.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libpmemobj-1.12.1-1.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: librabbitmq-0.11.0-7.el9.x86_64 2026-02-19T11:21:33.539 INFO:teuthology.orchestra.run.trial186.stdout: libradosstriper1-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: librdkafka-1.6.1-102.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: librgw2-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: libunwind-1.6.2-1.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: lttng-ust-2.12.0-6.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: mailcap-2.1.49-5.el9.noarch 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: parquet-libs-9.0.0-15.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: pciutils-3.7.0-7.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: python3-ceph-argparse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: python3-ceph-common-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.540 INFO:teuthology.orchestra.run.trial186.stdout: python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout: qatlib-25.08.0-2.el9.x86_64 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout: qatlib-service-25.08.0-2.el9.x86_64 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout: qatzip-libs-1.3.1-1.el9.x86_64 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout: re2-1:20211101-20.el9.x86_64 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout: thrift-0.15.0-4.el9.x86_64 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:33.541 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout:======================================================================================= 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repository Size 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout:======================================================================================= 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout: ceph x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 6.5 k 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout:Installing dependencies: 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout: ceph-grafana-dashboards noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 57 k 2026-02-19T11:21:33.542 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mds x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.4 M 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 936 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-modules-core noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 297 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mon x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 5.0 M 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-osd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 167 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-osd-classic x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 16 M 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-osd-crimson x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 19 M 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ceph-prometheus-alerts noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 17 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: cephadm noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 1.0 M 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-19T11:21:33.543 INFO:teuthology.orchestra.run.trial010.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-19T11:21:33.544 INFO:teuthology.orchestra.run.trial010.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-19T11:21:33.545 INFO:teuthology.orchestra.run.trial010.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-19T11:21:33.546 INFO:teuthology.orchestra.run.trial010.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:Installing weak dependencies: 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-cephadm noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 184 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-dashboard noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 51 M 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-diskprediction-local noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 7.4 M 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-k8sevents noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 22 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-rook noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 50 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: ceph-volume noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 301 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:======================================================================================= 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:Install 95 Packages 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 158 M 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 731 M 2026-02-19T11:21:33.547 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:33.581 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-test 2026-02-19T11:21:33.901 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:13 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:21:33.964 INFO:teuthology.orchestra.run.trial132.stdout:(10/10): ceph-test-20.3.0-5314.g941b42ca.el9.x8 49 MB/s | 78 MB 00:01 2026-02-19T11:21:33.967 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:33.967 INFO:teuthology.orchestra.run.trial132.stdout:Total 39 MB/s | 82 MB 00:02 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repository Size 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: ceph-test x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 78 M 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout:Installing dependencies: 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: hwloc-libs x86_64 2.4.1-6.el9 baseos 2.1 M 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: libatomic x86_64 11.5.0-14.el9 baseos 23 k 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: libcephsqlite x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 159 k 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: libxslt x86_64 1.1.34-12.el9 appstream 233 k 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: lksctp-tools x86_64 1.0.19-2.el9 baseos 94 k 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: protobuf x86_64 3.14.0-17.el9 appstream 1.0 M 2026-02-19T11:21:33.984 INFO:teuthology.orchestra.run.trial186.stdout: socat x86_64 1.7.4.1-8.el9 appstream 303 k 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout: xmlstarlet x86_64 1.6.1-20.el9 appstream 64 k 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout: yaml-cpp x86_64 0.6.3-5.el9 epel 122 k 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout:Install 10 Packages 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 82 M 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 339 M 2026-02-19T11:21:33.985 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:21:34.031 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:21:34.043 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:21:34.043 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:21:34.113 INFO:teuthology.orchestra.run.trial010.stdout:(1/95): ceph-20.3.0-5314.g941b42ca.el9.x86_64.r 127 kB/s | 6.5 kB 00:00 2026-02-19T11:21:34.201 INFO:teuthology.orchestra.run.trial010.stdout:(2/95): ceph-mgr-20.3.0-5314.g941b42ca.el9.x86_ 6.6 MB/s | 936 kB 00:00 2026-02-19T11:21:34.226 INFO:teuthology.orchestra.run.trial010.stdout:(3/95): ceph-mds-20.3.0-5314.g941b42ca.el9.x86_ 14 MB/s | 2.4 MB 00:00 2026-02-19T11:21:34.230 INFO:teuthology.orchestra.run.trial010.stdout:(4/95): ceph-osd-20.3.0-5314.g941b42ca.el9.x86_ 5.7 MB/s | 167 kB 00:00 2026-02-19T11:21:34.327 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:21:34.327 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:21:34.406 INFO:teuthology.orchestra.run.trial010.stdout:(5/95): ceph-mon-20.3.0-5314.g941b42ca.el9.x86_ 17 MB/s | 5.0 MB 00:00 2026-02-19T11:21:34.450 INFO:teuthology.orchestra.run.trial010.stdout:(6/95): ceph-grafana-dashboards-20.3.0-5314.g94 1.2 MB/s | 57 kB 00:00 2026-02-19T11:21:34.500 INFO:teuthology.orchestra.run.trial010.stdout:(7/95): ceph-mgr-cephadm-20.3.0-5314.g941b42ca. 3.6 MB/s | 184 kB 00:00 2026-02-19T11:21:34.545 INFO:teuthology.orchestra.run.trial186.stdout:(1/10): libcephsqlite-20.3.0-5314.g941b42ca.el9 449 kB/s | 159 kB 00:00 2026-02-19T11:21:34.636 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:21:34.644 INFO:teuthology.orchestra.run.trial132.stdout: Installing : yaml-cpp-0.6.3-5.el9.x86_64 1/10 2026-02-19T11:21:34.653 INFO:teuthology.orchestra.run.trial132.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 2/10 2026-02-19T11:21:34.658 INFO:teuthology.orchestra.run.trial132.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 3/10 2026-02-19T11:21:34.662 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 4/10 2026-02-19T11:21:34.668 INFO:teuthology.orchestra.run.trial132.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 5/10 2026-02-19T11:21:34.670 INFO:teuthology.orchestra.run.trial132.stdout: Installing : lksctp-tools-1.0.19-2.el9.x86_64 6/10 2026-02-19T11:21:34.679 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libatomic-11.5.0-14.el9.x86_64 7/10 2026-02-19T11:21:34.688 INFO:teuthology.orchestra.run.trial132.stdout: Installing : hwloc-libs-2.4.1-6.el9.x86_64 8/10 2026-02-19T11:21:34.688 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 9/10 2026-02-19T11:21:34.792 INFO:teuthology.orchestra.run.trial186.stdout:(2/10): libatomic-11.5.0-14.el9.x86_64.rpm 92 kB/s | 23 kB 00:00 2026-02-19T11:21:34.893 INFO:teuthology.orchestra.run.trial010.stdout:(8/95): ceph-osd-classic-20.3.0-5314.g941b42ca. 23 MB/s | 16 MB 00:00 2026-02-19T11:21:34.935 INFO:teuthology.orchestra.run.trial186.stdout:(3/10): hwloc-libs-2.4.1-6.el9.x86_64.rpm 2.8 MB/s | 2.1 MB 00:00 2026-02-19T11:21:35.030 INFO:teuthology.orchestra.run.trial186.stdout:(4/10): lksctp-tools-1.0.19-2.el9.x86_64.rpm 396 kB/s | 94 kB 00:00 2026-02-19T11:21:35.146 INFO:teuthology.orchestra.run.trial186.stdout:(5/10): libxslt-1.1.34-12.el9.x86_64.rpm 1.1 MB/s | 233 kB 00:00 2026-02-19T11:21:35.224 INFO:teuthology.orchestra.run.trial186.stdout:(6/10): protobuf-3.14.0-17.el9.x86_64.rpm 5.2 MB/s | 1.0 MB 00:00 2026-02-19T11:21:35.225 INFO:teuthology.orchestra.run.trial186.stdout:(7/10): socat-1.7.4.1-8.el9.x86_64.rpm 3.7 MB/s | 303 kB 00:00 2026-02-19T11:21:35.248 INFO:teuthology.orchestra.run.trial186.stdout:(8/10): xmlstarlet-1.6.1-20.el9.x86_64.rpm 2.7 MB/s | 64 kB 00:00 2026-02-19T11:21:35.389 INFO:teuthology.orchestra.run.trial010.stdout:(9/95): ceph-mgr-diskprediction-local-20.3.0-53 15 MB/s | 7.4 MB 00:00 2026-02-19T11:21:35.426 INFO:teuthology.orchestra.run.trial010.stdout:(10/95): ceph-mgr-k8sevents-20.3.0-5314.g941b42 602 kB/s | 22 kB 00:00 2026-02-19T11:21:35.469 INFO:teuthology.orchestra.run.trial010.stdout:(11/95): ceph-mgr-modules-core-20.3.0-5314.g941 6.7 MB/s | 297 kB 00:00 2026-02-19T11:21:35.511 INFO:teuthology.orchestra.run.trial010.stdout:(12/95): ceph-osd-crimson-20.3.0-5314.g941b42ca 15 MB/s | 19 MB 00:01 2026-02-19T11:21:35.512 INFO:teuthology.orchestra.run.trial010.stdout:(13/95): ceph-mgr-rook-20.3.0-5314.g941b42ca.el 1.2 MB/s | 50 kB 00:00 2026-02-19T11:21:35.542 INFO:teuthology.orchestra.run.trial010.stdout:(14/95): ceph-prometheus-alerts-20.3.0-5314.g94 571 kB/s | 17 kB 00:00 2026-02-19T11:21:35.547 INFO:teuthology.orchestra.run.trial010.stdout:(15/95): ceph-volume-20.3.0-5314.g941b42ca.el9. 8.4 MB/s | 301 kB 00:00 2026-02-19T11:21:35.605 INFO:teuthology.orchestra.run.trial010.stdout:(16/95): cryptsetup-2.8.1-3.el9.x86_64.rpm 5.9 MB/s | 351 kB 00:00 2026-02-19T11:21:35.620 INFO:teuthology.orchestra.run.trial010.stdout:(17/95): cephadm-20.3.0-5314.g941b42ca.el9.noar 13 MB/s | 1.0 MB 00:00 2026-02-19T11:21:35.626 INFO:teuthology.orchestra.run.trial010.stdout:(18/95): ledmon-libs-1.1.0-3.el9.x86_64.rpm 1.9 MB/s | 40 kB 00:00 2026-02-19T11:21:35.650 INFO:teuthology.orchestra.run.trial010.stdout:(19/95): libgfortran-11.5.0-14.el9.x86_64.rpm 32 MB/s | 794 kB 00:00 2026-02-19T11:21:35.651 INFO:teuthology.orchestra.run.trial010.stdout:(20/95): libconfig-1.7.2-9.el9.x86_64.rpm 2.3 MB/s | 72 kB 00:00 2026-02-19T11:21:35.671 INFO:teuthology.orchestra.run.trial010.stdout:(21/95): python3-cffi-1.14.5-5.el9.x86_64.rpm 12 MB/s | 253 kB 00:00 2026-02-19T11:21:35.674 INFO:teuthology.orchestra.run.trial010.stdout:(22/95): libquadmath-11.5.0-14.el9.x86_64.rpm 7.4 MB/s | 184 kB 00:00 2026-02-19T11:21:35.694 INFO:teuthology.orchestra.run.trial010.stdout:(23/95): python3-cryptography-36.0.1-5.el9.x86_ 54 MB/s | 1.2 MB 00:00 2026-02-19T11:21:35.697 INFO:teuthology.orchestra.run.trial010.stdout:(24/95): python3-ply-3.11-14.el9.noarch.rpm 4.7 MB/s | 106 kB 00:00 2026-02-19T11:21:35.717 INFO:teuthology.orchestra.run.trial010.stdout:(25/95): python3-pycparser-2.20-6.el9.noarch.rp 6.0 MB/s | 135 kB 00:00 2026-02-19T11:21:35.720 INFO:teuthology.orchestra.run.trial010.stdout:(26/95): python3-requests-2.25.1-10.el9.noarch. 5.3 MB/s | 126 kB 00:00 2026-02-19T11:21:35.743 INFO:teuthology.orchestra.run.trial010.stdout:(27/95): python3-urllib3-1.26.5-7.el9.noarch.rp 8.0 MB/s | 218 kB 00:00 2026-02-19T11:21:35.744 INFO:teuthology.orchestra.run.trial010.stdout:(28/95): unzip-6.0-59.el9.x86_64.rpm 7.3 MB/s | 182 kB 00:00 2026-02-19T11:21:35.770 INFO:teuthology.orchestra.run.trial010.stdout:(29/95): zip-3.0-35.el9.x86_64.rpm 9.5 MB/s | 266 kB 00:00 2026-02-19T11:21:35.785 INFO:teuthology.orchestra.run.trial186.stdout:(9/10): yaml-cpp-0.6.3-5.el9.x86_64.rpm 218 kB/s | 122 kB 00:00 2026-02-19T11:21:35.825 INFO:teuthology.orchestra.run.trial010.stdout:(30/95): flexiblas-3.0.4-9.el9.x86_64.rpm 366 kB/s | 30 kB 00:00 2026-02-19T11:21:35.857 INFO:teuthology.orchestra.run.trial010.stdout:(31/95): flexiblas-openblas-openmp-3.0.4-9.el9. 463 kB/s | 15 kB 00:00 2026-02-19T11:21:35.960 INFO:teuthology.orchestra.run.trial010.stdout:(32/95): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 2.4 MB/s | 246 kB 00:00 2026-02-19T11:21:35.996 INFO:teuthology.orchestra.run.trial010.stdout:(33/95): lua-5.4.4-4.el9.x86_64.rpm 5.0 MB/s | 188 kB 00:00 2026-02-19T11:21:36.015 INFO:teuthology.orchestra.run.trial010.stdout:(34/95): flexiblas-netlib-3.0.4-9.el9.x86_64.rp 12 MB/s | 3.0 MB 00:00 2026-02-19T11:21:36.022 INFO:teuthology.orchestra.run.trial010.stdout:(35/95): openblas-0.3.29-1.el9.x86_64.rpm 1.6 MB/s | 42 kB 00:00 2026-02-19T11:21:36.101 INFO:teuthology.orchestra.run.trial010.stdout:(36/95): ceph-mgr-dashboard-20.3.0-5314.g941b42 32 MB/s | 51 MB 00:01 2026-02-19T11:21:36.141 INFO:teuthology.orchestra.run.trial010.stdout:(37/95): openblas-openmp-0.3.29-1.el9.x86_64.rp 42 MB/s | 5.3 MB 00:00 2026-02-19T11:21:36.168 INFO:teuthology.orchestra.run.trial010.stdout:(38/95): python3-jinja2-2.11.3-8.el9.noarch.rpm 8.7 MB/s | 249 kB 00:00 2026-02-19T11:21:36.194 INFO:teuthology.orchestra.run.trial010.stdout:(39/95): python3-jmespath-1.0.1-1.el9.noarch.rp 1.8 MB/s | 48 kB 00:00 2026-02-19T11:21:36.211 INFO:teuthology.orchestra.run.trial010.stdout:(40/95): python3-babel-2.9.1-2.el9.noarch.rpm 32 MB/s | 6.0 MB 00:00 2026-02-19T11:21:36.221 INFO:teuthology.orchestra.run.trial010.stdout:(41/95): python3-libstoragemgmt-1.10.1-1.el9.x8 6.4 MB/s | 177 kB 00:00 2026-02-19T11:21:36.242 INFO:teuthology.orchestra.run.trial010.stdout:(42/95): python3-lxml-4.6.5-3.el9.x86_64.rpm 40 MB/s | 1.2 MB 00:00 2026-02-19T11:21:36.247 INFO:teuthology.orchestra.run.trial010.stdout:(43/95): python3-markupsafe-1.1.1-12.el9.x86_64 1.3 MB/s | 35 kB 00:00 2026-02-19T11:21:36.257 INFO:teuthology.orchestra.run.trial010.stdout:(44/95): python3-devel-3.9.25-3.el9.x86_64.rpm 1.5 MB/s | 244 kB 00:00 2026-02-19T11:21:36.276 INFO:teuthology.orchestra.run.trial010.stdout:(45/95): python3-numpy-f2py-1.23.5-2.el9.x86_64 15 MB/s | 442 kB 00:00 2026-02-19T11:21:36.287 INFO:teuthology.orchestra.run.trial010.stdout:(46/95): python3-packaging-20.9-5.el9.noarch.rp 2.5 MB/s | 77 kB 00:00 2026-02-19T11:21:36.304 INFO:teuthology.orchestra.run.trial010.stdout:(47/95): python3-protobuf-3.14.0-17.el9.noarch. 9.3 MB/s | 267 kB 00:00 2026-02-19T11:21:36.311 INFO:teuthology.orchestra.run.trial010.stdout:(48/95): python3-numpy-1.23.5-2.el9.x86_64.rpm 88 MB/s | 6.1 MB 00:00 2026-02-19T11:21:36.323 INFO:teuthology.orchestra.run.trial010.stdout:(49/95): python3-pyasn1-0.4.8-6.el9.noarch.rpm 4.3 MB/s | 159 kB 00:00 2026-02-19T11:21:36.332 INFO:teuthology.orchestra.run.trial010.stdout:(50/95): python3-pyasn1-modules-0.4.8-6.el9.noa 9.7 MB/s | 279 kB 00:00 2026-02-19T11:21:36.337 INFO:teuthology.orchestra.run.trial010.stdout:(51/95): python3-requests-oauthlib-1.3.0-12.el9 2.0 MB/s | 54 kB 00:00 2026-02-19T11:21:36.358 INFO:teuthology.orchestra.run.trial010.stdout:(52/95): python3-toml-0.10.2-6.el9.noarch.rpm 1.6 MB/s | 42 kB 00:00 2026-02-19T11:21:36.363 INFO:teuthology.orchestra.run.trial010.stdout:(53/95): xmlsec1-1.2.29-13.el9.x86_64.rpm 7.0 MB/s | 189 kB 00:00 2026-02-19T11:21:36.384 INFO:teuthology.orchestra.run.trial010.stdout:(54/95): xmlsec1-openssl-1.2.29-13.el9.x86_64.r 3.4 MB/s | 90 kB 00:00 2026-02-19T11:21:36.402 INFO:teuthology.orchestra.run.trial010.stdout:(55/95): lua-devel-5.4.4-4.el9.x86_64.rpm 578 kB/s | 22 kB 00:00 2026-02-19T11:21:36.452 INFO:teuthology.orchestra.run.trial010.stdout:(56/95): protobuf-compiler-3.14.0-17.el9.x86_64 13 MB/s | 862 kB 00:00 2026-02-19T11:21:36.602 INFO:teuthology.orchestra.run.trial010.stdout:(57/95): python3-scipy-1.9.3-2.el9.x86_64.rpm 69 MB/s | 19 MB 00:00 2026-02-19T11:21:36.608 INFO:teuthology.orchestra.run.trial010.stdout:(58/95): grpc-data-1.46.7-10.el9.noarch.rpm 125 kB/s | 19 kB 00:00 2026-02-19T11:21:36.740 INFO:teuthology.orchestra.run.trial010.stdout:(59/95): abseil-cpp-20211102.0-4.el9.x86_64.rpm 1.6 MB/s | 551 kB 00:00 2026-02-19T11:21:36.778 INFO:teuthology.orchestra.run.trial010.stdout:(60/95): python3-autocommand-2.2.2-8.el9.noarch 774 kB/s | 29 kB 00:00 2026-02-19T11:21:36.804 INFO:teuthology.orchestra.run.trial010.stdout:(61/95): python3-asyncssh-2.13.2-5.el9.noarch.r 2.7 MB/s | 548 kB 00:00 2026-02-19T11:21:36.819 INFO:teuthology.orchestra.run.trial010.stdout:(62/95): python3-backports-tarfile-1.2.0-1.el9. 1.5 MB/s | 60 kB 00:00 2026-02-19T11:21:36.844 INFO:teuthology.orchestra.run.trial010.stdout:(63/95): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 1.1 MB/s | 43 kB 00:00 2026-02-19T11:21:36.846 INFO:teuthology.orchestra.run.trial010.stdout:(64/95): luarocks-3.9.2-5.el9.noarch.rpm 619 kB/s | 151 kB 00:00 2026-02-19T11:21:36.857 INFO:teuthology.orchestra.run.trial010.stdout:(65/95): python3-cachetools-4.2.4-1.el9.noarch. 847 kB/s | 32 kB 00:00 2026-02-19T11:21:36.881 INFO:teuthology.orchestra.run.trial010.stdout:(66/95): python3-certifi-2023.05.07-4.el9.noarc 375 kB/s | 14 kB 00:00 2026-02-19T11:21:36.911 INFO:teuthology.orchestra.run.trial010.stdout:(67/95): python3-cherrypy-18.6.1-2.el9.noarch.r 6.5 MB/s | 358 kB 00:00 2026-02-19T11:21:36.913 INFO:teuthology.orchestra.run.trial010.stdout:(68/95): python3-cheroot-10.0.1-4.el9.noarch.rp 2.5 MB/s | 173 kB 00:00 2026-02-19T11:21:36.930 INFO:teuthology.orchestra.run.trial010.stdout:(69/95): python3-google-auth-2.45.0-1.el9.noarc 5.1 MB/s | 254 kB 00:00 2026-02-19T11:21:36.969 INFO:teuthology.orchestra.run.trial010.stdout:(70/95): python3-grpcio-tools-1.46.7-10.el9.x86 2.5 MB/s | 144 kB 00:00 2026-02-19T11:21:36.973 INFO:teuthology.orchestra.run.trial010.stdout:(71/95): python3-influxdb-5.3.1-1.el9.noarch.rp 3.2 MB/s | 139 kB 00:00 2026-02-19T11:21:37.011 INFO:teuthology.orchestra.run.trial010.stdout:(72/95): python3-jaraco-8.2.1-3.el9.noarch.rpm 284 kB/s | 11 kB 00:00 2026-02-19T11:21:37.014 INFO:teuthology.orchestra.run.trial010.stdout:(73/95): python3-isodate-0.6.1-3.el9.noarch.rpm 1.2 MB/s | 56 kB 00:00 2026-02-19T11:21:37.032 INFO:teuthology.orchestra.run.trial010.stdout:(74/95): python3-grpcio-1.46.7-10.el9.x86_64.rp 17 MB/s | 2.0 MB 00:00 2026-02-19T11:21:37.049 INFO:teuthology.orchestra.run.trial010.stdout:(75/95): python3-jaraco-classes-3.2.1-5.el9.noa 465 kB/s | 18 kB 00:00 2026-02-19T11:21:37.053 INFO:teuthology.orchestra.run.trial010.stdout:(76/95): python3-jaraco-collections-3.0.0-8.el9 580 kB/s | 23 kB 00:00 2026-02-19T11:21:37.069 INFO:teuthology.orchestra.run.trial010.stdout:(77/95): python3-jaraco-context-6.0.1-3.el9.noa 520 kB/s | 20 kB 00:00 2026-02-19T11:21:37.087 INFO:teuthology.orchestra.run.trial010.stdout:(78/95): python3-jaraco-functools-3.5.0-2.el9.n 511 kB/s | 19 kB 00:00 2026-02-19T11:21:37.094 INFO:teuthology.orchestra.run.trial010.stdout:(79/95): python3-jaraco-text-4.0.0-2.el9.noarch 662 kB/s | 26 kB 00:00 2026-02-19T11:21:37.120 INFO:teuthology.orchestra.run.trial010.stdout:(80/95): python3-kubernetes-26.1.0-3.el9.noarch 20 MB/s | 1.0 MB 00:00 2026-02-19T11:21:37.127 INFO:teuthology.orchestra.run.trial010.stdout:(81/95): python3-more-itertools-8.12.0-2.el9.no 1.9 MB/s | 79 kB 00:00 2026-02-19T11:21:37.142 INFO:teuthology.orchestra.run.trial010.stdout:(82/95): python3-msgpack-1.0.3-2.el9.x86_64.rpm 1.7 MB/s | 86 kB 00:00 2026-02-19T11:21:37.158 INFO:teuthology.orchestra.run.trial010.stdout:(83/95): python3-natsort-7.1.1-5.el9.noarch.rpm 1.5 MB/s | 58 kB 00:00 2026-02-19T11:21:37.165 INFO:teuthology.orchestra.run.trial010.stdout:(84/95): python3-portend-3.1.0-2.el9.noarch.rpm 432 kB/s | 16 kB 00:00 2026-02-19T11:21:37.191 INFO:teuthology.orchestra.run.trial010.stdout:(85/95): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2026-02-19T11:21:37.196 INFO:teuthology.orchestra.run.trial010.stdout:(86/95): python3-repoze-lru-0.7-16.el9.noarch.r 815 kB/s | 31 kB 00:00 2026-02-19T11:21:37.211 INFO:teuthology.orchestra.run.trial010.stdout:(87/95): python3-routes-2.5.1-5.el9.noarch.rpm 4.0 MB/s | 188 kB 00:00 2026-02-19T11:21:37.235 INFO:teuthology.orchestra.run.trial010.stdout:(88/95): python3-saml-1.16.0-1.el9.noarch.rpm 3.1 MB/s | 125 kB 00:00 2026-02-19T11:21:37.236 INFO:teuthology.orchestra.run.trial010.stdout:(89/95): python3-rsa-4.9-2.el9.noarch.rpm 1.3 MB/s | 59 kB 00:00 2026-02-19T11:21:37.250 INFO:teuthology.orchestra.run.trial010.stdout:(90/95): python3-tempora-5.0.0-2.el9.noarch.rpm 939 kB/s | 36 kB 00:00 2026-02-19T11:21:37.276 INFO:teuthology.orchestra.run.trial010.stdout:(91/95): python3-typing-extensions-4.15.0-1.el9 2.1 MB/s | 86 kB 00:00 2026-02-19T11:21:37.284 INFO:teuthology.orchestra.run.trial010.stdout:(92/95): python3-websocket-client-1.2.3-2.el9.n 1.8 MB/s | 90 kB 00:00 2026-02-19T11:21:37.289 INFO:teuthology.orchestra.run.trial010.stdout:(93/95): python3-xmlsec-1.3.13-1.el9.x86_64.rpm 1.2 MB/s | 48 kB 00:00 2026-02-19T11:21:37.315 INFO:teuthology.orchestra.run.trial010.stdout:(94/95): python3-xmltodict-0.12.0-15.el9.noarch 569 kB/s | 22 kB 00:00 2026-02-19T11:21:37.325 INFO:teuthology.orchestra.run.trial010.stdout:(95/95): python3-zc-lockfile-2.0-10.el9.noarch. 496 kB/s | 20 kB 00:00 2026-02-19T11:21:37.330 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:37.330 INFO:teuthology.orchestra.run.trial010.stdout:Total 42 MB/s | 158 MB 00:03 2026-02-19T11:21:37.386 INFO:teuthology.orchestra.run.trial186.stdout:(10/10): ceph-test-20.3.0-5314.g941b42ca.el9.x8 24 MB/s | 78 MB 00:03 2026-02-19T11:21:37.388 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:37.388 INFO:teuthology.orchestra.run.trial186.stdout:Total 24 MB/s | 82 MB 00:03 2026-02-19T11:21:37.455 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:21:37.466 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:21:37.466 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:21:37.740 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:37.754 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:21:37.754 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:21:37.779 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:37.779 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:38.064 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:21:38.073 INFO:teuthology.orchestra.run.trial186.stdout: Installing : yaml-cpp-0.6.3-5.el9.x86_64 1/10 2026-02-19T11:21:38.081 INFO:teuthology.orchestra.run.trial186.stdout: Installing : socat-1.7.4.1-8.el9.x86_64 2/10 2026-02-19T11:21:38.087 INFO:teuthology.orchestra.run.trial186.stdout: Installing : protobuf-3.14.0-17.el9.x86_64 3/10 2026-02-19T11:21:38.091 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libxslt-1.1.34-12.el9.x86_64 4/10 2026-02-19T11:21:38.097 INFO:teuthology.orchestra.run.trial186.stdout: Installing : xmlstarlet-1.6.1-20.el9.x86_64 5/10 2026-02-19T11:21:38.099 INFO:teuthology.orchestra.run.trial186.stdout: Installing : lksctp-tools-1.0.19-2.el9.x86_64 6/10 2026-02-19T11:21:38.108 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libatomic-11.5.0-14.el9.x86_64 7/10 2026-02-19T11:21:38.118 INFO:teuthology.orchestra.run.trial186.stdout: Installing : hwloc-libs-2.4.1-6.el9.x86_64 8/10 2026-02-19T11:21:38.119 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 9/10 2026-02-19T11:21:38.210 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 9/10 2026-02-19T11:21:38.228 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 10/10 2026-02-19T11:21:38.376 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:38.376 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:38.541 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 10/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 1/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 2/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : hwloc-libs-2.4.1-6.el9.x86_64 3/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libatomic-11.5.0-14.el9.x86_64 4/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : lksctp-tools-1.0.19-2.el9.x86_64 5/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 6/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 7/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 8/10 2026-02-19T11:21:38.542 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 9/10 2026-02-19T11:21:38.595 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : yaml-cpp-0.6.3-5.el9.x86_64 10/10 2026-02-19T11:21:38.595 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:38.595 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:21:38.595 INFO:teuthology.orchestra.run.trial132.stdout: ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:38.595 INFO:teuthology.orchestra.run.trial132.stdout: hwloc-libs-2.4.1-6.el9.x86_64 2026-02-19T11:21:38.595 INFO:teuthology.orchestra.run.trial132.stdout: libatomic-11.5.0-14.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: lksctp-tools-1.0.19-2.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: yaml-cpp-0.6.3-5.el9.x86_64 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:38.596 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:38.633 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph 2026-02-19T11:21:38.937 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:20 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:39.014 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:39.016 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/95 2026-02-19T11:21:39.020 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/95 2026-02-19T11:21:39.023 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:39.026 INFO:teuthology.orchestra.run.trial132.stdout:======================================================================================= 2026-02-19T11:21:39.026 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repository Size 2026-02-19T11:21:39.026 INFO:teuthology.orchestra.run.trial132.stdout:======================================================================================= 2026-02-19T11:21:39.026 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 6.5 k 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout:Installing dependencies: 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-grafana-dashboards noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 57 k 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mds x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.4 M 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 936 k 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-modules-core noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 297 k 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mon x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 5.0 M 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-osd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 167 k 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-osd-classic x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 16 M 2026-02-19T11:21:39.027 INFO:teuthology.orchestra.run.trial132.stdout: ceph-osd-crimson x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 19 M 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: ceph-prometheus-alerts noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 17 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: cephadm noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 1.0 M 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-19T11:21:39.028 INFO:teuthology.orchestra.run.trial132.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-19T11:21:39.029 INFO:teuthology.orchestra.run.trial132.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-19T11:21:39.030 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-02-19T11:21:39.031 INFO:teuthology.orchestra.run.trial132.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-19T11:21:39.032 INFO:teuthology.orchestra.run.trial132.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-19T11:21:39.033 INFO:teuthology.orchestra.run.trial132.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout:Installing weak dependencies: 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-cephadm noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 184 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-dashboard noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 51 M 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-diskprediction-local noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 7.4 M 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-k8sevents noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 22 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-rook noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 50 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: ceph-volume noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 301 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-02-19T11:21:39.034 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:39.035 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:21:39.035 INFO:teuthology.orchestra.run.trial132.stdout:======================================================================================= 2026-02-19T11:21:39.035 INFO:teuthology.orchestra.run.trial132.stdout:Install 95 Packages 2026-02-19T11:21:39.035 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:39.036 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 158 M 2026-02-19T11:21:39.036 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 731 M 2026-02-19T11:21:39.036 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:21:39.041 INFO:teuthology.orchestra.run.trial010.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 3/95 2026-02-19T11:21:39.052 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 4/95 2026-02-19T11:21:39.086 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-packaging-20.9-5.el9.noarch 5/95 2026-02-19T11:21:39.092 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 6/95 2026-02-19T11:21:39.095 INFO:teuthology.orchestra.run.trial010.stdout: Installing : lua-5.4.4-4.el9.x86_64 7/95 2026-02-19T11:21:39.099 INFO:teuthology.orchestra.run.trial010.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 8/95 2026-02-19T11:21:39.123 INFO:teuthology.orchestra.run.trial010.stdout: Installing : unzip-6.0-59.el9.x86_64 9/95 2026-02-19T11:21:39.135 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 10/95 2026-02-19T11:21:39.138 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 11/95 2026-02-19T11:21:39.144 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 12/95 2026-02-19T11:21:39.146 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 13/95 2026-02-19T11:21:39.157 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 14/95 2026-02-19T11:21:39.163 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 15/95 2026-02-19T11:21:39.188 INFO:teuthology.orchestra.run.trial010.stdout: Installing : zip-3.0-35.el9.x86_64 16/95 2026-02-19T11:21:39.191 INFO:teuthology.orchestra.run.trial010.stdout: Installing : luarocks-3.9.2-5.el9.noarch 17/95 2026-02-19T11:21:39.241 INFO:teuthology.orchestra.run.trial010.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 18/95 2026-02-19T11:21:39.254 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 19/95 2026-02-19T11:21:39.256 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-rsa-4.9-2.el9.noarch 20/95 2026-02-19T11:21:39.260 INFO:teuthology.orchestra.run.trial010.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 21/95 2026-02-19T11:21:39.266 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 22/95 2026-02-19T11:21:39.270 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 23/95 2026-02-19T11:21:39.273 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 24/95 2026-02-19T11:21:39.288 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 25/95 2026-02-19T11:21:39.292 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 26/95 2026-02-19T11:21:39.297 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 27/95 2026-02-19T11:21:39.309 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 28/95 2026-02-19T11:21:39.317 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 29/95 2026-02-19T11:21:39.324 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 30/95 2026-02-19T11:21:39.343 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 31/95 2026-02-19T11:21:39.354 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 32/95 2026-02-19T11:21:39.370 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 33/95 2026-02-19T11:21:39.374 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 34/95 2026-02-19T11:21:39.382 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 35/95 2026-02-19T11:21:39.422 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 36/95 2026-02-19T11:21:39.547 INFO:teuthology.orchestra.run.trial132.stdout:(1/95): ceph-20.3.0-5314.g941b42ca.el9.x86_64.r 128 kB/s | 6.5 kB 00:00 2026-02-19T11:21:39.631 INFO:teuthology.orchestra.run.trial132.stdout:(2/95): ceph-mgr-20.3.0-5314.g941b42ca.el9.x86_ 6.8 MB/s | 936 kB 00:00 2026-02-19T11:21:39.659 INFO:teuthology.orchestra.run.trial132.stdout:(3/95): ceph-mds-20.3.0-5314.g941b42ca.el9.x86_ 15 MB/s | 2.4 MB 00:00 2026-02-19T11:21:39.662 INFO:teuthology.orchestra.run.trial132.stdout:(4/95): ceph-osd-20.3.0-5314.g941b42ca.el9.x86_ 5.3 MB/s | 167 kB 00:00 2026-02-19T11:21:39.747 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 37/95 2026-02-19T11:21:39.757 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 38/95 2026-02-19T11:21:39.761 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 39/95 2026-02-19T11:21:39.766 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 40/95 2026-02-19T11:21:39.768 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 41/95 2026-02-19T11:21:39.796 INFO:teuthology.orchestra.run.trial010.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 42/95 2026-02-19T11:21:39.839 INFO:teuthology.orchestra.run.trial010.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 43/95 2026-02-19T11:21:39.848 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 44/95 2026-02-19T11:21:39.849 INFO:teuthology.orchestra.run.trial132.stdout:(5/95): ceph-mon-20.3.0-5314.g941b42ca.el9.x86_ 16 MB/s | 5.0 MB 00:00 2026-02-19T11:21:39.853 INFO:teuthology.orchestra.run.trial010.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 45/95 2026-02-19T11:21:39.857 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 46/95 2026-02-19T11:21:39.862 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 47/95 2026-02-19T11:21:39.866 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 48/95 2026-02-19T11:21:39.873 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 49/95 2026-02-19T11:21:39.876 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 50/95 2026-02-19T11:21:39.893 INFO:teuthology.orchestra.run.trial132.stdout:(6/95): ceph-grafana-dashboards-20.3.0-5314.g94 1.3 MB/s | 57 kB 00:00 2026-02-19T11:21:39.904 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 51/95 2026-02-19T11:21:39.914 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 52/95 2026-02-19T11:21:39.920 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 53/95 2026-02-19T11:21:39.927 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 54/95 2026-02-19T11:21:39.942 INFO:teuthology.orchestra.run.trial132.stdout:(7/95): ceph-mgr-cephadm-20.3.0-5314.g941b42ca. 3.7 MB/s | 184 kB 00:00 2026-02-19T11:21:39.961 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 55/95 2026-02-19T11:21:40.185 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 56/95 2026-02-19T11:21:40.209 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 57/95 2026-02-19T11:21:40.212 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 58/95 2026-02-19T11:21:40.271 INFO:teuthology.orchestra.run.trial010.stdout: Installing : openblas-0.3.29-1.el9.x86_64 59/95 2026-02-19T11:21:40.273 INFO:teuthology.orchestra.run.trial010.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 60/95 2026-02-19T11:21:40.294 INFO:teuthology.orchestra.run.trial010.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 61/95 2026-02-19T11:21:40.298 INFO:teuthology.orchestra.run.trial132.stdout:(8/95): ceph-osd-classic-20.3.0-5314.g941b42ca. 24 MB/s | 16 MB 00:00 2026-02-19T11:21:40.619 INFO:teuthology.orchestra.run.trial010.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 62/95 2026-02-19T11:21:40.619 INFO:teuthology.orchestra.run.trial132.stdout:(9/95): ceph-mgr-diskprediction-local-20.3.0-53 23 MB/s | 7.4 MB 00:00 2026-02-19T11:21:40.652 INFO:teuthology.orchestra.run.trial132.stdout:(10/95): ceph-mgr-k8sevents-20.3.0-5314.g941b42 670 kB/s | 22 kB 00:00 2026-02-19T11:21:40.682 INFO:teuthology.orchestra.run.trial132.stdout:(11/95): ceph-osd-crimson-20.3.0-5314.g941b42ca 19 MB/s | 19 MB 00:01 2026-02-19T11:21:40.683 INFO:teuthology.orchestra.run.trial132.stdout:(12/95): ceph-mgr-modules-core-20.3.0-5314.g941 9.4 MB/s | 297 kB 00:00 2026-02-19T11:21:40.692 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 63/95 2026-02-19T11:21:40.693 INFO:teuthology.orchestra.run.trial132.stdout:(13/95): ceph-mgr-rook-20.3.0-5314.g941b42ca.el 4.1 MB/s | 50 kB 00:00 2026-02-19T11:21:40.699 INFO:teuthology.orchestra.run.trial132.stdout:(14/95): ceph-prometheus-alerts-20.3.0-5314.g94 1.1 MB/s | 17 kB 00:00 2026-02-19T11:21:40.716 INFO:teuthology.orchestra.run.trial132.stdout:(15/95): ceph-volume-20.3.0-5314.g941b42ca.el9. 13 MB/s | 301 kB 00:00 2026-02-19T11:21:40.740 INFO:teuthology.orchestra.run.trial132.stdout:(16/95): cephadm-20.3.0-5314.g941b42ca.el9.noar 25 MB/s | 1.0 MB 00:00 2026-02-19T11:21:40.774 INFO:teuthology.orchestra.run.trial132.stdout:(17/95): cryptsetup-2.8.1-3.el9.x86_64.rpm 5.9 MB/s | 351 kB 00:00 2026-02-19T11:21:40.781 INFO:teuthology.orchestra.run.trial132.stdout:(18/95): ledmon-libs-1.1.0-3.el9.x86_64.rpm 998 kB/s | 40 kB 00:00 2026-02-19T11:21:40.799 INFO:teuthology.orchestra.run.trial132.stdout:(19/95): libconfig-1.7.2-9.el9.x86_64.rpm 2.9 MB/s | 72 kB 00:00 2026-02-19T11:21:40.810 INFO:teuthology.orchestra.run.trial132.stdout:(20/95): libgfortran-11.5.0-14.el9.x86_64.rpm 27 MB/s | 794 kB 00:00 2026-02-19T11:21:40.818 INFO:teuthology.orchestra.run.trial132.stdout:(21/95): libquadmath-11.5.0-14.el9.x86_64.rpm 9.1 MB/s | 184 kB 00:00 2026-02-19T11:21:40.837 INFO:teuthology.orchestra.run.trial132.stdout:(22/95): python3-cffi-1.14.5-5.el9.x86_64.rpm 9.4 MB/s | 253 kB 00:00 2026-02-19T11:21:40.844 INFO:teuthology.orchestra.run.trial132.stdout:(23/95): python3-cryptography-36.0.1-5.el9.x86_ 49 MB/s | 1.2 MB 00:00 2026-02-19T11:21:40.857 INFO:teuthology.orchestra.run.trial132.stdout:(24/95): python3-ply-3.11-14.el9.noarch.rpm 5.2 MB/s | 106 kB 00:00 2026-02-19T11:21:40.871 INFO:teuthology.orchestra.run.trial132.stdout:(25/95): python3-pycparser-2.20-6.el9.noarch.rp 5.0 MB/s | 135 kB 00:00 2026-02-19T11:21:40.878 INFO:teuthology.orchestra.run.trial132.stdout:(26/95): python3-requests-2.25.1-10.el9.noarch. 6.0 MB/s | 126 kB 00:00 2026-02-19T11:21:40.895 INFO:teuthology.orchestra.run.trial132.stdout:(27/95): python3-urllib3-1.26.5-7.el9.noarch.rp 9.0 MB/s | 218 kB 00:00 2026-02-19T11:21:40.898 INFO:teuthology.orchestra.run.trial132.stdout:(28/95): unzip-6.0-59.el9.x86_64.rpm 9.0 MB/s | 182 kB 00:00 2026-02-19T11:21:40.914 INFO:teuthology.orchestra.run.trial132.stdout:(29/95): zip-3.0-35.el9.x86_64.rpm 13 MB/s | 266 kB 00:00 2026-02-19T11:21:40.935 INFO:teuthology.orchestra.run.trial132.stdout:(30/95): flexiblas-3.0.4-9.el9.x86_64.rpm 787 kB/s | 30 kB 00:00 2026-02-19T11:21:40.944 INFO:teuthology.orchestra.run.trial132.stdout:(31/95): flexiblas-openblas-openmp-3.0.4-9.el9. 1.6 MB/s | 15 kB 00:00 2026-02-19T11:21:40.975 INFO:teuthology.orchestra.run.trial132.stdout:(32/95): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 8.1 MB/s | 246 kB 00:00 2026-02-19T11:21:40.986 INFO:teuthology.orchestra.run.trial132.stdout:(33/95): lua-5.4.4-4.el9.x86_64.rpm 17 MB/s | 188 kB 00:00 2026-02-19T11:21:40.994 INFO:teuthology.orchestra.run.trial132.stdout:(34/95): openblas-0.3.29-1.el9.x86_64.rpm 5.0 MB/s | 42 kB 00:00 2026-02-19T11:21:40.999 INFO:teuthology.orchestra.run.trial132.stdout:(35/95): flexiblas-netlib-3.0.4-9.el9.x86_64.rp 36 MB/s | 3.0 MB 00:00 2026-02-19T11:21:41.032 INFO:teuthology.orchestra.run.trial132.stdout:(36/95): python3-babel-2.9.1-2.el9.noarch.rpm 183 MB/s | 6.0 MB 00:00 2026-02-19T11:21:41.046 INFO:teuthology.orchestra.run.trial132.stdout:(37/95): openblas-openmp-0.3.29-1.el9.x86_64.rp 102 MB/s | 5.3 MB 00:00 2026-02-19T11:21:41.047 INFO:teuthology.orchestra.run.trial132.stdout:(38/95): python3-devel-3.9.25-3.el9.x86_64.rpm 15 MB/s | 244 kB 00:00 2026-02-19T11:21:41.057 INFO:teuthology.orchestra.run.trial132.stdout:(39/95): python3-jinja2-2.11.3-8.el9.noarch.rpm 22 MB/s | 249 kB 00:00 2026-02-19T11:21:41.058 INFO:teuthology.orchestra.run.trial132.stdout:(40/95): python3-jmespath-1.0.1-1.el9.noarch.rp 4.5 MB/s | 48 kB 00:00 2026-02-19T11:21:41.068 INFO:teuthology.orchestra.run.trial132.stdout:(41/95): python3-libstoragemgmt-1.10.1-1.el9.x8 16 MB/s | 177 kB 00:00 2026-02-19T11:21:41.072 INFO:teuthology.orchestra.run.trial132.stdout:(42/95): python3-lxml-4.6.5-3.el9.x86_64.rpm 86 MB/s | 1.2 MB 00:00 2026-02-19T11:21:41.077 INFO:teuthology.orchestra.run.trial132.stdout:(43/95): python3-markupsafe-1.1.1-12.el9.x86_64 3.8 MB/s | 35 kB 00:00 2026-02-19T11:21:41.088 INFO:teuthology.orchestra.run.trial132.stdout:(44/95): python3-numpy-f2py-1.23.5-2.el9.x86_64 39 MB/s | 442 kB 00:00 2026-02-19T11:21:41.098 INFO:teuthology.orchestra.run.trial132.stdout:(45/95): python3-packaging-20.9-5.el9.noarch.rp 7.7 MB/s | 77 kB 00:00 2026-02-19T11:21:41.107 INFO:teuthology.orchestra.run.trial132.stdout:(46/95): python3-numpy-1.23.5-2.el9.x86_64.rpm 178 MB/s | 6.1 MB 00:00 2026-02-19T11:21:41.109 INFO:teuthology.orchestra.run.trial132.stdout:(47/95): python3-protobuf-3.14.0-17.el9.noarch. 26 MB/s | 267 kB 00:00 2026-02-19T11:21:41.118 INFO:teuthology.orchestra.run.trial132.stdout:(48/95): python3-pyasn1-0.4.8-6.el9.noarch.rpm 13 MB/s | 159 kB 00:00 2026-02-19T11:21:41.120 INFO:teuthology.orchestra.run.trial132.stdout:(49/95): python3-pyasn1-modules-0.4.8-6.el9.noa 25 MB/s | 279 kB 00:00 2026-02-19T11:21:41.129 INFO:teuthology.orchestra.run.trial132.stdout:(50/95): python3-requests-oauthlib-1.3.0-12.el9 5.2 MB/s | 54 kB 00:00 2026-02-19T11:21:41.139 INFO:teuthology.orchestra.run.trial132.stdout:(51/95): python3-toml-0.10.2-6.el9.noarch.rpm 4.2 MB/s | 42 kB 00:00 2026-02-19T11:21:41.148 INFO:teuthology.orchestra.run.trial132.stdout:(52/95): xmlsec1-1.2.29-13.el9.x86_64.rpm 19 MB/s | 189 kB 00:00 2026-02-19T11:21:41.158 INFO:teuthology.orchestra.run.trial132.stdout:(53/95): xmlsec1-openssl-1.2.29-13.el9.x86_64.r 8.7 MB/s | 90 kB 00:00 2026-02-19T11:21:41.167 INFO:teuthology.orchestra.run.trial132.stdout:(54/95): lua-devel-5.4.4-4.el9.x86_64.rpm 2.5 MB/s | 22 kB 00:00 2026-02-19T11:21:41.199 INFO:teuthology.orchestra.run.trial132.stdout:(55/95): python3-scipy-1.9.3-2.el9.x86_64.rpm 242 MB/s | 19 MB 00:00 2026-02-19T11:21:41.203 INFO:teuthology.orchestra.run.trial132.stdout:(56/95): protobuf-compiler-3.14.0-17.el9.x86_64 24 MB/s | 862 kB 00:00 2026-02-19T11:21:41.362 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 64/95 2026-02-19T11:21:41.380 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 65/95 2026-02-19T11:21:41.393 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-ply-3.11-14.el9.noarch 66/95 2026-02-19T11:21:41.409 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 67/95 2026-02-19T11:21:41.472 INFO:teuthology.orchestra.run.trial132.stdout:(57/95): ceph-mgr-dashboard-20.3.0-5314.g941b42 33 MB/s | 51 MB 00:01 2026-02-19T11:21:41.472 INFO:teuthology.orchestra.run.trial132.stdout:(58/95): grpc-data-1.46.7-10.el9.noarch.rpm 72 kB/s | 19 kB 00:00 2026-02-19T11:21:41.485 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 68/95 2026-02-19T11:21:41.493 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 69/95 2026-02-19T11:21:41.517 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 70/95 2026-02-19T11:21:41.546 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 71/95 2026-02-19T11:21:41.597 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 72/95 2026-02-19T11:21:41.603 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 73/95 2026-02-19T11:21:41.606 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 74/95 2026-02-19T11:21:41.607 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 75/95 2026-02-19T11:21:41.625 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:41.625 INFO:teuthology.orchestra.run.trial010.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-19T11:21:41.625 INFO:teuthology.orchestra.run.trial010.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-19T11:21:41.625 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:41.631 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 9/10 2026-02-19T11:21:41.632 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:41.650 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 10/10 2026-02-19T11:21:41.658 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:41.658 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-19T11:21:41.658 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:41.691 INFO:teuthology.orchestra.run.trial010.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 77/95 2026-02-19T11:21:41.716 INFO:teuthology.orchestra.run.trial132.stdout:(59/95): luarocks-3.9.2-5.el9.noarch.rpm 619 kB/s | 151 kB 00:00 2026-02-19T11:21:41.727 INFO:teuthology.orchestra.run.trial132.stdout:(60/95): abseil-cpp-20211102.0-4.el9.x86_64.rpm 1.0 MB/s | 551 kB 00:00 2026-02-19T11:21:41.792 INFO:teuthology.orchestra.run.trial132.stdout:(61/95): python3-autocommand-2.2.2-8.el9.noarch 392 kB/s | 29 kB 00:00 2026-02-19T11:21:41.799 INFO:teuthology.orchestra.run.trial132.stdout:(62/95): python3-backports-tarfile-1.2.0-1.el9. 837 kB/s | 60 kB 00:00 2026-02-19T11:21:41.868 INFO:teuthology.orchestra.run.trial132.stdout:(63/95): python3-cachetools-4.2.4-1.el9.noarch. 466 kB/s | 32 kB 00:00 2026-02-19T11:21:41.871 INFO:teuthology.orchestra.run.trial132.stdout:(64/95): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 549 kB/s | 43 kB 00:00 2026-02-19T11:21:41.936 INFO:teuthology.orchestra.run.trial132.stdout:(65/95): python3-certifi-2023.05.07-4.el9.noarc 208 kB/s | 14 kB 00:00 2026-02-19T11:21:41.986 INFO:teuthology.orchestra.run.trial132.stdout:(66/95): python3-cheroot-10.0.1-4.el9.noarch.rp 1.5 MB/s | 173 kB 00:00 2026-02-19T11:21:41.994 INFO:teuthology.orchestra.run.trial132.stdout:(67/95): python3-asyncssh-2.13.2-5.el9.noarch.r 1.0 MB/s | 548 kB 00:00 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 10/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 1/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 2/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : hwloc-libs-2.4.1-6.el9.x86_64 3/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libatomic-11.5.0-14.el9.x86_64 4/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : lksctp-tools-1.0.19-2.el9.x86_64 5/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libxslt-1.1.34-12.el9.x86_64 6/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : protobuf-3.14.0-17.el9.x86_64 7/10 2026-02-19T11:21:42.012 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : socat-1.7.4.1-8.el9.x86_64 8/10 2026-02-19T11:21:42.013 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : xmlstarlet-1.6.1-20.el9.x86_64 9/10 2026-02-19T11:21:42.034 INFO:teuthology.orchestra.run.trial132.stdout:(68/95): python3-cherrypy-18.6.1-2.el9.noarch.r 3.6 MB/s | 358 kB 00:00 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : yaml-cpp-0.6.3-5.el9.x86_64 10/10 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: ceph-test-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: hwloc-libs-2.4.1-6.el9.x86_64 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: libatomic-11.5.0-14.el9.x86_64 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: libcephsqlite-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:42.067 INFO:teuthology.orchestra.run.trial186.stdout: libxslt-1.1.34-12.el9.x86_64 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout: lksctp-tools-1.0.19-2.el9.x86_64 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout: protobuf-3.14.0-17.el9.x86_64 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout: socat-1.7.4.1-8.el9.x86_64 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout: xmlstarlet-1.6.1-20.el9.x86_64 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout: yaml-cpp-0.6.3-5.el9.x86_64 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:42.068 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:21:42.104 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph 2026-02-19T11:21:42.111 INFO:teuthology.orchestra.run.trial132.stdout:(69/95): python3-google-auth-2.45.0-1.el9.noarc 2.0 MB/s | 254 kB 00:00 2026-02-19T11:21:42.112 INFO:teuthology.orchestra.run.trial132.stdout:(70/95): python3-grpcio-tools-1.46.7-10.el9.x86 1.8 MB/s | 144 kB 00:00 2026-02-19T11:21:42.183 INFO:teuthology.orchestra.run.trial132.stdout:(71/95): python3-isodate-0.6.1-3.el9.noarch.rpm 791 kB/s | 56 kB 00:00 2026-02-19T11:21:42.202 INFO:teuthology.orchestra.run.trial132.stdout:(72/95): python3-influxdb-5.3.1-1.el9.noarch.rp 1.5 MB/s | 139 kB 00:00 2026-02-19T11:21:42.233 INFO:teuthology.orchestra.run.trial132.stdout:(73/95): python3-grpcio-1.46.7-10.el9.x86_64.rp 8.6 MB/s | 2.0 MB 00:00 2026-02-19T11:21:42.250 INFO:teuthology.orchestra.run.trial132.stdout:(74/95): python3-jaraco-8.2.1-3.el9.noarch.rpm 157 kB/s | 11 kB 00:00 2026-02-19T11:21:42.272 INFO:teuthology.orchestra.run.trial132.stdout:(75/95): python3-jaraco-classes-3.2.1-5.el9.noa 253 kB/s | 18 kB 00:00 2026-02-19T11:21:42.303 INFO:teuthology.orchestra.run.trial132.stdout:(76/95): python3-jaraco-collections-3.0.0-8.el9 328 kB/s | 23 kB 00:00 2026-02-19T11:21:42.308 INFO:teuthology.orchestra.run.trial010.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 78/95 2026-02-19T11:21:42.319 INFO:teuthology.orchestra.run.trial132.stdout:(77/95): python3-jaraco-context-6.0.1-3.el9.noa 289 kB/s | 20 kB 00:00 2026-02-19T11:21:42.342 INFO:teuthology.orchestra.run.trial132.stdout:(78/95): python3-jaraco-functools-3.5.0-2.el9.n 278 kB/s | 19 kB 00:00 2026-02-19T11:21:42.373 INFO:teuthology.orchestra.run.trial132.stdout:(79/95): python3-jaraco-text-4.0.0-2.el9.noarch 377 kB/s | 26 kB 00:00 2026-02-19T11:21:42.408 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:22 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:21:42.422 INFO:teuthology.orchestra.run.trial132.stdout:(80/95): python3-more-itertools-8.12.0-2.el9.no 986 kB/s | 79 kB 00:00 2026-02-19T11:21:42.444 INFO:teuthology.orchestra.run.trial132.stdout:(81/95): python3-msgpack-1.0.3-2.el9.x86_64.rpm 1.2 MB/s | 86 kB 00:00 2026-02-19T11:21:42.474 INFO:teuthology.orchestra.run.trial132.stdout:(82/95): python3-kubernetes-26.1.0-3.el9.noarch 6.6 MB/s | 1.0 MB 00:00 2026-02-19T11:21:42.494 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout:======================================================================================= 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repository Size 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout:======================================================================================= 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout: ceph x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 6.5 k 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout:Installing dependencies: 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout: abseil-cpp x86_64 20211102.0-4.el9 epel 551 k 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout: ceph-grafana-dashboards noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 57 k 2026-02-19T11:21:42.497 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mds x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.4 M 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 936 k 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-modules-core noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 297 k 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mon x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 5.0 M 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-osd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 167 k 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-osd-classic x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 16 M 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-osd-crimson x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 19 M 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: ceph-prometheus-alerts noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 17 k 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: cephadm noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 1.0 M 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: cryptsetup x86_64 2.8.1-3.el9 baseos 351 k 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: flexiblas x86_64 3.0.4-9.el9 appstream 30 k 2026-02-19T11:21:42.498 INFO:teuthology.orchestra.run.trial186.stdout: flexiblas-netlib x86_64 3.0.4-9.el9 appstream 3.0 M 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: flexiblas-openblas-openmp x86_64 3.0.4-9.el9 appstream 15 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: grpc-data noarch 1.46.7-10.el9 epel 19 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: ledmon-libs x86_64 1.1.0-3.el9 baseos 40 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: libconfig x86_64 1.7.2-9.el9 baseos 72 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: libgfortran x86_64 11.5.0-14.el9 baseos 794 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: libquadmath x86_64 11.5.0-14.el9 baseos 184 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: libstoragemgmt x86_64 1.10.1-1.el9 appstream 246 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: lua x86_64 5.4.4-4.el9 appstream 188 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: lua-devel x86_64 5.4.4-4.el9 crb 22 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: luarocks noarch 3.9.2-5.el9 epel 151 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: openblas x86_64 0.3.29-1.el9 appstream 42 k 2026-02-19T11:21:42.499 INFO:teuthology.orchestra.run.trial186.stdout: openblas-openmp x86_64 0.3.29-1.el9 appstream 5.3 M 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: protobuf-compiler x86_64 3.14.0-17.el9 crb 862 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-asyncssh noarch 2.13.2-5.el9 epel 548 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-autocommand noarch 2.2.2-8.el9 epel 29 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-babel noarch 2.9.1-2.el9 appstream 6.0 M 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-backports-tarfile noarch 1.2.0-1.el9 epel 60 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-bcrypt x86_64 3.2.2-1.el9 epel 43 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-cachetools noarch 4.2.4-1.el9 epel 32 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-certifi noarch 2023.05.07-4.el9 epel 14 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-cffi x86_64 1.14.5-5.el9 baseos 253 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-cheroot noarch 10.0.1-4.el9 epel 173 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-cherrypy noarch 18.6.1-2.el9 epel 358 k 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-cryptography x86_64 36.0.1-5.el9 baseos 1.2 M 2026-02-19T11:21:42.500 INFO:teuthology.orchestra.run.trial186.stdout: python3-devel x86_64 3.9.25-3.el9 appstream 244 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-google-auth noarch 1:2.45.0-1.el9 epel 254 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-grpcio x86_64 1.46.7-10.el9 epel 2.0 M 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-grpcio-tools x86_64 1.46.7-10.el9 epel 144 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-isodate noarch 0.6.1-3.el9 epel 56 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco noarch 8.2.1-3.el9 epel 11 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-classes noarch 3.2.1-5.el9 epel 18 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-collections noarch 3.0.0-8.el9 epel 23 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-context noarch 6.0.1-3.el9 epel 20 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-functools noarch 3.5.0-2.el9 epel 19 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-text noarch 4.0.0-2.el9 epel 26 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jinja2 noarch 2.11.3-8.el9 appstream 249 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-jmespath noarch 1.0.1-1.el9 appstream 48 k 2026-02-19T11:21:42.501 INFO:teuthology.orchestra.run.trial186.stdout: python3-kubernetes noarch 1:26.1.0-3.el9 epel 1.0 M 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-libstoragemgmt x86_64 1.10.1-1.el9 appstream 177 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-lxml x86_64 4.6.5-3.el9 appstream 1.2 M 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-markupsafe x86_64 1.1.1-12.el9 appstream 35 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-more-itertools noarch 8.12.0-2.el9 epel 79 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-msgpack x86_64 1.0.3-2.el9 epel 86 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-natsort noarch 7.1.1-5.el9 epel 58 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-numpy x86_64 1:1.23.5-2.el9 appstream 6.1 M 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-numpy-f2py x86_64 1:1.23.5-2.el9 appstream 442 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-packaging noarch 20.9-5.el9 appstream 77 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-ply noarch 3.11-14.el9 baseos 106 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-portend noarch 3.1.0-2.el9 epel 16 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-protobuf noarch 3.14.0-17.el9 appstream 267 k 2026-02-19T11:21:42.502 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyOpenSSL noarch 21.0.0-1.el9 epel 90 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyasn1 noarch 0.4.8-6.el9 appstream 159 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyasn1-modules noarch 0.4.8-6.el9 appstream 279 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-pycparser noarch 2.20-6.el9 baseos 135 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-repoze-lru noarch 0.7-16.el9 epel 31 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-requests noarch 2.25.1-10.el9 baseos 126 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-requests-oauthlib noarch 1.3.0-12.el9 appstream 54 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-routes noarch 2.5.1-5.el9 epel 188 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-rsa noarch 4.9-2.el9 epel 59 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-scipy x86_64 1.9.3-2.el9 appstream 19 M 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-tempora noarch 5.0.0-2.el9 epel 36 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-toml noarch 0.10.2-6.el9 appstream 42 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-typing-extensions noarch 4.15.0-1.el9 epel 86 k 2026-02-19T11:21:42.503 INFO:teuthology.orchestra.run.trial186.stdout: python3-urllib3 noarch 1.26.5-7.el9 baseos 218 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: python3-websocket-client noarch 1.2.3-2.el9 epel 90 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: python3-xmlsec x86_64 1.3.13-1.el9 epel 48 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: python3-xmltodict noarch 0.12.0-15.el9 epel 22 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: python3-zc-lockfile noarch 2.0-10.el9 epel 20 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: unzip x86_64 6.0-59.el9 baseos 182 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: xmlsec1 x86_64 1.2.29-13.el9 appstream 189 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: xmlsec1-openssl x86_64 1.2.29-13.el9 appstream 90 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: zip x86_64 3.0-35.el9 baseos 266 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout:Installing weak dependencies: 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-cephadm noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 184 k 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-dashboard noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 51 M 2026-02-19T11:21:42.504 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-diskprediction-local noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 7.4 M 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-k8sevents noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 22 k 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-rook noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 50 k 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: ceph-volume noarch 2:20.3.0-5314.g941b42ca.el9 ceph-noarch 301 k 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: python3-influxdb noarch 5.3.1-1.el9 epel 139 k 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: python3-saml noarch 1.16.0-1.el9 epel 125 k 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout:======================================================================================= 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout:Install 95 Packages 2026-02-19T11:21:42.505 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:42.506 INFO:teuthology.orchestra.run.trial132.stdout:(83/95): python3-natsort-7.1.1-5.el9.noarch.rpm 752 kB/s | 58 kB 00:00 2026-02-19T11:21:42.506 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 158 M 2026-02-19T11:21:42.507 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 731 M 2026-02-19T11:21:42.507 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:21:42.514 INFO:teuthology.orchestra.run.trial132.stdout:(84/95): python3-portend-3.1.0-2.el9.noarch.rpm 235 kB/s | 16 kB 00:00 2026-02-19T11:21:42.544 INFO:teuthology.orchestra.run.trial132.stdout:(85/95): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.3 MB/s | 90 kB 00:00 2026-02-19T11:21:42.571 INFO:teuthology.orchestra.run.trial132.stdout:(86/95): python3-repoze-lru-0.7-16.el9.noarch.r 428 kB/s | 31 kB 00:00 2026-02-19T11:21:42.587 INFO:teuthology.orchestra.run.trial132.stdout:(87/95): python3-routes-2.5.1-5.el9.noarch.rpm 2.5 MB/s | 188 kB 00:00 2026-02-19T11:21:42.612 INFO:teuthology.orchestra.run.trial132.stdout:(88/95): python3-rsa-4.9-2.el9.noarch.rpm 863 kB/s | 59 kB 00:00 2026-02-19T11:21:42.658 INFO:teuthology.orchestra.run.trial132.stdout:(89/95): python3-tempora-5.0.0-2.el9.noarch.rpm 508 kB/s | 36 kB 00:00 2026-02-19T11:21:42.658 INFO:teuthology.orchestra.run.trial132.stdout:(90/95): python3-saml-1.16.0-1.el9.noarch.rpm 1.4 MB/s | 125 kB 00:00 2026-02-19T11:21:42.682 INFO:teuthology.orchestra.run.trial132.stdout:(91/95): python3-typing-extensions-4.15.0-1.el9 1.2 MB/s | 86 kB 00:00 2026-02-19T11:21:42.729 INFO:teuthology.orchestra.run.trial132.stdout:(92/95): python3-websocket-client-1.2.3-2.el9.n 1.2 MB/s | 90 kB 00:00 2026-02-19T11:21:42.733 INFO:teuthology.orchestra.run.trial132.stdout:(93/95): python3-xmlsec-1.3.13-1.el9.x86_64.rpm 647 kB/s | 48 kB 00:00 2026-02-19T11:21:42.750 INFO:teuthology.orchestra.run.trial132.stdout:(94/95): python3-xmltodict-0.12.0-15.el9.noarch 321 kB/s | 22 kB 00:00 2026-02-19T11:21:42.800 INFO:teuthology.orchestra.run.trial132.stdout:(95/95): python3-zc-lockfile-2.0-10.el9.noarch. 281 kB/s | 20 kB 00:00 2026-02-19T11:21:42.805 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:42.805 INFO:teuthology.orchestra.run.trial132.stdout:Total 42 MB/s | 158 MB 00:03 2026-02-19T11:21:43.064 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 79/95 2026-02-19T11:21:43.104 INFO:teuthology.orchestra.run.trial186.stdout:(1/95): ceph-20.3.0-5314.g941b42ca.el9.x86_64.r 114 kB/s | 6.5 kB 00:00 2026-02-19T11:21:43.127 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 80/95 2026-02-19T11:21:43.130 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 81/95 2026-02-19T11:21:43.144 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 81/95 2026-02-19T11:21:43.144 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:43.144 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-19T11:21:43.144 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:43.154 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 82/95 2026-02-19T11:21:43.178 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 82/95 2026-02-19T11:21:43.178 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:43.178 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-19T11:21:43.178 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-19T11:21:43.179 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-19T11:21:43.179 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:43.179 INFO:teuthology.orchestra.run.trial186.stdout:(2/95): ceph-mgr-20.3.0-5314.g941b42ca.el9.x86_ 7.0 MB/s | 936 kB 00:00 2026-02-19T11:21:43.197 INFO:teuthology.orchestra.run.trial186.stdout:(3/95): ceph-mds-20.3.0-5314.g941b42ca.el9.x86_ 16 MB/s | 2.4 MB 00:00 2026-02-19T11:21:43.200 INFO:teuthology.orchestra.run.trial186.stdout:(4/95): ceph-osd-20.3.0-5314.g941b42ca.el9.x86_ 7.5 MB/s | 167 kB 00:00 2026-02-19T11:21:43.223 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:21:43.241 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 83/95 2026-02-19T11:21:43.243 INFO:teuthology.orchestra.run.trial010.stdout: Installing : cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 83/95 2026-02-19T11:21:43.252 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9 84/95 2026-02-19T11:21:43.261 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:21:43.262 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:21:43.276 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el 85/95 2026-02-19T11:21:43.277 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 86/95 2026-02-19T11:21:43.603 INFO:teuthology.orchestra.run.trial186.stdout:(5/95): ceph-mon-20.3.0-5314.g941b42ca.el9.x86_ 10 MB/s | 5.0 MB 00:00 2026-02-19T11:21:43.663 INFO:teuthology.orchestra.run.trial186.stdout:(6/95): ceph-grafana-dashboards-20.3.0-5314.g94 960 kB/s | 57 kB 00:00 2026-02-19T11:21:43.739 INFO:teuthology.orchestra.run.trial186.stdout:(7/95): ceph-osd-classic-20.3.0-5314.g941b42ca. 29 MB/s | 16 MB 00:00 2026-02-19T11:21:43.739 INFO:teuthology.orchestra.run.trial186.stdout:(8/95): ceph-mgr-cephadm-20.3.0-5314.g941b42ca. 2.4 MB/s | 184 kB 00:00 2026-02-19T11:21:43.863 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:21:43.863 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:21:44.144 INFO:teuthology.orchestra.run.trial186.stdout:(9/95): ceph-osd-crimson-20.3.0-5314.g941b42ca. 20 MB/s | 19 MB 00:00 2026-02-19T11:21:44.168 INFO:teuthology.orchestra.run.trial186.stdout:(10/95): ceph-mgr-k8sevents-20.3.0-5314.g941b42 931 kB/s | 22 kB 00:00 2026-02-19T11:21:44.211 INFO:teuthology.orchestra.run.trial186.stdout:(11/95): ceph-mgr-modules-core-20.3.0-5314.g941 6.6 MB/s | 297 kB 00:00 2026-02-19T11:21:44.250 INFO:teuthology.orchestra.run.trial186.stdout:(12/95): ceph-mgr-rook-20.3.0-5314.g941b42ca.el 1.3 MB/s | 50 kB 00:00 2026-02-19T11:21:44.288 INFO:teuthology.orchestra.run.trial186.stdout:(13/95): ceph-prometheus-alerts-20.3.0-5314.g94 456 kB/s | 17 kB 00:00 2026-02-19T11:21:44.333 INFO:teuthology.orchestra.run.trial186.stdout:(14/95): ceph-volume-20.3.0-5314.g941b42ca.el9. 6.6 MB/s | 301 kB 00:00 2026-02-19T11:21:44.391 INFO:teuthology.orchestra.run.trial186.stdout:(15/95): cephadm-20.3.0-5314.g941b42ca.el9.noar 17 MB/s | 1.0 MB 00:00 2026-02-19T11:21:44.443 INFO:teuthology.orchestra.run.trial186.stdout:(16/95): ceph-mgr-diskprediction-local-20.3.0-5 11 MB/s | 7.4 MB 00:00 2026-02-19T11:21:44.498 INFO:teuthology.orchestra.run.trial186.stdout:(17/95): cryptsetup-2.8.1-3.el9.x86_64.rpm 3.2 MB/s | 351 kB 00:00 2026-02-19T11:21:44.499 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:21:44.501 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/95 2026-02-19T11:21:44.505 INFO:teuthology.orchestra.run.trial186.stdout:(18/95): ledmon-libs-1.1.0-3.el9.x86_64.rpm 650 kB/s | 40 kB 00:00 2026-02-19T11:21:44.505 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/95 2026-02-19T11:21:44.521 INFO:teuthology.orchestra.run.trial186.stdout:(19/95): libconfig-1.7.2-9.el9.x86_64.rpm 3.1 MB/s | 72 kB 00:00 2026-02-19T11:21:44.527 INFO:teuthology.orchestra.run.trial132.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 3/95 2026-02-19T11:21:44.537 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 4/95 2026-02-19T11:21:44.544 INFO:teuthology.orchestra.run.trial186.stdout:(20/95): libquadmath-11.5.0-14.el9.x86_64.rpm 7.9 MB/s | 184 kB 00:00 2026-02-19T11:21:44.570 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-packaging-20.9-5.el9.noarch 5/95 2026-02-19T11:21:44.571 INFO:teuthology.orchestra.run.trial186.stdout:(21/95): python3-cffi-1.14.5-5.el9.x86_64.rpm 9.2 MB/s | 253 kB 00:00 2026-02-19T11:21:44.577 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 6/95 2026-02-19T11:21:44.579 INFO:teuthology.orchestra.run.trial132.stdout: Installing : lua-5.4.4-4.el9.x86_64 7/95 2026-02-19T11:21:44.584 INFO:teuthology.orchestra.run.trial132.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 8/95 2026-02-19T11:21:44.591 INFO:teuthology.orchestra.run.trial186.stdout:(22/95): libgfortran-11.5.0-14.el9.x86_64.rpm 9.1 MB/s | 794 kB 00:00 2026-02-19T11:21:44.607 INFO:teuthology.orchestra.run.trial132.stdout: Installing : unzip-6.0-59.el9.x86_64 9/95 2026-02-19T11:21:44.614 INFO:teuthology.orchestra.run.trial186.stdout:(23/95): python3-ply-3.11-14.el9.noarch.rpm 4.5 MB/s | 106 kB 00:00 2026-02-19T11:21:44.619 INFO:teuthology.orchestra.run.trial186.stdout:(24/95): python3-cryptography-36.0.1-5.el9.x86_ 26 MB/s | 1.2 MB 00:00 2026-02-19T11:21:44.620 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 10/95 2026-02-19T11:21:44.623 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 11/95 2026-02-19T11:21:44.629 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 12/95 2026-02-19T11:21:44.631 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 13/95 2026-02-19T11:21:44.637 INFO:teuthology.orchestra.run.trial186.stdout:(25/95): python3-pycparser-2.20-6.el9.noarch.rp 5.9 MB/s | 135 kB 00:00 2026-02-19T11:21:44.642 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 14/95 2026-02-19T11:21:44.643 INFO:teuthology.orchestra.run.trial186.stdout:(26/95): python3-requests-2.25.1-10.el9.noarch. 5.1 MB/s | 126 kB 00:00 2026-02-19T11:21:44.648 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 15/95 2026-02-19T11:21:44.661 INFO:teuthology.orchestra.run.trial186.stdout:(27/95): python3-urllib3-1.26.5-7.el9.noarch.rp 8.8 MB/s | 218 kB 00:00 2026-02-19T11:21:44.665 INFO:teuthology.orchestra.run.trial186.stdout:(28/95): unzip-6.0-59.el9.x86_64.rpm 8.0 MB/s | 182 kB 00:00 2026-02-19T11:21:44.672 INFO:teuthology.orchestra.run.trial132.stdout: Installing : zip-3.0-35.el9.x86_64 16/95 2026-02-19T11:21:44.676 INFO:teuthology.orchestra.run.trial132.stdout: Installing : luarocks-3.9.2-5.el9.noarch 17/95 2026-02-19T11:21:44.685 INFO:teuthology.orchestra.run.trial186.stdout:(29/95): zip-3.0-35.el9.x86_64.rpm 11 MB/s | 266 kB 00:00 2026-02-19T11:21:44.726 INFO:teuthology.orchestra.run.trial132.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 18/95 2026-02-19T11:21:44.739 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 19/95 2026-02-19T11:21:44.741 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-rsa-4.9-2.el9.noarch 20/95 2026-02-19T11:21:44.746 INFO:teuthology.orchestra.run.trial132.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 21/95 2026-02-19T11:21:44.751 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 22/95 2026-02-19T11:21:44.756 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 23/95 2026-02-19T11:21:44.759 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 24/95 2026-02-19T11:21:44.773 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 25/95 2026-02-19T11:21:44.778 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 26/95 2026-02-19T11:21:44.783 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 27/95 2026-02-19T11:21:44.794 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 28/95 2026-02-19T11:21:44.803 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 29/95 2026-02-19T11:21:44.809 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 30/95 2026-02-19T11:21:44.829 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 31/95 2026-02-19T11:21:44.840 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 32/95 2026-02-19T11:21:44.856 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 33/95 2026-02-19T11:21:44.861 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 34/95 2026-02-19T11:21:44.868 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 35/95 2026-02-19T11:21:44.908 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 36/95 2026-02-19T11:21:45.001 INFO:teuthology.orchestra.run.trial186.stdout:(30/95): ceph-mgr-dashboard-20.3.0-5314.g941b42 40 MB/s | 51 MB 00:01 2026-02-19T11:21:45.002 INFO:teuthology.orchestra.run.trial186.stdout:(31/95): flexiblas-3.0.4-9.el9.x86_64.rpm 88 kB/s | 30 kB 00:00 2026-02-19T11:21:45.102 INFO:teuthology.orchestra.run.trial186.stdout:(32/95): flexiblas-openblas-openmp-3.0.4-9.el9. 147 kB/s | 15 kB 00:00 2026-02-19T11:21:45.235 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 37/95 2026-02-19T11:21:45.245 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 38/95 2026-02-19T11:21:45.249 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 39/95 2026-02-19T11:21:45.254 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 40/95 2026-02-19T11:21:45.256 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 41/95 2026-02-19T11:21:45.285 INFO:teuthology.orchestra.run.trial132.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 42/95 2026-02-19T11:21:45.328 INFO:teuthology.orchestra.run.trial132.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 43/95 2026-02-19T11:21:45.337 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 44/95 2026-02-19T11:21:45.342 INFO:teuthology.orchestra.run.trial132.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 45/95 2026-02-19T11:21:45.346 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 46/95 2026-02-19T11:21:45.352 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 47/95 2026-02-19T11:21:45.355 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 48/95 2026-02-19T11:21:45.362 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 49/95 2026-02-19T11:21:45.366 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 50/95 2026-02-19T11:21:45.391 INFO:teuthology.orchestra.run.trial186.stdout:(33/95): lua-5.4.4-4.el9.x86_64.rpm 651 kB/s | 188 kB 00:00 2026-02-19T11:21:45.394 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 51/95 2026-02-19T11:21:45.404 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 52/95 2026-02-19T11:21:45.411 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 53/95 2026-02-19T11:21:45.418 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 54/95 2026-02-19T11:21:45.453 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 55/95 2026-02-19T11:21:45.474 INFO:teuthology.orchestra.run.trial186.stdout:(34/95): flexiblas-netlib-3.0.4-9.el9.x86_64.rp 3.8 MB/s | 3.0 MB 00:00 2026-02-19T11:21:45.479 INFO:teuthology.orchestra.run.trial186.stdout:(35/95): openblas-0.3.29-1.el9.x86_64.rpm 478 kB/s | 42 kB 00:00 2026-02-19T11:21:45.497 INFO:teuthology.orchestra.run.trial186.stdout:(36/95): libstoragemgmt-1.10.1-1.el9.x86_64.rpm 497 kB/s | 246 kB 00:00 2026-02-19T11:21:45.632 INFO:teuthology.orchestra.run.trial186.stdout:(37/95): python3-devel-3.9.25-3.el9.x86_64.rpm 1.8 MB/s | 244 kB 00:00 2026-02-19T11:21:45.679 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 56/95 2026-02-19T11:21:45.680 INFO:teuthology.orchestra.run.trial186.stdout:(38/95): openblas-openmp-0.3.29-1.el9.x86_64.rp 26 MB/s | 5.3 MB 00:00 2026-02-19T11:21:45.703 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 57/95 2026-02-19T11:21:45.706 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 58/95 2026-02-19T11:21:45.757 INFO:teuthology.orchestra.run.trial186.stdout:(39/95): python3-jinja2-2.11.3-8.el9.noarch.rpm 1.9 MB/s | 249 kB 00:00 2026-02-19T11:21:45.759 INFO:teuthology.orchestra.run.trial186.stdout:(40/95): python3-jmespath-1.0.1-1.el9.noarch.rp 601 kB/s | 48 kB 00:00 2026-02-19T11:21:45.765 INFO:teuthology.orchestra.run.trial132.stdout: Installing : openblas-0.3.29-1.el9.x86_64 59/95 2026-02-19T11:21:45.767 INFO:teuthology.orchestra.run.trial132.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 60/95 2026-02-19T11:21:45.789 INFO:teuthology.orchestra.run.trial132.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 61/95 2026-02-19T11:21:45.849 INFO:teuthology.orchestra.run.trial186.stdout:(41/95): python3-lxml-4.6.5-3.el9.x86_64.rpm 14 MB/s | 1.2 MB 00:00 2026-02-19T11:21:45.866 INFO:teuthology.orchestra.run.trial186.stdout:(42/95): python3-libstoragemgmt-1.10.1-1.el9.x8 1.6 MB/s | 177 kB 00:00 2026-02-19T11:21:45.929 INFO:teuthology.orchestra.run.trial186.stdout:(43/95): python3-markupsafe-1.1.1-12.el9.x86_64 440 kB/s | 35 kB 00:00 2026-02-19T11:21:45.959 INFO:teuthology.orchestra.run.trial186.stdout:(44/95): python3-babel-2.9.1-2.el9.noarch.rpm 12 MB/s | 6.0 MB 00:00 2026-02-19T11:21:46.011 INFO:teuthology.orchestra.run.trial186.stdout:(45/95): python3-numpy-f2py-1.23.5-2.el9.x86_64 5.3 MB/s | 442 kB 00:00 2026-02-19T11:21:46.039 INFO:teuthology.orchestra.run.trial186.stdout:(46/95): python3-packaging-20.9-5.el9.noarch.rp 961 kB/s | 77 kB 00:00 2026-02-19T11:21:46.092 INFO:teuthology.orchestra.run.trial186.stdout:(47/95): python3-protobuf-3.14.0-17.el9.noarch. 3.2 MB/s | 267 kB 00:00 2026-02-19T11:21:46.116 INFO:teuthology.orchestra.run.trial132.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 62/95 2026-02-19T11:21:46.120 INFO:teuthology.orchestra.run.trial186.stdout:(48/95): python3-pyasn1-0.4.8-6.el9.noarch.rpm 1.9 MB/s | 159 kB 00:00 2026-02-19T11:21:46.161 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 86/95 2026-02-19T11:21:46.168 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 87/95 2026-02-19T11:21:46.173 INFO:teuthology.orchestra.run.trial186.stdout:(49/95): python3-pyasn1-modules-0.4.8-6.el9.noa 3.3 MB/s | 279 kB 00:00 2026-02-19T11:21:46.189 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 63/95 2026-02-19T11:21:46.201 INFO:teuthology.orchestra.run.trial186.stdout:(50/95): python3-requests-oauthlib-1.3.0-12.el9 669 kB/s | 54 kB 00:00 2026-02-19T11:21:46.281 INFO:teuthology.orchestra.run.trial186.stdout:(51/95): python3-toml-0.10.2-6.el9.noarch.rpm 522 kB/s | 42 kB 00:00 2026-02-19T11:21:46.302 INFO:teuthology.orchestra.run.trial186.stdout:(52/95): python3-numpy-1.23.5-2.el9.x86_64.rpm 14 MB/s | 6.1 MB 00:00 2026-02-19T11:21:46.362 INFO:teuthology.orchestra.run.trial186.stdout:(53/95): xmlsec1-1.2.29-13.el9.x86_64.rpm 2.3 MB/s | 189 kB 00:00 2026-02-19T11:21:46.381 INFO:teuthology.orchestra.run.trial186.stdout:(54/95): xmlsec1-openssl-1.2.29-13.el9.x86_64.r 1.1 MB/s | 90 kB 00:00 2026-02-19T11:21:46.628 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 87/95 2026-02-19T11:21:46.628 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 88/95 2026-02-19T11:21:46.642 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 88/95 2026-02-19T11:21:46.643 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 89/95 2026-02-19T11:21:46.705 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 89/95 2026-02-19T11:21:46.746 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9. 90/95 2026-02-19T11:21:46.747 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 91/95 2026-02-19T11:21:46.765 INFO:teuthology.orchestra.run.trial186.stdout:(55/95): python3-scipy-1.9.3-2.el9.x86_64.rpm 33 MB/s | 19 MB 00:00 2026-02-19T11:21:46.768 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 91/95 2026-02-19T11:21:46.768 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:46.768 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-19T11:21:46.768 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-19T11:21:46.768 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-19T11:21:46.768 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:46.779 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 92/95 2026-02-19T11:21:46.857 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 64/95 2026-02-19T11:21:46.875 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 65/95 2026-02-19T11:21:46.888 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-ply-3.11-14.el9.noarch 66/95 2026-02-19T11:21:46.904 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 67/95 2026-02-19T11:21:46.939 INFO:teuthology.orchestra.run.trial186.stdout:(56/95): lua-devel-5.4.4-4.el9.x86_64.rpm 39 kB/s | 22 kB 00:00 2026-02-19T11:21:46.982 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 68/95 2026-02-19T11:21:46.991 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 69/95 2026-02-19T11:21:47.000 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 92/95 2026-02-19T11:21:47.002 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 93/95 2026-02-19T11:21:47.015 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 70/95 2026-02-19T11:21:47.023 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 93/95 2026-02-19T11:21:47.023 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:47.023 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-19T11:21:47.023 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-19T11:21:47.023 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-19T11:21:47.024 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:47.044 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 71/95 2026-02-19T11:21:47.089 INFO:teuthology.orchestra.run.trial186.stdout:(57/95): grpc-data-1.46.7-10.el9.noarch.rpm 130 kB/s | 19 kB 00:00 2026-02-19T11:21:47.094 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 72/95 2026-02-19T11:21:47.100 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 73/95 2026-02-19T11:21:47.104 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 74/95 2026-02-19T11:21:47.105 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 75/95 2026-02-19T11:21:47.117 INFO:teuthology.orchestra.run.trial186.stdout:(58/95): abseil-cpp-20211102.0-4.el9.x86_64.rpm 1.5 MB/s | 551 kB 00:00 2026-02-19T11:21:47.118 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 94/95 2026-02-19T11:21:47.123 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:47.123 INFO:teuthology.orchestra.run.trial132.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-19T11:21:47.123 INFO:teuthology.orchestra.run.trial132.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-19T11:21:47.123 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:47.131 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:47.138 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 94/95 2026-02-19T11:21:47.138 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:47.138 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-19T11:21:47.138 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-19T11:21:47.138 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-19T11:21:47.139 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:47.139 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 95/95 2026-02-19T11:21:47.146 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 95/95 2026-02-19T11:21:47.158 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:47.158 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-19T11:21:47.159 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:47.169 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 95/95 2026-02-19T11:21:47.171 INFO:teuthology.orchestra.run.trial186.stdout:(59/95): python3-asyncssh-2.13.2-5.el9.noarch.r 10 MB/s | 548 kB 00:00 2026-02-19T11:21:47.196 INFO:teuthology.orchestra.run.trial132.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 77/95 2026-02-19T11:21:47.219 INFO:teuthology.orchestra.run.trial186.stdout:(60/95): python3-autocommand-2.2.2-8.el9.noarch 609 kB/s | 29 kB 00:00 2026-02-19T11:21:47.240 INFO:teuthology.orchestra.run.trial186.stdout:(61/95): luarocks-3.9.2-5.el9.noarch.rpm 1.0 MB/s | 151 kB 00:00 2026-02-19T11:21:47.269 INFO:teuthology.orchestra.run.trial186.stdout:(62/95): python3-backports-tarfile-1.2.0-1.el9. 1.2 MB/s | 60 kB 00:00 2026-02-19T11:21:47.288 INFO:teuthology.orchestra.run.trial186.stdout:(63/95): python3-bcrypt-3.2.2-1.el9.x86_64.rpm 916 kB/s | 43 kB 00:00 2026-02-19T11:21:47.317 INFO:teuthology.orchestra.run.trial186.stdout:(64/95): python3-cachetools-4.2.4-1.el9.noarch. 667 kB/s | 32 kB 00:00 2026-02-19T11:21:47.335 INFO:teuthology.orchestra.run.trial186.stdout:(65/95): python3-certifi-2023.05.07-4.el9.noarc 300 kB/s | 14 kB 00:00 2026-02-19T11:21:47.367 INFO:teuthology.orchestra.run.trial186.stdout:(66/95): python3-cheroot-10.0.1-4.el9.noarch.rp 3.4 MB/s | 173 kB 00:00 2026-02-19T11:21:47.421 INFO:teuthology.orchestra.run.trial186.stdout:(67/95): python3-google-auth-2.45.0-1.el9.noarc 4.6 MB/s | 254 kB 00:00 2026-02-19T11:21:47.430 INFO:teuthology.orchestra.run.trial186.stdout:(68/95): python3-cherrypy-18.6.1-2.el9.noarch.r 3.7 MB/s | 358 kB 00:00 2026-02-19T11:21:47.501 INFO:teuthology.orchestra.run.trial186.stdout:(69/95): python3-grpcio-tools-1.46.7-10.el9.x86 2.0 MB/s | 144 kB 00:00 2026-02-19T11:21:47.560 INFO:teuthology.orchestra.run.trial186.stdout:(70/95): python3-influxdb-5.3.1-1.el9.noarch.rp 2.3 MB/s | 139 kB 00:00 2026-02-19T11:21:47.600 INFO:teuthology.orchestra.run.trial186.stdout:(71/95): python3-grpcio-1.46.7-10.el9.x86_64.rp 11 MB/s | 2.0 MB 00:00 2026-02-19T11:21:47.616 INFO:teuthology.orchestra.run.trial186.stdout:(72/95): python3-isodate-0.6.1-3.el9.noarch.rpm 1.0 MB/s | 56 kB 00:00 2026-02-19T11:21:47.658 INFO:teuthology.orchestra.run.trial186.stdout:(73/95): python3-jaraco-8.2.1-3.el9.noarch.rpm 185 kB/s | 11 kB 00:00 2026-02-19T11:21:47.672 INFO:teuthology.orchestra.run.trial186.stdout:(74/95): python3-jaraco-classes-3.2.1-5.el9.noa 312 kB/s | 18 kB 00:00 2026-02-19T11:21:47.706 INFO:teuthology.orchestra.run.trial186.stdout:(75/95): python3-jaraco-collections-3.0.0-8.el9 480 kB/s | 23 kB 00:00 2026-02-19T11:21:47.720 INFO:teuthology.orchestra.run.trial186.stdout:(76/95): python3-jaraco-context-6.0.1-3.el9.noa 416 kB/s | 20 kB 00:00 2026-02-19T11:21:47.754 INFO:teuthology.orchestra.run.trial186.stdout:(77/95): python3-jaraco-functools-3.5.0-2.el9.n 406 kB/s | 19 kB 00:00 2026-02-19T11:21:47.766 INFO:teuthology.orchestra.run.trial186.stdout:(78/95): python3-jaraco-text-4.0.0-2.el9.noarch 563 kB/s | 26 kB 00:00 2026-02-19T11:21:47.813 INFO:teuthology.orchestra.run.trial132.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 78/95 2026-02-19T11:21:47.816 INFO:teuthology.orchestra.run.trial186.stdout:(79/95): python3-kubernetes-26.1.0-3.el9.noarch 16 MB/s | 1.0 MB 00:00 2026-02-19T11:21:47.817 INFO:teuthology.orchestra.run.trial186.stdout:(80/95): python3-more-itertools-8.12.0-2.el9.no 1.5 MB/s | 79 kB 00:00 2026-02-19T11:21:47.866 INFO:teuthology.orchestra.run.trial186.stdout:(81/95): python3-msgpack-1.0.3-2.el9.x86_64.rpm 1.7 MB/s | 86 kB 00:00 2026-02-19T11:21:47.867 INFO:teuthology.orchestra.run.trial186.stdout:(82/95): python3-natsort-7.1.1-5.el9.noarch.rpm 1.1 MB/s | 58 kB 00:00 2026-02-19T11:21:47.914 INFO:teuthology.orchestra.run.trial186.stdout:(83/95): python3-portend-3.1.0-2.el9.noarch.rpm 343 kB/s | 16 kB 00:00 2026-02-19T11:21:47.915 INFO:teuthology.orchestra.run.trial186.stdout:(84/95): python3-pyOpenSSL-21.0.0-1.el9.noarch. 1.8 MB/s | 90 kB 00:00 2026-02-19T11:21:47.944 INFO:teuthology.orchestra.run.trial186.stdout:(85/95): protobuf-compiler-3.14.0-17.el9.x86_64 551 kB/s | 862 kB 00:01 2026-02-19T11:21:47.963 INFO:teuthology.orchestra.run.trial186.stdout:(86/95): python3-repoze-lru-0.7-16.el9.noarch.r 639 kB/s | 31 kB 00:00 2026-02-19T11:21:47.964 INFO:teuthology.orchestra.run.trial186.stdout:(87/95): python3-routes-2.5.1-5.el9.noarch.rpm 3.7 MB/s | 188 kB 00:00 2026-02-19T11:21:48.000 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 95/95 2026-02-19T11:21:48.000 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 1/95 2026-02-19T11:21:48.000 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 2/95 2026-02-19T11:21:48.000 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 3/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 4/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 5/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 6/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 7/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el 8/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 9/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 10/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 11/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 12/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9. 13/95 2026-02-19T11:21:48.001 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 14/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9 15/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 16/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 17/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 18/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 19/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 20/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 21/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 22/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 23/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 24/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-ply-3.11-14.el9.noarch 25/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 26/95 2026-02-19T11:21:48.002 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 27/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 28/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : unzip-6.0-59.el9.x86_64 29/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : zip-3.0-35.el9.x86_64 30/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 31/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 32/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 33/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 34/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : lua-5.4.4-4.el9.x86_64 35/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 36/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 37/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 38/95 2026-02-19T11:21:48.003 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 39/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 40/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 41/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 42/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 43/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 44/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 45/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 46/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 47/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 48/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 49/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 50/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 51/95 2026-02-19T11:21:48.004 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 52/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 53/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 54/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 55/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 56/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 57/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 58/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 59/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 60/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 61/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 62/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 63/95 2026-02-19T11:21:48.005 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 64/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 65/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 66/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 67/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 68/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 69/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 70/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 71/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 72/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 73/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 74/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 75/95 2026-02-19T11:21:48.006 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 76/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 77/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 78/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 79/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 80/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 81/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 82/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 83/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 84/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 85/95 2026-02-19T11:21:48.007 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 86/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 87/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 88/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 89/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 90/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 91/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 92/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 93/95 2026-02-19T11:21:48.008 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 94/95 2026-02-19T11:21:48.012 INFO:teuthology.orchestra.run.trial186.stdout:(88/95): python3-saml-1.16.0-1.el9.noarch.rpm 2.5 MB/s | 125 kB 00:00 2026-02-19T11:21:48.012 INFO:teuthology.orchestra.run.trial186.stdout:(89/95): python3-tempora-5.0.0-2.el9.noarch.rpm 753 kB/s | 36 kB 00:00 2026-02-19T11:21:48.061 INFO:teuthology.orchestra.run.trial186.stdout:(90/95): python3-typing-extensions-4.15.0-1.el9 1.7 MB/s | 86 kB 00:00 2026-02-19T11:21:48.062 INFO:teuthology.orchestra.run.trial186.stdout:(91/95): python3-websocket-client-1.2.3-2.el9.n 1.8 MB/s | 90 kB 00:00 2026-02-19T11:21:48.063 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 95/95 2026-02-19T11:21:48.063 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.064 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-19T11:21:48.065 INFO:teuthology.orchestra.run.trial010.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: lua-5.4.4-4.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-19T11:21:48.066 INFO:teuthology.orchestra.run.trial010.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-19T11:21:48.067 INFO:teuthology.orchestra.run.trial010.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-19T11:21:48.068 INFO:teuthology.orchestra.run.trial010.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-19T11:21:48.069 INFO:teuthology.orchestra.run.trial010.stdout: python3-ply-3.11-14.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-19T11:21:48.070 INFO:teuthology.orchestra.run.trial010.stdout: python3-saml-1.16.0-1.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: unzip-6.0-59.el9.x86_64 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-02-19T11:21:48.071 INFO:teuthology.orchestra.run.trial010.stdout: zip-3.0-35.el9.x86_64 2026-02-19T11:21:48.072 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:48.072 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:48.110 INFO:teuthology.orchestra.run.trial186.stdout:(92/95): python3-xmlsec-1.3.13-1.el9.x86_64.rpm 993 kB/s | 48 kB 00:00 2026-02-19T11:21:48.123 INFO:teuthology.orchestra.run.trial186.stdout:(93/95): python3-xmltodict-0.12.0-15.el9.noarch 361 kB/s | 22 kB 00:00 2026-02-19T11:21:48.126 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-base 2026-02-19T11:21:48.127 INFO:teuthology.orchestra.run.trial186.stdout:(94/95): python3-rsa-4.9-2.el9.noarch.rpm 324 kB/s | 59 kB 00:00 2026-02-19T11:21:48.159 INFO:teuthology.orchestra.run.trial186.stdout:(95/95): python3-zc-lockfile-2.0-10.el9.noarch. 407 kB/s | 20 kB 00:00 2026-02-19T11:21:48.162 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:48.163 INFO:teuthology.orchestra.run.trial186.stdout:Total 28 MB/s | 158 MB 00:05 2026-02-19T11:21:48.442 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:34 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:48.507 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:48.525 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:48.526 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:48.526 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:48.548 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install cephadm 2026-02-19T11:21:48.574 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 79/95 2026-02-19T11:21:48.589 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:21:48.628 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:21:48.628 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:21:48.638 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 80/95 2026-02-19T11:21:48.640 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 81/95 2026-02-19T11:21:48.655 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 81/95 2026-02-19T11:21:48.655 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:48.655 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-19T11:21:48.656 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:48.665 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 82/95 2026-02-19T11:21:48.688 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 82/95 2026-02-19T11:21:48.688 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:48.688 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-19T11:21:48.688 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-19T11:21:48.688 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-19T11:21:48.688 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:48.750 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 83/95 2026-02-19T11:21:48.752 INFO:teuthology.orchestra.run.trial132.stdout: Installing : cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 83/95 2026-02-19T11:21:48.761 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9 84/95 2026-02-19T11:21:48.785 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el 85/95 2026-02-19T11:21:48.786 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 86/95 2026-02-19T11:21:48.851 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:34 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:48.915 INFO:teuthology.orchestra.run.trial010.stdout:Package cephadm-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:48.934 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:48.934 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:48.935 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:48.955 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-immutable-object-cache 2026-02-19T11:21:49.231 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:21:49.232 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:21:49.264 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:35 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repo Size 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout: ceph-immutable-object-cache x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 147 k 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 147 k 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 419 k 2026-02-19T11:21:49.349 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:49.437 INFO:teuthology.orchestra.run.trial010.stdout:ceph-immutable-object-cache-20.3.0-5314.g941b42 1.7 MB/s | 147 kB 00:00 2026-02-19T11:21:49.438 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:49.438 INFO:teuthology.orchestra.run.trial010.stdout:Total 1.6 MB/s | 147 kB 00:00 2026-02-19T11:21:49.438 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:49.442 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:49.443 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:49.474 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:49.474 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:49.529 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:49.530 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:21:49.552 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:21:49.553 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:49.553 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-19T11:21:49.553 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:49.860 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:21:49.860 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:49.860 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:49.860 INFO:teuthology.orchestra.run.trial010.stdout: ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:49.860 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:49.860 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:49.868 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:21:49.870 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-more-itertools-8.12.0-2.el9.noarch 1/95 2026-02-19T11:21:49.874 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jaraco-8.2.1-3.el9.noarch 2/95 2026-02-19T11:21:49.887 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-mgr 2026-02-19T11:21:49.895 INFO:teuthology.orchestra.run.trial186.stdout: Installing : xmlsec1-1.2.29-13.el9.x86_64 3/95 2026-02-19T11:21:49.906 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-pyasn1-0.4.8-6.el9.noarch 4/95 2026-02-19T11:21:49.939 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-packaging-20.9-5.el9.noarch 5/95 2026-02-19T11:21:49.945 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-lxml-4.6.5-3.el9.x86_64 6/95 2026-02-19T11:21:49.948 INFO:teuthology.orchestra.run.trial186.stdout: Installing : lua-5.4.4-4.el9.x86_64 7/95 2026-02-19T11:21:49.952 INFO:teuthology.orchestra.run.trial186.stdout: Installing : flexiblas-3.0.4-9.el9.x86_64 8/95 2026-02-19T11:21:49.975 INFO:teuthology.orchestra.run.trial186.stdout: Installing : unzip-6.0-59.el9.x86_64 9/95 2026-02-19T11:21:49.988 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-urllib3-1.26.5-7.el9.noarch 10/95 2026-02-19T11:21:49.991 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-requests-2.25.1-10.el9.noarch 11/95 2026-02-19T11:21:49.997 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libquadmath-11.5.0-14.el9.x86_64 12/95 2026-02-19T11:21:49.999 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libgfortran-11.5.0-14.el9.x86_64 13/95 2026-02-19T11:21:50.010 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ledmon-libs-1.1.0-3.el9.x86_64 14/95 2026-02-19T11:21:50.017 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-requests-oauthlib-1.3.0-12.el9.noarch 15/95 2026-02-19T11:21:50.041 INFO:teuthology.orchestra.run.trial186.stdout: Installing : zip-3.0-35.el9.x86_64 16/95 2026-02-19T11:21:50.044 INFO:teuthology.orchestra.run.trial186.stdout: Installing : luarocks-3.9.2-5.el9.noarch 17/95 2026-02-19T11:21:50.096 INFO:teuthology.orchestra.run.trial186.stdout: Installing : lua-devel-5.4.4-4.el9.x86_64 18/95 2026-02-19T11:21:50.109 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-pyasn1-modules-0.4.8-6.el9.noarch 19/95 2026-02-19T11:21:50.111 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-rsa-4.9-2.el9.noarch 20/95 2026-02-19T11:21:50.115 INFO:teuthology.orchestra.run.trial186.stdout: Installing : xmlsec1-openssl-1.2.29-13.el9.x86_64 21/95 2026-02-19T11:21:50.121 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-xmlsec-1.3.13-1.el9.x86_64 22/95 2026-02-19T11:21:50.125 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jaraco-classes-3.2.1-5.el9.noarch 23/95 2026-02-19T11:21:50.128 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-zc-lockfile-2.0-10.el9.noarch 24/95 2026-02-19T11:21:50.143 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-xmltodict-0.12.0-15.el9.noarch 25/95 2026-02-19T11:21:50.147 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-websocket-client-1.2.3-2.el9.noarch 26/95 2026-02-19T11:21:50.152 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-typing-extensions-4.15.0-1.el9.noarch 27/95 2026-02-19T11:21:50.163 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-repoze-lru-0.7-16.el9.noarch 28/95 2026-02-19T11:21:50.172 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-routes-2.5.1-5.el9.noarch 29/95 2026-02-19T11:21:50.178 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-natsort-7.1.1-5.el9.noarch 30/95 2026-02-19T11:21:50.193 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:36 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:50.198 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-msgpack-1.0.3-2.el9.x86_64 31/95 2026-02-19T11:21:50.209 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-influxdb-5.3.1-1.el9.noarch 32/95 2026-02-19T11:21:50.224 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-isodate-0.6.1-3.el9.noarch 33/95 2026-02-19T11:21:50.229 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-saml-1.16.0-1.el9.noarch 34/95 2026-02-19T11:21:50.236 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-certifi-2023.05.07-4.el9.noarch 35/95 2026-02-19T11:21:50.257 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:50.276 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:50.276 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-cachetools-4.2.4-1.el9.noarch 36/95 2026-02-19T11:21:50.276 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:50.276 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:50.296 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-mgr-dashboard 2026-02-19T11:21:50.599 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-google-auth-1:2.45.0-1.el9.noarch 37/95 2026-02-19T11:21:50.606 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:36 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:50.609 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-kubernetes-1:26.1.0-3.el9.noarch 38/95 2026-02-19T11:21:50.613 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-backports-tarfile-1.2.0-1.el9.noarch 39/95 2026-02-19T11:21:50.618 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jaraco-context-6.0.1-3.el9.noarch 40/95 2026-02-19T11:21:50.620 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-autocommand-2.2.2-8.el9.noarch 41/95 2026-02-19T11:21:50.647 INFO:teuthology.orchestra.run.trial186.stdout: Installing : grpc-data-1.46.7-10.el9.noarch 42/95 2026-02-19T11:21:50.672 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:50.690 INFO:teuthology.orchestra.run.trial186.stdout: Installing : abseil-cpp-20211102.0-4.el9.x86_64 43/95 2026-02-19T11:21:50.691 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:50.691 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:50.691 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:50.699 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-grpcio-1.46.7-10.el9.x86_64 44/95 2026-02-19T11:21:50.704 INFO:teuthology.orchestra.run.trial186.stdout: Installing : protobuf-compiler-3.14.0-17.el9.x86_64 45/95 2026-02-19T11:21:50.708 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-toml-0.10.2-6.el9.noarch 46/95 2026-02-19T11:21:50.713 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-19T11:21:50.714 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jaraco-functools-3.5.0-2.el9.noarch 47/95 2026-02-19T11:21:50.717 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jaraco-text-4.0.0-2.el9.noarch 48/95 2026-02-19T11:21:50.724 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jaraco-collections-3.0.0-8.el9.noarch 49/95 2026-02-19T11:21:50.728 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-tempora-5.0.0-2.el9.noarch 50/95 2026-02-19T11:21:50.755 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-portend-3.1.0-2.el9.noarch 51/95 2026-02-19T11:21:50.765 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-protobuf-3.14.0-17.el9.noarch 52/95 2026-02-19T11:21:50.773 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-grpcio-tools-1.46.7-10.el9.x86_64 53/95 2026-02-19T11:21:50.780 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-markupsafe-1.1.1-12.el9.x86_64 54/95 2026-02-19T11:21:50.814 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jmespath-1.0.1-1.el9.noarch 55/95 2026-02-19T11:21:51.018 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:37 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:51.038 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-devel-3.9.25-3.el9.x86_64 56/95 2026-02-19T11:21:51.061 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-babel-2.9.1-2.el9.noarch 57/95 2026-02-19T11:21:51.065 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-jinja2-2.11.3-8.el9.noarch 58/95 2026-02-19T11:21:51.082 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:51.101 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:51.102 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:51.102 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:51.122 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-mgr-rook 2026-02-19T11:21:51.125 INFO:teuthology.orchestra.run.trial186.stdout: Installing : openblas-0.3.29-1.el9.x86_64 59/95 2026-02-19T11:21:51.126 INFO:teuthology.orchestra.run.trial186.stdout: Installing : openblas-openmp-0.3.29-1.el9.x86_64 60/95 2026-02-19T11:21:51.147 INFO:teuthology.orchestra.run.trial186.stdout: Installing : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 61/95 2026-02-19T11:21:51.424 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:37 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:51.472 INFO:teuthology.orchestra.run.trial186.stdout: Installing : flexiblas-netlib-3.0.4-9.el9.x86_64 62/95 2026-02-19T11:21:51.490 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:51.508 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:51.509 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:51.509 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:51.529 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-mgr-cephadm 2026-02-19T11:21:51.545 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-numpy-1:1.23.5-2.el9.x86_64 63/95 2026-02-19T11:21:51.658 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 86/95 2026-02-19T11:21:51.665 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 87/95 2026-02-19T11:21:51.837 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:37 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:51.901 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:51.919 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:51.920 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:51.920 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:51.940 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-osd 2026-02-19T11:21:52.116 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 87/95 2026-02-19T11:21:52.117 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 88/95 2026-02-19T11:21:52.130 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 88/95 2026-02-19T11:21:52.131 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 89/95 2026-02-19T11:21:52.195 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 89/95 2026-02-19T11:21:52.213 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 64/95 2026-02-19T11:21:52.232 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-scipy-1.9.3-2.el9.x86_64 65/95 2026-02-19T11:21:52.236 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9. 90/95 2026-02-19T11:21:52.238 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 91/95 2026-02-19T11:21:52.245 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-ply-3.11-14.el9.noarch 66/95 2026-02-19T11:21:52.246 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:38 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:52.260 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 91/95 2026-02-19T11:21:52.260 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:52.260 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-19T11:21:52.260 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-19T11:21:52.261 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-19T11:21:52.261 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:52.261 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-pycparser-2.20-6.el9.noarch 67/95 2026-02-19T11:21:52.273 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 92/95 2026-02-19T11:21:52.311 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:52.330 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:52.330 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:52.330 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:52.336 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-cffi-1.14.5-5.el9.x86_64 68/95 2026-02-19T11:21:52.344 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-cryptography-36.0.1-5.el9.x86_64 69/95 2026-02-19T11:21:52.352 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-osd-classic 2026-02-19T11:21:52.368 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-pyOpenSSL-21.0.0-1.el9.noarch 70/95 2026-02-19T11:21:52.397 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-cheroot-10.0.1-4.el9.noarch 71/95 2026-02-19T11:21:52.448 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-cherrypy-18.6.1-2.el9.noarch 72/95 2026-02-19T11:21:52.454 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-asyncssh-2.13.2-5.el9.noarch 73/95 2026-02-19T11:21:52.457 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-bcrypt-3.2.2-1.el9.x86_64 74/95 2026-02-19T11:21:52.458 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libconfig-1.7.2-9.el9.x86_64 75/95 2026-02-19T11:21:52.475 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:52.475 INFO:teuthology.orchestra.run.trial186.stdout:Creating group 'libstoragemgmt' with GID 991. 2026-02-19T11:21:52.475 INFO:teuthology.orchestra.run.trial186.stdout:Creating user 'libstoragemgmt' (daemon account for libstoragemgmt) with UID 991 and GID 991. 2026-02-19T11:21:52.475 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:52.482 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:52.495 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 92/95 2026-02-19T11:21:52.496 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 93/95 2026-02-19T11:21:52.508 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libstoragemgmt-1.10.1-1.el9.x86_64 76/95 2026-02-19T11:21:52.508 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/libstoragemgmt.service → /usr/lib/systemd/system/libstoragemgmt.service. 2026-02-19T11:21:52.508 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:52.519 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 93/95 2026-02-19T11:21:52.519 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:52.519 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-19T11:21:52.519 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-19T11:21:52.519 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-19T11:21:52.519 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:52.542 INFO:teuthology.orchestra.run.trial186.stdout: Installing : python3-libstoragemgmt-1.10.1-1.el9.x86_64 77/95 2026-02-19T11:21:52.615 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 94/95 2026-02-19T11:21:52.637 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 94/95 2026-02-19T11:21:52.637 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:52.637 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-19T11:21:52.637 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-19T11:21:52.638 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-19T11:21:52.638 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:52.638 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 95/95 2026-02-19T11:21:52.646 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 95/95 2026-02-19T11:21:52.659 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:38 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:52.668 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 95/95 2026-02-19T11:21:52.723 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:52.741 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:52.742 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:52.742 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:52.763 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-fuse 2026-02-19T11:21:53.071 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:39 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:53.155 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:53.155 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:53.155 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repo Size 2026-02-19T11:21:53.155 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:53.155 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:53.155 INFO:teuthology.orchestra.run.trial010.stdout: ceph-fuse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 988 k 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 988 k 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 2.9 M 2026-02-19T11:21:53.156 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:53.159 INFO:teuthology.orchestra.run.trial186.stdout: Installing : cryptsetup-2.8.1-3.el9.x86_64 78/95 2026-02-19T11:21:53.276 INFO:teuthology.orchestra.run.trial010.stdout:ceph-fuse-20.3.0-5314.g941b42ca.el9.x86_64.rpm 8.0 MB/s | 988 kB 00:00 2026-02-19T11:21:53.276 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:53.276 INFO:teuthology.orchestra.run.trial010.stdout:Total 8.0 MB/s | 988 kB 00:00 2026-02-19T11:21:53.276 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:53.281 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:53.281 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:53.316 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:53.316 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:53.407 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:53.424 INFO:teuthology.orchestra.run.trial010.stdout: Installing : ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:53.525 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 95/95 2026-02-19T11:21:53.525 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 1/95 2026-02-19T11:21:53.525 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 2/95 2026-02-19T11:21:53.525 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 3/95 2026-02-19T11:21:53.525 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 4/95 2026-02-19T11:21:53.525 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 5/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 6/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 7/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el 8/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 9/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 10/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 11/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 12/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9. 13/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 14/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9 15/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 16/95 2026-02-19T11:21:53.526 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 17/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 18/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 19/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 20/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 21/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 22/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 23/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 24/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-ply-3.11-14.el9.noarch 25/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 26/95 2026-02-19T11:21:53.527 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 27/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 28/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : unzip-6.0-59.el9.x86_64 29/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : zip-3.0-35.el9.x86_64 30/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 31/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 32/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 33/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 34/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : lua-5.4.4-4.el9.x86_64 35/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 36/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 37/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 38/95 2026-02-19T11:21:53.528 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 39/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 40/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 41/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 42/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 43/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 44/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 45/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 46/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 47/95 2026-02-19T11:21:53.529 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 48/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 49/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 50/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 51/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 52/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 53/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 54/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 55/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 56/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 57/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 58/95 2026-02-19T11:21:53.530 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 59/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 60/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 61/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 62/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 63/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 64/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 65/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 66/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 67/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 68/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 69/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 70/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 71/95 2026-02-19T11:21:53.531 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 72/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 73/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 74/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 75/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 76/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 77/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 78/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 79/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 80/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 81/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 82/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 83/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 84/95 2026-02-19T11:21:53.532 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 85/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 86/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 87/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 88/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 89/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 90/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 91/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 92/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 93/95 2026-02-19T11:21:53.533 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 94/95 2026-02-19T11:21:53.587 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 95/95 2026-02-19T11:21:53.587 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:53.587 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.588 INFO:teuthology.orchestra.run.trial132.stdout: ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-19T11:21:53.589 INFO:teuthology.orchestra.run.trial132.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: lua-5.4.4-4.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-19T11:21:53.590 INFO:teuthology.orchestra.run.trial132.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-19T11:21:53.591 INFO:teuthology.orchestra.run.trial132.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-02-19T11:21:53.592 INFO:teuthology.orchestra.run.trial132.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-ply-3.11-14.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-19T11:21:53.593 INFO:teuthology.orchestra.run.trial132.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-saml-1.16.0-1.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-19T11:21:53.594 INFO:teuthology.orchestra.run.trial132.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: unzip-6.0-59.el9.x86_64 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: zip-3.0-35.el9.x86_64 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:53.595 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:53.644 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:53.648 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-base 2026-02-19T11:21:53.701 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:53.701 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:53.701 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:53.702 INFO:teuthology.orchestra.run.trial010.stdout: ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:53.702 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:53.702 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:53.729 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install ceph-volume 2026-02-19T11:21:53.922 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 79/95 2026-02-19T11:21:53.961 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:35 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:53.986 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 80/95 2026-02-19T11:21:53.988 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 81/95 2026-02-19T11:21:54.002 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 81/95 2026-02-19T11:21:54.003 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:54.003 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-volume@*.service" escaped as "ceph-volume@\x2a.service". 2026-02-19T11:21:54.003 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:54.013 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 82/95 2026-02-19T11:21:54.025 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:54.035 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 82/95 2026-02-19T11:21:54.036 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:54.036 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-osd@*.service" escaped as "ceph-osd@\x2a.service". 2026-02-19T11:21:54.036 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-19T11:21:54.036 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-osd.target → /usr/lib/systemd/system/ceph-osd.target. 2026-02-19T11:21:54.036 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:54.037 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:40 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:54.044 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:54.044 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:54.044 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:54.065 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install cephadm 2026-02-19T11:21:54.098 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 83/95 2026-02-19T11:21:54.100 INFO:teuthology.orchestra.run.trial186.stdout: Installing : cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 83/95 2026-02-19T11:21:54.102 INFO:teuthology.orchestra.run.trial010.stdout:Package ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:54.109 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9 84/95 2026-02-19T11:21:54.121 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:54.121 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:54.121 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:54.133 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el 85/95 2026-02-19T11:21:54.134 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 86/95 2026-02-19T11:21:54.143 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install librados-devel 2026-02-19T11:21:54.370 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:36 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:54.435 INFO:teuthology.orchestra.run.trial132.stdout:Package cephadm-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:54.452 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:40 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:54.453 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:54.454 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:54.454 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:54.474 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-immutable-object-cache 2026-02-19T11:21:54.535 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:54.536 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:54.536 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repo Size 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout: librados-devel x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 123 k 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 123 k 2026-02-19T11:21:54.537 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 437 k 2026-02-19T11:21:54.538 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:54.622 INFO:teuthology.orchestra.run.trial010.stdout:librados-devel-20.3.0-5314.g941b42ca.el9.x86_64 1.4 MB/s | 123 kB 00:00 2026-02-19T11:21:54.622 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:54.623 INFO:teuthology.orchestra.run.trial010.stdout:Total 1.4 MB/s | 123 kB 00:00 2026-02-19T11:21:54.623 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:54.625 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:54.625 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:54.656 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:54.656 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:54.711 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:54.728 INFO:teuthology.orchestra.run.trial010.stdout: Installing : librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:54.782 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:36 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:54.807 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:54.865 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:54.866 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:54.866 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repo Size 2026-02-19T11:21:54.866 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:54.866 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout: ceph-immutable-object-cache x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 147 k 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 147 k 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 419 k 2026-02-19T11:21:54.867 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:21:54.868 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:54.868 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:54.868 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:54.868 INFO:teuthology.orchestra.run.trial010.stdout: librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:54.868 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:54.868 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:54.896 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install libcephfs2 2026-02-19T11:21:54.952 INFO:teuthology.orchestra.run.trial132.stdout:ceph-immutable-object-cache-20.3.0-5314.g941b42 1.7 MB/s | 147 kB 00:00 2026-02-19T11:21:54.953 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:54.953 INFO:teuthology.orchestra.run.trial132.stdout:Total 1.7 MB/s | 147 kB 00:00 2026-02-19T11:21:54.953 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:21:54.957 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:21:54.957 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:21:54.989 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:21:54.989 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:21:55.046 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:21:55.047 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:21:55.070 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:21:55.070 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:55.070 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-19T11:21:55.070 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:55.207 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:41 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:55.272 INFO:teuthology.orchestra.run.trial010.stdout:Package libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:55.290 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:55.291 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:55.291 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:55.313 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install libcephfs-devel 2026-02-19T11:21:55.383 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:21:55.383 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:55.383 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:21:55.383 INFO:teuthology.orchestra.run.trial132.stdout: ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:55.383 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:55.383 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:55.409 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-mgr 2026-02-19T11:21:55.624 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:41 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:55.706 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:55.707 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:55.707 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repo Size 2026-02-19T11:21:55.707 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:55.707 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:55.707 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs-devel x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 37 k 2026-02-19T11:21:55.707 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 37 k 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 171 k 2026-02-19T11:21:55.708 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:55.718 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:37 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:55.770 INFO:teuthology.orchestra.run.trial010.stdout:libcephfs-devel-20.3.0-5314.g941b42ca.el9.x86_6 590 kB/s | 37 kB 00:00 2026-02-19T11:21:55.770 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:55.770 INFO:teuthology.orchestra.run.trial010.stdout:Total 583 kB/s | 37 kB 00:00 2026-02-19T11:21:55.770 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:55.773 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:55.773 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:55.775 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:55.775 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:55.783 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:55.796 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:55.801 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:55.802 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:55.802 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:55.812 INFO:teuthology.orchestra.run.trial010.stdout: Installing : libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:55.824 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-mgr-dashboard 2026-02-19T11:21:55.869 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:55.926 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:55.926 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:55.926 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:55.926 INFO:teuthology.orchestra.run.trial010.stdout: libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:55.926 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:55.926 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:55.953 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install librados2 2026-02-19T11:21:56.132 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:38 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:56.197 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:56.215 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:56.216 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:56.216 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:56.237 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-19T11:21:56.263 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:42 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:56.328 INFO:teuthology.orchestra.run.trial010.stdout:Package librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:56.347 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:56.347 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:56.348 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:56.369 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install librbd1 2026-02-19T11:21:56.548 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:38 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:56.612 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:56.631 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:56.631 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:56.631 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:56.653 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-mgr-rook 2026-02-19T11:21:56.677 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:42 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:56.742 INFO:teuthology.orchestra.run.trial010.stdout:Package librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:56.760 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:56.761 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:56.761 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:56.782 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install python3-rados 2026-02-19T11:21:56.957 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:38 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:57.017 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 86/95 2026-02-19T11:21:57.021 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:57.024 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 87/95 2026-02-19T11:21:57.040 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:57.040 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:57.041 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:57.062 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-mgr-cephadm 2026-02-19T11:21:57.088 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:57.152 INFO:teuthology.orchestra.run.trial010.stdout:Package python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:57.171 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:57.172 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:57.172 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:57.193 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install python3-rgw 2026-02-19T11:21:57.374 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:39 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:57.438 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:57.456 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:57.457 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:57.457 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:57.478 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-osd 2026-02-19T11:21:57.479 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 87/95 2026-02-19T11:21:57.480 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 88/95 2026-02-19T11:21:57.493 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 88/95 2026-02-19T11:21:57.494 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 89/95 2026-02-19T11:21:57.503 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:57.556 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 89/95 2026-02-19T11:21:57.567 INFO:teuthology.orchestra.run.trial010.stdout:Package python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:57.586 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:57.587 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:57.587 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:57.597 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9. 90/95 2026-02-19T11:21:57.599 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 91/95 2026-02-19T11:21:57.608 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install python3-cephfs 2026-02-19T11:21:57.620 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 91/95 2026-02-19T11:21:57.620 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:57.620 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-mgr@*.service" escaped as "ceph-mgr@\x2a.service". 2026-02-19T11:21:57.620 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-19T11:21:57.621 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mgr.target → /usr/lib/systemd/system/ceph-mgr.target. 2026-02-19T11:21:57.621 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:57.632 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 92/95 2026-02-19T11:21:57.786 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:39 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:57.851 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:57.858 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 92/95 2026-02-19T11:21:57.859 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 93/95 2026-02-19T11:21:57.869 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:57.870 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:57.870 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:57.880 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 93/95 2026-02-19T11:21:57.881 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:57.881 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-mon@*.service" escaped as "ceph-mon@\x2a.service". 2026-02-19T11:21:57.881 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-19T11:21:57.881 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mon.target → /usr/lib/systemd/system/ceph-mon.target. 2026-02-19T11:21:57.881 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:57.892 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-osd-classic 2026-02-19T11:21:57.920 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:57.975 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 94/95 2026-02-19T11:21:57.985 INFO:teuthology.orchestra.run.trial010.stdout:Package python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:57.996 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 94/95 2026-02-19T11:21:57.996 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:57.996 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-mds@*.service" escaped as "ceph-mds@\x2a.service". 2026-02-19T11:21:57.996 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-19T11:21:57.996 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-mds.target → /usr/lib/systemd/system/ceph-mds.target. 2026-02-19T11:21:57.996 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:57.997 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 95/95 2026-02-19T11:21:58.004 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:58.004 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 95/95 2026-02-19T11:21:58.005 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:58.005 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:58.025 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install python3-rbd 2026-02-19T11:21:58.030 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 95/95 2026-02-19T11:21:58.202 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:40 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:58.265 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:58.284 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:58.284 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:58.284 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:58.306 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-fuse 2026-02-19T11:21:58.340 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:44 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:58.404 INFO:teuthology.orchestra.run.trial010.stdout:Package python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:58.423 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:58.423 INFO:teuthology.orchestra.run.trial010.stdout:Nothing to do. 2026-02-19T11:21:58.424 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:58.445 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install rbd-fuse 2026-02-19T11:21:58.616 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:40 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:58.699 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:58.699 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:58.699 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repo Size 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout: ceph-fuse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 988 k 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 988 k 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 2.9 M 2026-02-19T11:21:58.700 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:21:58.752 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:44 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:58.820 INFO:teuthology.orchestra.run.trial132.stdout:ceph-fuse-20.3.0-5314.g941b42ca.el9.x86_64.rpm 8.1 MB/s | 988 kB 00:00 2026-02-19T11:21:58.820 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:58.820 INFO:teuthology.orchestra.run.trial132.stdout:Total 8.0 MB/s | 988 kB 00:00 2026-02-19T11:21:58.820 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:21:58.825 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:21:58.825 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:21:58.835 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:58.836 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:58.836 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-19T11:21:58.836 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:58.836 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:58.836 INFO:teuthology.orchestra.run.trial010.stdout: rbd-fuse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 84 k 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 84 k 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 209 k 2026-02-19T11:21:58.837 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:58.858 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:21:58.859 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:21:58.871 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 95/95 2026-02-19T11:21:58.871 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 1/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 2/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 3/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 4/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 5/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_6 6/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_6 7/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el 8/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarc 9/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noa 10/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b4 11/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noa 12/95 2026-02-19T11:21:58.872 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9. 13/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 14/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9 15/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 16/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 17/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : cryptsetup-2.8.1-3.el9.x86_64 18/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ledmon-libs-1.1.0-3.el9.x86_64 19/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libconfig-1.7.2-9.el9.x86_64 20/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libgfortran-11.5.0-14.el9.x86_64 21/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libquadmath-11.5.0-14.el9.x86_64 22/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-cffi-1.14.5-5.el9.x86_64 23/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-cryptography-36.0.1-5.el9.x86_64 24/95 2026-02-19T11:21:58.873 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-ply-3.11-14.el9.noarch 25/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-pycparser-2.20-6.el9.noarch 26/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-requests-2.25.1-10.el9.noarch 27/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-urllib3-1.26.5-7.el9.noarch 28/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : unzip-6.0-59.el9.x86_64 29/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : zip-3.0-35.el9.x86_64 30/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : flexiblas-3.0.4-9.el9.x86_64 31/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : flexiblas-netlib-3.0.4-9.el9.x86_64 32/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 33/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libstoragemgmt-1.10.1-1.el9.x86_64 34/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : lua-5.4.4-4.el9.x86_64 35/95 2026-02-19T11:21:58.874 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : openblas-0.3.29-1.el9.x86_64 36/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : openblas-openmp-0.3.29-1.el9.x86_64 37/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-babel-2.9.1-2.el9.noarch 38/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-devel-3.9.25-3.el9.x86_64 39/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jinja2-2.11.3-8.el9.noarch 40/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jmespath-1.0.1-1.el9.noarch 41/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-libstoragemgmt-1.10.1-1.el9.x86_64 42/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-lxml-4.6.5-3.el9.x86_64 43/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-markupsafe-1.1.1-12.el9.x86_64 44/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-numpy-1:1.23.5-2.el9.x86_64 45/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-numpy-f2py-1:1.23.5-2.el9.x86_64 46/95 2026-02-19T11:21:58.875 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-packaging-20.9-5.el9.noarch 47/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-protobuf-3.14.0-17.el9.noarch 48/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-pyasn1-0.4.8-6.el9.noarch 49/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-pyasn1-modules-0.4.8-6.el9.noarch 50/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-requests-oauthlib-1.3.0-12.el9.noarch 51/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-scipy-1.9.3-2.el9.x86_64 52/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-toml-0.10.2-6.el9.noarch 53/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : xmlsec1-1.2.29-13.el9.x86_64 54/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : xmlsec1-openssl-1.2.29-13.el9.x86_64 55/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : lua-devel-5.4.4-4.el9.x86_64 56/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : protobuf-compiler-3.14.0-17.el9.x86_64 57/95 2026-02-19T11:21:58.876 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : abseil-cpp-20211102.0-4.el9.x86_64 58/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : grpc-data-1.46.7-10.el9.noarch 59/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : luarocks-3.9.2-5.el9.noarch 60/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-asyncssh-2.13.2-5.el9.noarch 61/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-autocommand-2.2.2-8.el9.noarch 62/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-backports-tarfile-1.2.0-1.el9.noarch 63/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-bcrypt-3.2.2-1.el9.x86_64 64/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-cachetools-4.2.4-1.el9.noarch 65/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-certifi-2023.05.07-4.el9.noarch 66/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-cheroot-10.0.1-4.el9.noarch 67/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-cherrypy-18.6.1-2.el9.noarch 68/95 2026-02-19T11:21:58.877 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-google-auth-1:2.45.0-1.el9.noarch 69/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-grpcio-1.46.7-10.el9.x86_64 70/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-grpcio-tools-1.46.7-10.el9.x86_64 71/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-influxdb-5.3.1-1.el9.noarch 72/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-isodate-0.6.1-3.el9.noarch 73/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jaraco-8.2.1-3.el9.noarch 74/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jaraco-classes-3.2.1-5.el9.noarch 75/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jaraco-collections-3.0.0-8.el9.noarch 76/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jaraco-context-6.0.1-3.el9.noarch 77/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jaraco-functools-3.5.0-2.el9.noarch 78/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-jaraco-text-4.0.0-2.el9.noarch 79/95 2026-02-19T11:21:58.878 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-kubernetes-1:26.1.0-3.el9.noarch 80/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-more-itertools-8.12.0-2.el9.noarch 81/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-msgpack-1.0.3-2.el9.x86_64 82/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-natsort-7.1.1-5.el9.noarch 83/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-portend-3.1.0-2.el9.noarch 84/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-pyOpenSSL-21.0.0-1.el9.noarch 85/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-repoze-lru-0.7-16.el9.noarch 86/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-routes-2.5.1-5.el9.noarch 87/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-rsa-4.9-2.el9.noarch 88/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-saml-1.16.0-1.el9.noarch 89/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-tempora-5.0.0-2.el9.noarch 90/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-typing-extensions-4.15.0-1.el9.noarch 91/95 2026-02-19T11:21:58.879 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-websocket-client-1.2.3-2.el9.noarch 92/95 2026-02-19T11:21:58.880 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-xmlsec-1.3.13-1.el9.x86_64 93/95 2026-02-19T11:21:58.880 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-xmltodict-0.12.0-15.el9.noarch 94/95 2026-02-19T11:21:58.910 INFO:teuthology.orchestra.run.trial010.stdout:rbd-fuse-20.3.0-5314.g941b42ca.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2026-02-19T11:21:58.911 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:58.911 INFO:teuthology.orchestra.run.trial010.stdout:Total 1.1 MB/s | 84 kB 00:00 2026-02-19T11:21:58.911 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:58.915 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:58.915 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:58.933 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : python3-zc-lockfile-2.0-10.el9.noarch 95/95 2026-02-19T11:21:58.933 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:58.933 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: abseil-cpp-20211102.0-4.el9.x86_64 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-grafana-dashboards-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mds-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-k8sevents-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-modules-core-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.934 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: ceph-mon-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: ceph-osd-crimson-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: ceph-prometheus-alerts-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: cephadm-2:20.3.0-5314.g941b42ca.el9.noarch 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: cryptsetup-2.8.1-3.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: flexiblas-3.0.4-9.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: flexiblas-netlib-3.0.4-9.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: flexiblas-openblas-openmp-3.0.4-9.el9.x86_64 2026-02-19T11:21:58.935 INFO:teuthology.orchestra.run.trial186.stdout: grpc-data-1.46.7-10.el9.noarch 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: ledmon-libs-1.1.0-3.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: libconfig-1.7.2-9.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: libgfortran-11.5.0-14.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: libquadmath-11.5.0-14.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: lua-5.4.4-4.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: lua-devel-5.4.4-4.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: luarocks-3.9.2-5.el9.noarch 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: openblas-0.3.29-1.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: openblas-openmp-0.3.29-1.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: protobuf-compiler-3.14.0-17.el9.x86_64 2026-02-19T11:21:58.936 INFO:teuthology.orchestra.run.trial186.stdout: python3-asyncssh-2.13.2-5.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-autocommand-2.2.2-8.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-babel-2.9.1-2.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-backports-tarfile-1.2.0-1.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-bcrypt-3.2.2-1.el9.x86_64 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-cachetools-4.2.4-1.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-certifi-2023.05.07-4.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-cffi-1.14.5-5.el9.x86_64 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-cheroot-10.0.1-4.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-cherrypy-18.6.1-2.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-cryptography-36.0.1-5.el9.x86_64 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-devel-3.9.25-3.el9.x86_64 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-google-auth-1:2.45.0-1.el9.noarch 2026-02-19T11:21:58.937 INFO:teuthology.orchestra.run.trial186.stdout: python3-grpcio-1.46.7-10.el9.x86_64 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-grpcio-tools-1.46.7-10.el9.x86_64 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-influxdb-5.3.1-1.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-isodate-0.6.1-3.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-8.2.1-3.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-classes-3.2.1-5.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-collections-3.0.0-8.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-context-6.0.1-3.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-functools-3.5.0-2.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jaraco-text-4.0.0-2.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jinja2-2.11.3-8.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-jmespath-1.0.1-1.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-kubernetes-1:26.1.0-3.el9.noarch 2026-02-19T11:21:58.938 INFO:teuthology.orchestra.run.trial186.stdout: python3-libstoragemgmt-1.10.1-1.el9.x86_64 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-lxml-4.6.5-3.el9.x86_64 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-markupsafe-1.1.1-12.el9.x86_64 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-more-itertools-8.12.0-2.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-msgpack-1.0.3-2.el9.x86_64 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-natsort-7.1.1-5.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-numpy-1:1.23.5-2.el9.x86_64 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-numpy-f2py-1:1.23.5-2.el9.x86_64 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-packaging-20.9-5.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-ply-3.11-14.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-portend-3.1.0-2.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-protobuf-3.14.0-17.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyOpenSSL-21.0.0-1.el9.noarch 2026-02-19T11:21:58.939 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyasn1-0.4.8-6.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-pyasn1-modules-0.4.8-6.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-pycparser-2.20-6.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-repoze-lru-0.7-16.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-requests-2.25.1-10.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-requests-oauthlib-1.3.0-12.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-routes-2.5.1-5.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-rsa-4.9-2.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-saml-1.16.0-1.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-scipy-1.9.3-2.el9.x86_64 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-tempora-5.0.0-2.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-toml-0.10.2-6.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-typing-extensions-4.15.0-1.el9.noarch 2026-02-19T11:21:58.940 INFO:teuthology.orchestra.run.trial186.stdout: python3-urllib3-1.26.5-7.el9.noarch 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: python3-websocket-client-1.2.3-2.el9.noarch 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: python3-xmlsec-1.3.13-1.el9.x86_64 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: python3-xmltodict-0.12.0-15.el9.noarch 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: python3-zc-lockfile-2.0-10.el9.noarch 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: unzip-6.0-59.el9.x86_64 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: xmlsec1-1.2.29-13.el9.x86_64 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: xmlsec1-openssl-1.2.29-13.el9.x86_64 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: zip-3.0-35.el9.x86_64 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:21:58.941 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:21:58.946 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:58.946 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:58.953 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:21:58.971 INFO:teuthology.orchestra.run.trial132.stdout: Installing : ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:58.997 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-base 2026-02-19T11:21:58.999 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:59.014 INFO:teuthology.orchestra.run.trial010.stdout: Installing : rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.096 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.154 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.155 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:59.155 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:21:59.155 INFO:teuthology.orchestra.run.trial010.stdout: rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:59.155 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:59.155 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:21:59.183 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install rbd-mirror 2026-02-19T11:21:59.211 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.268 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.269 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:59.269 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:21:59.269 INFO:teuthology.orchestra.run.trial132.stdout: ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:21:59.269 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:21:59.269 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:59.299 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install ceph-volume 2026-02-19T11:21:59.318 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:39 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:21:59.383 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-base-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:21:59.401 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:21:59.402 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:21:59.402 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:21:59.423 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install cephadm 2026-02-19T11:21:59.493 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:45 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout: Package Arch Version Repo Size 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout: rbd-mirror x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.9 M 2026-02-19T11:21:59.577 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 2.9 M 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 11 M 2026-02-19T11:21:59.578 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:21:59.607 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:41 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:21:59.673 INFO:teuthology.orchestra.run.trial132.stdout:Package ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:59.692 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:21:59.692 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:21:59.693 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:21:59.714 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install librados-devel 2026-02-19T11:21:59.723 INFO:teuthology.orchestra.run.trial010.stdout:rbd-mirror-20.3.0-5314.g941b42ca.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-19T11:21:59.724 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:21:59.724 INFO:teuthology.orchestra.run.trial010.stdout:Total 19 MB/s | 2.9 MB 00:00 2026-02-19T11:21:59.724 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:21:59.729 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:21:59.729 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:21:59.738 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:39 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:21:59.768 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:21:59.769 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:21:59.802 INFO:teuthology.orchestra.run.trial186.stdout:Package cephadm-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:21:59.821 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:21:59.821 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:21:59.822 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:21:59.843 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-immutable-object-cache 2026-02-19T11:21:59.945 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:21:59.947 INFO:teuthology.orchestra.run.trial010.stdout: Installing : rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.970 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:21:59.971 INFO:teuthology.orchestra.run.trial010.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:21:59.971 INFO:teuthology.orchestra.run.trial010.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-19T11:21:59.971 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-19T11:21:59.971 INFO:teuthology.orchestra.run.trial010.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-19T11:21:59.971 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:00.020 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:42 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:00.103 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:00.103 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:00.103 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repo Size 2026-02-19T11:22:00.103 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:00.103 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:22:00.103 INFO:teuthology.orchestra.run.trial132.stdout: librados-devel x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 123 k 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 123 k 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 437 k 2026-02-19T11:22:00.104 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:22:00.154 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:40 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:00.189 INFO:teuthology.orchestra.run.trial132.stdout:librados-devel-20.3.0-5314.g941b42ca.el9.x86_64 1.4 MB/s | 123 kB 00:00 2026-02-19T11:22:00.190 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:00.190 INFO:teuthology.orchestra.run.trial132.stdout:Total 1.4 MB/s | 123 kB 00:00 2026-02-19T11:22:00.190 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:22:00.192 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:22:00.192 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:22:00.223 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:22:00.224 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:22:00.237 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:00.237 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repo Size 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout: ceph-immutable-object-cache x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 147 k 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:00.238 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:00.239 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 147 k 2026-02-19T11:22:00.239 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 419 k 2026-02-19T11:22:00.239 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:00.278 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:22:00.279 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:00.279 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:00.279 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:22:00.279 INFO:teuthology.orchestra.run.trial010.stdout: rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:00.279 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:00.280 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:22:00.295 INFO:teuthology.orchestra.run.trial132.stdout: Installing : librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:00.308 DEBUG:teuthology.orchestra.run.trial010:> sudo yum -y install rbd-nbd 2026-02-19T11:22:00.324 INFO:teuthology.orchestra.run.trial186.stdout:ceph-immutable-object-cache-20.3.0-5314.g941b42 1.7 MB/s | 147 kB 00:00 2026-02-19T11:22:00.325 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:00.325 INFO:teuthology.orchestra.run.trial186.stdout:Total 1.7 MB/s | 147 kB 00:00 2026-02-19T11:22:00.325 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:00.329 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:00.329 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:00.360 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:00.360 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:00.371 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:00.416 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:00.417 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:22:00.430 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:00.430 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:00.430 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:22:00.430 INFO:teuthology.orchestra.run.trial132.stdout: librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:00.430 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:00.431 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:00.440 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:22:00.440 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:22:00.440 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-immutable-object-cache@*.service" escaped as "ceph-immutable-object-cache@\x2a.service". 2026-02-19T11:22:00.440 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:00.458 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install libcephfs2 2026-02-19T11:22:00.621 INFO:teuthology.orchestra.run.trial010.stdout:Last metadata expiration check: 0:00:46 ago on Thu 19 Feb 2026 11:21:14 AM UTC. 2026-02-19T11:22:00.704 INFO:teuthology.orchestra.run.trial010.stdout:Dependencies resolved. 2026-02-19T11:22:00.705 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:22:00.705 INFO:teuthology.orchestra.run.trial010.stdout: Package Architecture Version Repository Size 2026-02-19T11:22:00.705 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:22:00.705 INFO:teuthology.orchestra.run.trial010.stdout:Installing: 2026-02-19T11:22:00.705 INFO:teuthology.orchestra.run.trial010.stdout: rbd-nbd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 173 k 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout:Transaction Summary 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout:================================================================================ 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout:Install 1 Package 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout:Total download size: 173 k 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout:Installed size: 462 k 2026-02-19T11:22:00.706 INFO:teuthology.orchestra.run.trial010.stdout:Downloading Packages: 2026-02-19T11:22:00.749 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca. 1/1 2026-02-19T11:22:00.749 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:00.749 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:00.750 INFO:teuthology.orchestra.run.trial186.stdout: ceph-immutable-object-cache-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:00.750 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:00.750 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:00.768 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:42 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:00.776 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-mgr 2026-02-19T11:22:00.790 INFO:teuthology.orchestra.run.trial010.stdout:rbd-nbd-20.3.0-5314.g941b42ca.el9.x86_64.rpm 2.0 MB/s | 173 kB 00:00 2026-02-19T11:22:00.791 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:00.791 INFO:teuthology.orchestra.run.trial010.stdout:Total 2.0 MB/s | 173 kB 00:00 2026-02-19T11:22:00.791 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction check 2026-02-19T11:22:00.795 INFO:teuthology.orchestra.run.trial010.stdout:Transaction check succeeded. 2026-02-19T11:22:00.795 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction test 2026-02-19T11:22:00.826 INFO:teuthology.orchestra.run.trial010.stdout:Transaction test succeeded. 2026-02-19T11:22:00.827 INFO:teuthology.orchestra.run.trial010.stdout:Running transaction 2026-02-19T11:22:00.833 INFO:teuthology.orchestra.run.trial132.stdout:Package libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:00.851 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:00.852 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:00.852 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:00.874 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install libcephfs-devel 2026-02-19T11:22:00.883 INFO:teuthology.orchestra.run.trial010.stdout: Preparing : 1/1 2026-02-19T11:22:00.900 INFO:teuthology.orchestra.run.trial010.stdout: Installing : rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:00.978 INFO:teuthology.orchestra.run.trial010.stdout: Running scriptlet: rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:01.035 INFO:teuthology.orchestra.run.trial010.stdout: Verifying : rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:01.035 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:01.035 INFO:teuthology.orchestra.run.trial010.stdout:Installed: 2026-02-19T11:22:01.035 INFO:teuthology.orchestra.run.trial010.stdout: rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:01.036 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:01.036 INFO:teuthology.orchestra.run.trial010.stdout:Complete! 2026-02-19T11:22:01.065 DEBUG:teuthology.parallel:result is None 2026-02-19T11:22:01.086 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:41 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:01.151 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-mgr-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:01.170 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:01.170 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:01.171 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:01.185 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:01.192 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-mgr-dashboard 2026-02-19T11:22:01.268 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:01.268 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:01.268 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repo Size 2026-02-19T11:22:01.268 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:01.268 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:22:01.268 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs-devel x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 37 k 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 37 k 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 171 k 2026-02-19T11:22:01.269 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:22:01.333 INFO:teuthology.orchestra.run.trial132.stdout:libcephfs-devel-20.3.0-5314.g941b42ca.el9.x86_6 584 kB/s | 37 kB 00:00 2026-02-19T11:22:01.333 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:01.333 INFO:teuthology.orchestra.run.trial132.stdout:Total 577 kB/s | 37 kB 00:00 2026-02-19T11:22:01.333 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:22:01.335 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:22:01.335 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:22:01.337 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:22:01.337 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:22:01.358 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:22:01.374 INFO:teuthology.orchestra.run.trial132.stdout: Installing : libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:01.433 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:01.490 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:01.490 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:01.490 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:22:01.490 INFO:teuthology.orchestra.run.trial132.stdout: libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:01.491 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:01.491 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:01.507 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:41 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:01.517 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install librados2 2026-02-19T11:22:01.572 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-mgr-dashboard-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:22:01.591 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:01.591 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:01.591 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:01.612 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-mgr-diskprediction-local 2026-02-19T11:22:01.830 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:01.896 INFO:teuthology.orchestra.run.trial132.stdout:Package librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:01.914 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:01.915 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:01.915 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:01.919 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:41 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:01.938 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install librbd1 2026-02-19T11:22:01.984 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-mgr-diskprediction-local-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:22:02.002 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:02.003 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:02.003 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:02.023 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-mgr-rook 2026-02-19T11:22:02.243 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:44 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:02.307 INFO:teuthology.orchestra.run.trial132.stdout:Package librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:02.326 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:02.326 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:02.327 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:02.330 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:42 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:02.348 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install python3-rados 2026-02-19T11:22:02.397 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-mgr-rook-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:22:02.415 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:02.416 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:02.416 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:02.437 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-mgr-cephadm 2026-02-19T11:22:02.657 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:44 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:02.722 INFO:teuthology.orchestra.run.trial132.stdout:Package python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:02.740 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:02.741 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:02.741 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:02.749 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:42 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:02.763 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install python3-rgw 2026-02-19T11:22:02.812 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-mgr-cephadm-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:22:02.831 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:02.831 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:02.832 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:02.852 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-osd 2026-02-19T11:22:03.069 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:45 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:03.134 INFO:teuthology.orchestra.run.trial132.stdout:Package python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:03.153 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:03.153 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:03.153 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:03.165 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:03.174 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install python3-cephfs 2026-02-19T11:22:03.231 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-osd-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:03.250 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:03.250 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:03.250 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:03.271 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-osd-classic 2026-02-19T11:22:03.487 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:45 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:03.551 INFO:teuthology.orchestra.run.trial132.stdout:Package python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:03.569 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:03.569 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:03.570 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:03.587 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:03.590 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install python3-rbd 2026-02-19T11:22:03.652 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-osd-classic-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:03.671 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:03.671 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:03.671 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:03.692 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-fuse 2026-02-19T11:22:03.896 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:45 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:03.960 INFO:teuthology.orchestra.run.trial132.stdout:Package python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:03.979 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:03.979 INFO:teuthology.orchestra.run.trial132.stdout:Nothing to do. 2026-02-19T11:22:03.979 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:04.000 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install rbd-fuse 2026-02-19T11:22:04.002 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:43 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repo Size 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout: ceph-fuse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 988 k 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 988 k 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 2.9 M 2026-02-19T11:22:04.086 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:04.207 INFO:teuthology.orchestra.run.trial186.stdout:ceph-fuse-20.3.0-5314.g941b42ca.el9.x86_64.rpm 8.0 MB/s | 988 kB 00:00 2026-02-19T11:22:04.207 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:04.208 INFO:teuthology.orchestra.run.trial186.stdout:Total 8.0 MB/s | 988 kB 00:00 2026-02-19T11:22:04.208 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:04.212 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:04.212 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:04.246 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:04.246 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:04.307 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:46 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:04.340 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:04.357 INFO:teuthology.orchestra.run.trial186.stdout: Installing : ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:04.391 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:04.391 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:04.391 INFO:teuthology.orchestra.run.trial132.stdout: Package Architecture Version Repository Size 2026-02-19T11:22:04.391 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:04.391 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:22:04.391 INFO:teuthology.orchestra.run.trial132.stdout: rbd-fuse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 84 k 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 84 k 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 209 k 2026-02-19T11:22:04.392 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:22:04.467 INFO:teuthology.orchestra.run.trial132.stdout:rbd-fuse-20.3.0-5314.g941b42ca.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2026-02-19T11:22:04.468 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:04.468 INFO:teuthology.orchestra.run.trial132.stdout:Total 1.1 MB/s | 84 kB 00:00 2026-02-19T11:22:04.468 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:22:04.472 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:22:04.472 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:22:04.504 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:22:04.504 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:22:04.557 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:22:04.574 INFO:teuthology.orchestra.run.trial132.stdout: Installing : rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:04.603 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:04.651 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:04.661 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:04.661 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:04.661 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:04.661 INFO:teuthology.orchestra.run.trial186.stdout: ceph-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:04.661 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:04.661 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:04.688 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install ceph-volume 2026-02-19T11:22:04.710 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:04.710 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:04.710 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:22:04.710 INFO:teuthology.orchestra.run.trial132.stdout: rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:04.710 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:04.710 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:04.739 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install rbd-mirror 2026-02-19T11:22:04.995 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:44 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:05.053 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:47 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:05.060 INFO:teuthology.orchestra.run.trial186.stdout:Package ceph-volume-2:20.3.0-5314.g941b42ca.el9.noarch is already installed. 2026-02-19T11:22:05.079 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:05.079 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:05.079 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:05.100 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install librados-devel 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout: Package Arch Version Repo Size 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout: rbd-mirror x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.9 M 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 2.9 M 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 11 M 2026-02-19T11:22:05.136 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:22:05.285 INFO:teuthology.orchestra.run.trial132.stdout:rbd-mirror-20.3.0-5314.g941b42ca.el9.x86_64.rpm 19 MB/s | 2.9 MB 00:00 2026-02-19T11:22:05.285 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:05.285 INFO:teuthology.orchestra.run.trial132.stdout:Total 19 MB/s | 2.9 MB 00:00 2026-02-19T11:22:05.285 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:22:05.290 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:22:05.290 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:22:05.329 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:22:05.329 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:22:05.415 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:45 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:05.497 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repo Size 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout: librados-devel x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 123 k 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:05.498 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:05.499 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:05.499 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 123 k 2026-02-19T11:22:05.499 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 437 k 2026-02-19T11:22:05.499 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:05.505 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:22:05.507 INFO:teuthology.orchestra.run.trial132.stdout: Installing : rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:05.530 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:05.530 INFO:teuthology.orchestra.run.trial132.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:22:05.530 INFO:teuthology.orchestra.run.trial132.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-19T11:22:05.530 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-19T11:22:05.530 INFO:teuthology.orchestra.run.trial132.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-19T11:22:05.531 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:05.585 INFO:teuthology.orchestra.run.trial186.stdout:librados-devel-20.3.0-5314.g941b42ca.el9.x86_64 1.4 MB/s | 123 kB 00:00 2026-02-19T11:22:05.585 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:05.586 INFO:teuthology.orchestra.run.trial186.stdout:Total 1.4 MB/s | 123 kB 00:00 2026-02-19T11:22:05.586 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:05.588 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:05.589 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:05.620 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:05.620 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:05.675 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:05.691 INFO:teuthology.orchestra.run.trial186.stdout: Installing : librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:05.769 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:05.815 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:05.815 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:05.816 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:22:05.816 INFO:teuthology.orchestra.run.trial132.stdout: rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:05.816 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:05.816 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:05.829 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:05.829 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:05.829 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:05.829 INFO:teuthology.orchestra.run.trial186.stdout: librados-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:05.829 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:05.829 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:05.844 DEBUG:teuthology.orchestra.run.trial132:> sudo yum -y install rbd-nbd 2026-02-19T11:22:05.856 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install libcephfs2 2026-02-19T11:22:06.151 INFO:teuthology.orchestra.run.trial132.stdout:Last metadata expiration check: 0:00:48 ago on Thu 19 Feb 2026 11:21:18 AM UTC. 2026-02-19T11:22:06.167 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:46 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:06.232 INFO:teuthology.orchestra.run.trial186.stdout:Package libcephfs2-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:06.234 INFO:teuthology.orchestra.run.trial132.stdout:Dependencies resolved. 2026-02-19T11:22:06.235 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:06.235 INFO:teuthology.orchestra.run.trial132.stdout: Package Architecture Version Repository Size 2026-02-19T11:22:06.235 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:06.235 INFO:teuthology.orchestra.run.trial132.stdout:Installing: 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout: rbd-nbd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 173 k 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout:Transaction Summary 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout:================================================================================ 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout:Install 1 Package 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout:Total download size: 173 k 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout:Installed size: 462 k 2026-02-19T11:22:06.236 INFO:teuthology.orchestra.run.trial132.stdout:Downloading Packages: 2026-02-19T11:22:06.250 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:06.251 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:06.251 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:06.273 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install libcephfs-devel 2026-02-19T11:22:06.323 INFO:teuthology.orchestra.run.trial132.stdout:rbd-nbd-20.3.0-5314.g941b42ca.el9.x86_64.rpm 1.9 MB/s | 173 kB 00:00 2026-02-19T11:22:06.323 INFO:teuthology.orchestra.run.trial132.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:06.323 INFO:teuthology.orchestra.run.trial132.stdout:Total 1.9 MB/s | 173 kB 00:00 2026-02-19T11:22:06.324 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction check 2026-02-19T11:22:06.328 INFO:teuthology.orchestra.run.trial132.stdout:Transaction check succeeded. 2026-02-19T11:22:06.328 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction test 2026-02-19T11:22:06.359 INFO:teuthology.orchestra.run.trial132.stdout:Transaction test succeeded. 2026-02-19T11:22:06.360 INFO:teuthology.orchestra.run.trial132.stdout:Running transaction 2026-02-19T11:22:06.418 INFO:teuthology.orchestra.run.trial132.stdout: Preparing : 1/1 2026-02-19T11:22:06.434 INFO:teuthology.orchestra.run.trial132.stdout: Installing : rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:06.513 INFO:teuthology.orchestra.run.trial132.stdout: Running scriptlet: rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:06.571 INFO:teuthology.orchestra.run.trial132.stdout: Verifying : rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:06.571 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:06.572 INFO:teuthology.orchestra.run.trial132.stdout:Installed: 2026-02-19T11:22:06.572 INFO:teuthology.orchestra.run.trial132.stdout: rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:06.572 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:22:06.572 INFO:teuthology.orchestra.run.trial132.stdout:Complete! 2026-02-19T11:22:06.584 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:46 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:06.600 DEBUG:teuthology.parallel:result is None 2026-02-19T11:22:06.667 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repo Size 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs-devel x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 37 k 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:06.668 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:06.669 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:06.669 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 37 k 2026-02-19T11:22:06.669 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 171 k 2026-02-19T11:22:06.669 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:06.731 INFO:teuthology.orchestra.run.trial186.stdout:libcephfs-devel-20.3.0-5314.g941b42ca.el9.x86_6 591 kB/s | 37 kB 00:00 2026-02-19T11:22:06.731 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:06.732 INFO:teuthology.orchestra.run.trial186.stdout:Total 580 kB/s | 37 kB 00:00 2026-02-19T11:22:06.732 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:06.734 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:06.734 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:06.736 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:06.736 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:06.758 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:06.775 INFO:teuthology.orchestra.run.trial186.stdout: Installing : libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:06.835 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:06.893 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:06.893 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:06.893 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:06.893 INFO:teuthology.orchestra.run.trial186.stdout: libcephfs-devel-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:06.894 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:06.894 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:06.920 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install librados2 2026-02-19T11:22:07.227 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:47 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:07.292 INFO:teuthology.orchestra.run.trial186.stdout:Package librados2-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:07.310 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:07.311 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:07.311 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:07.332 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install librbd1 2026-02-19T11:22:07.644 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:47 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:07.709 INFO:teuthology.orchestra.run.trial186.stdout:Package librbd1-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:07.728 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:07.728 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:07.728 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:07.750 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install python3-rados 2026-02-19T11:22:08.056 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:48 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:08.122 INFO:teuthology.orchestra.run.trial186.stdout:Package python3-rados-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:08.140 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:08.141 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:08.141 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:08.162 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install python3-rgw 2026-02-19T11:22:08.477 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:48 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:08.541 INFO:teuthology.orchestra.run.trial186.stdout:Package python3-rgw-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:08.560 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:08.561 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:08.561 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:08.582 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install python3-cephfs 2026-02-19T11:22:08.899 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:48 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:08.963 INFO:teuthology.orchestra.run.trial186.stdout:Package python3-cephfs-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:08.981 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:08.982 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:08.982 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:09.003 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install python3-rbd 2026-02-19T11:22:09.315 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:49 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:09.379 INFO:teuthology.orchestra.run.trial186.stdout:Package python3-rbd-2:20.3.0-5314.g941b42ca.el9.x86_64 is already installed. 2026-02-19T11:22:09.397 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:09.398 INFO:teuthology.orchestra.run.trial186.stdout:Nothing to do. 2026-02-19T11:22:09.398 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:09.419 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install rbd-fuse 2026-02-19T11:22:09.737 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:49 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:09.821 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:09.821 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout: Package Architecture Version Repository Size 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout: rbd-fuse x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 84 k 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:09.822 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:09.823 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:09.823 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 84 k 2026-02-19T11:22:09.823 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 209 k 2026-02-19T11:22:09.823 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:09.897 INFO:teuthology.orchestra.run.trial186.stdout:rbd-fuse-20.3.0-5314.g941b42ca.el9.x86_64.rpm 1.1 MB/s | 84 kB 00:00 2026-02-19T11:22:09.897 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:09.897 INFO:teuthology.orchestra.run.trial186.stdout:Total 1.1 MB/s | 84 kB 00:00 2026-02-19T11:22:09.897 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:09.901 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:09.901 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:09.932 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:09.932 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:09.984 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:10.000 INFO:teuthology.orchestra.run.trial186.stdout: Installing : rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:10.084 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:10.143 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:10.143 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:10.143 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:10.143 INFO:teuthology.orchestra.run.trial186.stdout: rbd-fuse-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:10.143 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:10.143 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:10.171 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install rbd-mirror 2026-02-19T11:22:10.507 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:50 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:10.592 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:10.592 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout: Package Arch Version Repo Size 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout: rbd-mirror x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 2.9 M 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:10.593 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:10.594 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 2.9 M 2026-02-19T11:22:10.594 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 11 M 2026-02-19T11:22:10.594 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:10.740 INFO:teuthology.orchestra.run.trial186.stdout:rbd-mirror-20.3.0-5314.g941b42ca.el9.x86_64.rpm 20 MB/s | 2.9 MB 00:00 2026-02-19T11:22:10.740 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:10.740 INFO:teuthology.orchestra.run.trial186.stdout:Total 19 MB/s | 2.9 MB 00:00 2026-02-19T11:22:10.740 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:10.744 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:10.745 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:10.784 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:10.784 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:10.962 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:10.964 INFO:teuthology.orchestra.run.trial186.stdout: Installing : rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:10.987 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:10.987 INFO:teuthology.orchestra.run.trial186.stdout:Glob pattern passed to enable, but globs are not supported for this. 2026-02-19T11:22:10.987 INFO:teuthology.orchestra.run.trial186.stdout:Invalid unit name "ceph-rbd-mirror@*.service" escaped as "ceph-rbd-mirror@\x2a.service". 2026-02-19T11:22:10.987 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-19T11:22:10.988 INFO:teuthology.orchestra.run.trial186.stdout:Created symlink /etc/systemd/system/ceph.target.wants/ceph-rbd-mirror.target → /usr/lib/systemd/system/ceph-rbd-mirror.target. 2026-02-19T11:22:10.988 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:11.276 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:11.276 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:11.276 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:11.276 INFO:teuthology.orchestra.run.trial186.stdout: rbd-mirror-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:11.276 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:11.276 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:11.303 DEBUG:teuthology.orchestra.run.trial186:> sudo yum -y install rbd-nbd 2026-02-19T11:22:11.622 INFO:teuthology.orchestra.run.trial186.stdout:Last metadata expiration check: 0:00:51 ago on Thu 19 Feb 2026 11:21:20 AM UTC. 2026-02-19T11:22:11.705 INFO:teuthology.orchestra.run.trial186.stdout:Dependencies resolved. 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout: Package Architecture Version Repository Size 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:Installing: 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout: rbd-nbd x86_64 2:20.3.0-5314.g941b42ca.el9 ceph 173 k 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:Transaction Summary 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:================================================================================ 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:Install 1 Package 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:Total download size: 173 k 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:Installed size: 462 k 2026-02-19T11:22:11.706 INFO:teuthology.orchestra.run.trial186.stdout:Downloading Packages: 2026-02-19T11:22:11.793 INFO:teuthology.orchestra.run.trial186.stdout:rbd-nbd-20.3.0-5314.g941b42ca.el9.x86_64.rpm 2.0 MB/s | 173 kB 00:00 2026-02-19T11:22:11.794 INFO:teuthology.orchestra.run.trial186.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:11.794 INFO:teuthology.orchestra.run.trial186.stdout:Total 1.9 MB/s | 173 kB 00:00 2026-02-19T11:22:11.794 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction check 2026-02-19T11:22:11.798 INFO:teuthology.orchestra.run.trial186.stdout:Transaction check succeeded. 2026-02-19T11:22:11.798 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction test 2026-02-19T11:22:11.829 INFO:teuthology.orchestra.run.trial186.stdout:Transaction test succeeded. 2026-02-19T11:22:11.830 INFO:teuthology.orchestra.run.trial186.stdout:Running transaction 2026-02-19T11:22:11.887 INFO:teuthology.orchestra.run.trial186.stdout: Preparing : 1/1 2026-02-19T11:22:11.905 INFO:teuthology.orchestra.run.trial186.stdout: Installing : rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:11.989 INFO:teuthology.orchestra.run.trial186.stdout: Running scriptlet: rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:12.047 INFO:teuthology.orchestra.run.trial186.stdout: Verifying : rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 1/1 2026-02-19T11:22:12.048 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:12.048 INFO:teuthology.orchestra.run.trial186.stdout:Installed: 2026-02-19T11:22:12.048 INFO:teuthology.orchestra.run.trial186.stdout: rbd-nbd-2:20.3.0-5314.g941b42ca.el9.x86_64 2026-02-19T11:22:12.048 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:12.048 INFO:teuthology.orchestra.run.trial186.stdout:Complete! 2026-02-19T11:22:12.079 DEBUG:teuthology.parallel:result is None 2026-02-19T11:22:12.080 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:12.246 DEBUG:teuthology.orchestra.run.trial010:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-19T11:22:12.268 INFO:teuthology.orchestra.run.trial010.stdout:20.3.0-5314.g941b42ca.el9 2026-02-19T11:22:12.268 INFO:teuthology.packaging:The installed version of ceph is 20.3.0-5314.g941b42ca.el9 2026-02-19T11:22:12.268 INFO:teuthology.task.install:The correct ceph version 20.3.0-5314.g941b42ca is installed. 2026-02-19T11:22:12.271 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:12.426 DEBUG:teuthology.orchestra.run.trial132:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-19T11:22:12.448 INFO:teuthology.orchestra.run.trial132.stdout:20.3.0-5314.g941b42ca.el9 2026-02-19T11:22:12.448 INFO:teuthology.packaging:The installed version of ceph is 20.3.0-5314.g941b42ca.el9 2026-02-19T11:22:12.449 INFO:teuthology.task.install:The correct ceph version 20.3.0-5314.g941b42ca is installed. 2026-02-19T11:22:12.452 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:12.609 DEBUG:teuthology.orchestra.run.trial186:> rpm -q ceph --qf '%{VERSION}-%{RELEASE}' 2026-02-19T11:22:12.630 INFO:teuthology.orchestra.run.trial186.stdout:20.3.0-5314.g941b42ca.el9 2026-02-19T11:22:12.631 INFO:teuthology.packaging:The installed version of ceph is 20.3.0-5314.g941b42ca.el9 2026-02-19T11:22:12.631 INFO:teuthology.task.install:The correct ceph version 20.3.0-5314.g941b42ca is installed. 2026-02-19T11:22:12.633 INFO:teuthology.task.install.util:Shipping valgrind.supp... 2026-02-19T11:22:12.633 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:12.633 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-19T11:22:12.660 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:22:12.660 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-19T11:22:12.687 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:22:12.687 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/home/ubuntu/cephtest/valgrind.supp 2026-02-19T11:22:12.714 INFO:teuthology.task.install.util:Shipping 'daemon-helper'... 2026-02-19T11:22:12.714 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:12.715 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/usr/bin/daemon-helper 2026-02-19T11:22:12.740 DEBUG:teuthology.orchestra.run.trial010:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-19T11:22:12.804 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:22:12.805 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/usr/bin/daemon-helper 2026-02-19T11:22:12.830 DEBUG:teuthology.orchestra.run.trial132:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-19T11:22:12.894 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:22:12.894 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/usr/bin/daemon-helper 2026-02-19T11:22:12.920 DEBUG:teuthology.orchestra.run.trial186:> sudo chmod a=rx -- /usr/bin/daemon-helper 2026-02-19T11:22:12.985 INFO:teuthology.task.install.util:Shipping 'adjust-ulimits'... 2026-02-19T11:22:12.986 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:12.986 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-19T11:22:13.011 DEBUG:teuthology.orchestra.run.trial010:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-19T11:22:13.075 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:22:13.075 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-19T11:22:13.101 DEBUG:teuthology.orchestra.run.trial132:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-19T11:22:13.165 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:22:13.165 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/usr/bin/adjust-ulimits 2026-02-19T11:22:13.192 DEBUG:teuthology.orchestra.run.trial186:> sudo chmod a=rx -- /usr/bin/adjust-ulimits 2026-02-19T11:22:13.256 INFO:teuthology.task.install.util:Shipping 'stdin-killer'... 2026-02-19T11:22:13.257 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:13.257 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/usr/bin/stdin-killer 2026-02-19T11:22:13.282 DEBUG:teuthology.orchestra.run.trial010:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-19T11:22:13.346 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:22:13.346 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/usr/bin/stdin-killer 2026-02-19T11:22:13.371 DEBUG:teuthology.orchestra.run.trial132:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-19T11:22:13.435 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:22:13.435 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/usr/bin/stdin-killer 2026-02-19T11:22:13.461 DEBUG:teuthology.orchestra.run.trial186:> sudo chmod a=rx -- /usr/bin/stdin-killer 2026-02-19T11:22:13.526 INFO:teuthology.run_tasks:Running task cephadm... 2026-02-19T11:22:13.654 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', 'OSD_DOWN', 'OSD_HOST_DOWN'], 'log-only-match': ['CEPHADM_'], 'sha1': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec'} 2026-02-19T11:22:13.654 INFO:tasks.cephadm:Cluster image is quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:13.656 INFO:tasks.cephadm:Cluster fsid is 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:13.656 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2026-02-19T11:22:13.656 INFO:tasks.cephadm:Monitor IPs: {'mon.a': '10.20.193.10', 'mon.b': '10.20.193.132', 'mon.c': '10.20.193.186'} 2026-02-19T11:22:13.657 INFO:tasks.cephadm:First mon is mon.a on trial010 2026-02-19T11:22:13.657 INFO:tasks.cephadm:First mgr is a 2026-02-19T11:22:13.657 INFO:tasks.cephadm:Normalizing hostnames... 2026-02-19T11:22:13.657 DEBUG:teuthology.orchestra.run.trial010:> sudo hostname $(hostname -s) 2026-02-19T11:22:13.682 DEBUG:teuthology.orchestra.run.trial132:> sudo hostname $(hostname -s) 2026-02-19T11:22:13.707 DEBUG:teuthology.orchestra.run.trial186:> sudo hostname $(hostname -s) 2026-02-19T11:22:13.731 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2026-02-19T11:22:13.731 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=centos%2F9%2Fx86_64&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:13.889 INFO:tasks.cephadm:builder_project result: [{'url': 'https://1.chacra.ceph.com/r/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/', 'chacra_url': 'https://1.chacra.ceph.com/repos/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/flavors/default/', 'ref': 'wip-shraddhaag-cephadm-seastore-support', 'sha1': '941b42cabfa3c4e4d30b96a58cbe2fa653f560ec', 'distro': 'centos', 'distro_version': '9', 'distro_codename': None, 'modified': '2026-02-18 14:38:05.931304', 'status': 'ready', 'flavor': 'default', 'project': 'ceph', 'archs': ['x86_64', 'source'], 'extra': {'version': '20.3.0-5314-g941b42ca', 'package_manager_version': '20.3.0-5314.g941b42ca', 'build_url': 'https://jenkins.ceph.com/job/ceph-dev-pipeline/3059/', 'root_build_cause': '', 'node_name': '10.20.192.26+soko16', 'job_name': 'ceph-dev-pipeline'}}] 2026-02-19T11:22:14.035 INFO:tasks.util.chacra:got chacra host 1.chacra.ceph.com, ref wip-shraddhaag-cephadm-seastore-support, sha1 941b42cabfa3c4e4d30b96a58cbe2fa653f560ec from https://shaman.ceph.com/api/search/?project=ceph&distros=centos%2F9%2Fx86_64&flavor=default&sha1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:14.037 INFO:tasks.cephadm:Discovered cachra url: https://1.chacra.ceph.com/binaries/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/x86_64/flavors/default/cephadm 2026-02-19T11:22:14.037 INFO:tasks.cephadm:Downloading cephadm from url: https://1.chacra.ceph.com/binaries/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/x86_64/flavors/default/cephadm 2026-02-19T11:22:14.037 DEBUG:teuthology.orchestra.run.trial010:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.311 INFO:teuthology.orchestra.run.trial010.stdout:-rw-r--r--. 1 ubuntu ubuntu 1074392 Feb 19 11:22 /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.312 DEBUG:teuthology.orchestra.run.trial132:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.612 INFO:teuthology.orchestra.run.trial132.stdout:-rw-r--r--. 1 ubuntu ubuntu 1074392 Feb 19 11:22 /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.613 DEBUG:teuthology.orchestra.run.trial186:> curl --silent -L https://1.chacra.ceph.com/binaries/ceph/wip-shraddhaag-cephadm-seastore-support/941b42cabfa3c4e4d30b96a58cbe2fa653f560ec/centos/9/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.877 INFO:teuthology.orchestra.run.trial186.stdout:-rw-r--r--. 1 ubuntu ubuntu 1074392 Feb 19 11:22 /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.877 DEBUG:teuthology.orchestra.run.trial010:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.897 DEBUG:teuthology.orchestra.run.trial132:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.916 DEBUG:teuthology.orchestra.run.trial186:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2026-02-19T11:22:14.952 INFO:tasks.cephadm:Pulling image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec on all hosts... 2026-02-19T11:22:14.952 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec pull 2026-02-19T11:22:14.954 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec pull 2026-02-19T11:22:14.958 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec pull 2026-02-19T11:22:15.190 INFO:teuthology.orchestra.run.trial010.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec... 2026-02-19T11:22:15.197 INFO:teuthology.orchestra.run.trial132.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec... 2026-02-19T11:22:15.219 INFO:teuthology.orchestra.run.trial186.stderr:Pulling container image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec... 2026-02-19T11:22:24.304 INFO:teuthology.orchestra.run.trial010.stdout:{ 2026-02-19T11:22:24.305 INFO:teuthology.orchestra.run.trial010.stdout: "ceph_version": "ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev)", 2026-02-19T11:22:24.305 INFO:teuthology.orchestra.run.trial010.stdout: "image_id": "27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53", 2026-02-19T11:22:24.305 INFO:teuthology.orchestra.run.trial010.stdout: "repo_digests": [ 2026-02-19T11:22:24.305 INFO:teuthology.orchestra.run.trial010.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef" 2026-02-19T11:22:24.305 INFO:teuthology.orchestra.run.trial010.stdout: ] 2026-02-19T11:22:24.305 INFO:teuthology.orchestra.run.trial010.stdout:} 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout:{ 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout: "ceph_version": "ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev)", 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout: "image_id": "27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53", 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout: "repo_digests": [ 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef" 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout: ] 2026-02-19T11:22:24.402 INFO:teuthology.orchestra.run.trial186.stdout:} 2026-02-19T11:22:24.413 INFO:teuthology.orchestra.run.trial132.stdout:{ 2026-02-19T11:22:24.413 INFO:teuthology.orchestra.run.trial132.stdout: "ceph_version": "ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev)", 2026-02-19T11:22:24.413 INFO:teuthology.orchestra.run.trial132.stdout: "image_id": "27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53", 2026-02-19T11:22:24.414 INFO:teuthology.orchestra.run.trial132.stdout: "repo_digests": [ 2026-02-19T11:22:24.414 INFO:teuthology.orchestra.run.trial132.stdout: "quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef" 2026-02-19T11:22:24.414 INFO:teuthology.orchestra.run.trial132.stdout: ] 2026-02-19T11:22:24.414 INFO:teuthology.orchestra.run.trial132.stdout:} 2026-02-19T11:22:24.430 DEBUG:teuthology.orchestra.run.trial010:> sudo mkdir -p /etc/ceph 2026-02-19T11:22:24.458 DEBUG:teuthology.orchestra.run.trial132:> sudo mkdir -p /etc/ceph 2026-02-19T11:22:24.507 DEBUG:teuthology.orchestra.run.trial186:> sudo mkdir -p /etc/ceph 2026-02-19T11:22:24.535 DEBUG:teuthology.orchestra.run.trial010:> sudo chmod 777 /etc/ceph 2026-02-19T11:22:24.562 DEBUG:teuthology.orchestra.run.trial132:> sudo chmod 777 /etc/ceph 2026-02-19T11:22:24.588 DEBUG:teuthology.orchestra.run.trial186:> sudo chmod 777 /etc/ceph 2026-02-19T11:22:24.612 INFO:tasks.cephadm:Writing seed config... 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [global] mon election default strategy = 1 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [mgr] mgr/cephadm/use_agent = False 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [mon] debug mon = 20 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [mon] debug ms = 1 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2026-02-19T11:22:24.614 INFO:tasks.cephadm: override: [osd] debug ms = 1 2026-02-19T11:22:24.615 INFO:tasks.cephadm: override: [osd] debug osd = 20 2026-02-19T11:22:24.615 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:24.616 DEBUG:teuthology.orchestra.run.trial010:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2026-02-19T11:22:24.632 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 = 3d5d7969-0d85-11f1-8034-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-19T11:22:24.632 DEBUG:teuthology.orchestra.run.trial010:mon.a> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a.service 2026-02-19T11:22:24.675 DEBUG:teuthology.orchestra.run.trial010:mgr.a> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a.service 2026-02-19T11:22:24.717 INFO:tasks.cephadm:Bootstrapping... 2026-02-19T11:22:24.717 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec -v bootstrap --fsid 3d5d7969-0d85-11f1-8034-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.10 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:24.855 INFO:teuthology.orchestra.run.trial010.stdout:-------------------------------------------------------------------------------- 2026-02-19T11:22:24.855 INFO:teuthology.orchestra.run.trial010.stdout:cephadm ['--image', 'quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec', '-v', 'bootstrap', '--fsid', '3d5d7969-0d85-11f1-8034-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.10', '--skip-admin-label'] 2026-02-19T11:22:24.855 INFO:teuthology.orchestra.run.trial010.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2026-02-19T11:22:24.856 INFO:teuthology.orchestra.run.trial010.stdout:Verifying podman|docker is present... 2026-02-19T11:22:24.870 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stdout 5.6.0 2026-02-19T11:22:24.870 INFO:teuthology.orchestra.run.trial010.stdout:Verifying lvm2 is present... 2026-02-19T11:22:24.870 INFO:teuthology.orchestra.run.trial010.stdout:Verifying time synchronization is in place... 2026-02-19T11:22:24.877 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-19T11:22:24.877 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-19T11:22:24.882 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-19T11:22:24.882 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:24.888 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout enabled 2026-02-19T11:22:24.894 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout active 2026-02-19T11:22:24.894 INFO:teuthology.orchestra.run.trial010.stdout:Unit chronyd.service is enabled and running 2026-02-19T11:22:24.894 INFO:teuthology.orchestra.run.trial010.stdout:Repeating the final host check... 2026-02-19T11:22:24.910 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stdout 5.6.0 2026-02-19T11:22:24.910 INFO:teuthology.orchestra.run.trial010.stdout:podman (/bin/podman) version 5.6.0 is present 2026-02-19T11:22:24.910 INFO:teuthology.orchestra.run.trial010.stdout:systemctl is present 2026-02-19T11:22:24.910 INFO:teuthology.orchestra.run.trial010.stdout:lvcreate is present 2026-02-19T11:22:24.915 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2026-02-19T11:22:24.915 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2026-02-19T11:22:24.920 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2026-02-19T11:22:24.920 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:24.926 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout enabled 2026-02-19T11:22:24.932 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout active 2026-02-19T11:22:24.932 INFO:teuthology.orchestra.run.trial010.stdout:Unit chronyd.service is enabled and running 2026-02-19T11:22:24.932 INFO:teuthology.orchestra.run.trial010.stdout:Host looks OK 2026-02-19T11:22:24.932 INFO:teuthology.orchestra.run.trial010.stdout:Cluster fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:24.932 INFO:teuthology.orchestra.run.trial010.stdout:Acquiring lock 140546155462032 on /run/cephadm/3d5d7969-0d85-11f1-8034-d404e6e7d460.lock 2026-02-19T11:22:24.932 INFO:teuthology.orchestra.run.trial010.stdout:Lock 140546155462032 acquired on /run/cephadm/3d5d7969-0d85-11f1-8034-d404e6e7d460.lock 2026-02-19T11:22:24.933 INFO:teuthology.orchestra.run.trial010.stdout:Verifying IP 10.20.193.10 port 3300 ... 2026-02-19T11:22:24.933 INFO:teuthology.orchestra.run.trial010.stdout:Verifying IP 10.20.193.10 port 6789 ... 2026-02-19T11:22:24.933 INFO:teuthology.orchestra.run.trial010.stdout:Base mon IP(s) is [10.20.193.10:3300, 10.20.193.10:6789], mon addrv is [v2:10.20.193.10:3300,v1:10.20.193.10:6789] 2026-02-19T11:22:24.935 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout default via 10.20.192.1 dev enp1s0f0 proto dhcp src 10.20.193.10 metric 102 2026-02-19T11:22:24.935 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 10.20.192.0/20 dev enp1s0f0 proto kernel scope link src 10.20.193.10 metric 102 2026-02-19T11:22:24.935 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 169.254.3.0/24 dev enp7s0f4u2u2c2 proto kernel scope link src 169.254.3.1 metric 101 2026-02-19T11:22:24.938 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2026-02-19T11:22:24.938 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout fe80::/64 dev enp1s0f0 proto kernel metric 256 pref medium 2026-02-19T11:22:24.938 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout fe80::/64 dev enp7s0f4u2u2c2 proto kernel metric 1024 pref medium 2026-02-19T11:22:24.941 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout inet6 ::1/128 scope host 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 2: enp7s0f4u2u2c2: mtu 1500 state UNKNOWN qlen 1000 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout inet6 fe80::44cd:82e1:673d:4b97/64 scope link noprefixroute 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout 3: enp1s0f0: mtu 1500 state UP qlen 1000 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout inet6 fe80::925a:8ff:fe77:5e60/64 scope link 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:/sbin/ip: stdout valid_lft forever preferred_lft forever 2026-02-19T11:22:24.942 INFO:teuthology.orchestra.run.trial010.stdout:Mon IP `10.20.193.10` is in CIDR network `10.20.192.0/20` 2026-02-19T11:22:24.943 INFO:teuthology.orchestra.run.trial010.stdout:Mon IP `10.20.193.10` is in CIDR network `10.20.192.0/20` 2026-02-19T11:22:24.943 INFO:teuthology.orchestra.run.trial010.stdout:Inferred mon public CIDR from local network configuration ['10.20.192.0/20', '10.20.192.0/20'] 2026-02-19T11:22:24.943 INFO:teuthology.orchestra.run.trial010.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2026-02-19T11:22:24.943 INFO:teuthology.orchestra.run.trial010.stdout:Pulling container image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec... 2026-02-19T11:22:25.197 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stdout 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 2026-02-19T11:22:25.197 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Trying to pull quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec... 2026-02-19T11:22:25.197 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Getting image source signatures 2026-02-19T11:22:25.197 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Copying blob sha256:c3aaaa08a97eb94642b627061ed8222685e3a27394c0e933ffeb4507f6c64f5f 2026-02-19T11:22:25.197 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Copying blob sha256:5dd85e1a50663785d86adae5ef92579a03e6f64059ca9c005010518acdd62048 2026-02-19T11:22:25.198 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Copying config sha256:27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 2026-02-19T11:22:25.198 INFO:teuthology.orchestra.run.trial010.stdout:/bin/podman: stderr Writing manifest to image destination 2026-02-19T11:22:25.311 INFO:teuthology.orchestra.run.trial010.stdout:ceph: stdout ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev) 2026-02-19T11:22:25.312 INFO:teuthology.orchestra.run.trial010.stdout:Ceph version: ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev) 2026-02-19T11:22:25.312 INFO:teuthology.orchestra.run.trial010.stdout:Extracting ceph user uid/gid from container image... 2026-02-19T11:22:25.445 INFO:teuthology.orchestra.run.trial010.stdout:stat: stdout 167 167 2026-02-19T11:22:25.445 INFO:teuthology.orchestra.run.trial010.stdout:Creating initial keys... 2026-02-19T11:22:25.561 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph-authtool: stdout AQBx8pZpcLxnIBAA2aahglmxK5KH9LlAGV679A== 2026-02-19T11:22:25.674 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph-authtool: stdout AQBx8pZpIsFBJxAAr0eS6sqJB8C5Rp1kGweN9Q== 2026-02-19T11:22:25.815 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph-authtool: stdout AQBx8pZpYI+hLxAA2VDWSEvBhI5uBWocNuy44w== 2026-02-19T11:22:25.816 INFO:teuthology.orchestra.run.trial010.stdout:Creating initial monmap... 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = tentacle 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:monmaptool for a [v2:10.20.193.10:3300,v1:10.20.193.10:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:setting min_mon_release = tentacle 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: set fsid to 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:25.973 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2026-02-19T11:22:25.974 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:25.974 INFO:teuthology.orchestra.run.trial010.stdout:Creating mon... 2026-02-19T11:22:26.131 INFO:teuthology.orchestra.run.trial010.stdout:create mon.a on 2026-02-19T11:22:26.298 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Removed "/etc/systemd/system/multi-user.target.wants/ceph.target". 2026-02-19T11:22:26.409 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target → /etc/systemd/system/ceph.target. 2026-02-19T11:22:26.525 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460.target → /etc/systemd/system/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460.target. 2026-02-19T11:22:26.525 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460.target → /etc/systemd/system/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460.target. 2026-02-19T11:22:26.654 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a 2026-02-19T11:22:26.654 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a.service: Unit ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a.service not loaded. 2026-02-19T11:22:26.769 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460.target.wants/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a.service → /etc/systemd/system/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@.service. 2026-02-19T11:22:26.912 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-19T11:22:26.913 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-19T11:22:26.918 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-19T11:22:26.919 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:26.919 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-19T11:22:26.919 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to enable service . firewalld.service is not available 2026-02-19T11:22:26.919 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mon to start... 2026-02-19T11:22:26.919 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mon... 2026-02-19T11:22:27.074 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout cluster: 2026-02-19T11:22:27.074 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout id: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:27.074 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2026-02-19T11:22:27.074 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:27.074 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout services: 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum a (age 0.13227s) [leader: a] 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout data: 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout pgs: 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:mon is available 2026-02-19T11:22:27.075 INFO:teuthology.orchestra.run.trial010.stdout:Assimilating anything we can from ceph.conf... 2026-02-19T11:22:27.216 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [global] 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout fsid = 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.10:3300,v1:10.20.193.10:6789] 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-19T11:22:27.218 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr/cephadm/use_agent = False 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [osd] 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-19T11:22:27.219 INFO:teuthology.orchestra.run.trial010.stdout:Generating new minimal ceph.conf... 2026-02-19T11:22:27.362 INFO:teuthology.orchestra.run.trial010.stdout:Restarting the monitor... 2026-02-19T11:22:27.604 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 bash[21520]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-a 2026-02-19T11:22:27.734 INFO:teuthology.orchestra.run.trial010.stdout:Setting public_network to 10.20.192.0/20 in global config section 2026-02-19T11:22:27.875 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 systemd[1]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a.service: Deactivated successfully. 2026-02-19T11:22:27.875 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 systemd[1]: Stopped Ceph mon.a for 3d5d7969-0d85-11f1-8034-d404e6e7d460. 2026-02-19T11:22:27.875 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 systemd[1]: Starting Ceph mon.a for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:22:27.875 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 podman[21647]: 2026-02-19 11:22:27.698533371 +0000 UTC m=+0.015559300 container create a95a2da8db44ddd5c3a0971312f6ec6f563b7232010afd86bed5d06b4bb27767 (image=quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-a, OSD_FLAVOR=default, ceph=True, io.buildah.version=1.41.3, 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 , 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_REF=wip-shraddhaag-cephadm-seastore-support, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216) 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 podman[21647]: 2026-02-19 11:22:27.722554596 +0000 UTC m=+0.039580494 container init a95a2da8db44ddd5c3a0971312f6ec6f563b7232010afd86bed5d06b4bb27767 (image=quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-a, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, ceph=True, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, io.buildah.version=1.41.3, FROM_IMAGE=quay.io/centos/centos:stream9, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 podman[21647]: 2026-02-19 11:22:27.724945122 +0000 UTC m=+0.041971020 container start a95a2da8db44ddd5c3a0971312f6ec6f563b7232010afd86bed5d06b4bb27767 (image=quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-a, OSD_FLAVOR=default, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 bash[21647]: a95a2da8db44ddd5c3a0971312f6ec6f563b7232010afd86bed5d06b4bb27767 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 podman[21647]: 2026-02-19 11:22:27.69235181 +0000 UTC m=+0.009377708 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 systemd[1]: Started Ceph mon.a for 3d5d7969-0d85-11f1-8034-d404e6e7d460. 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: set uid:gid to 167:167 (ceph:ceph) 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev - RelWithDebInfo), process ceph-mon, pid 2 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: pidfile_write: ignore empty --pid-file 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: load: jerasure load: lrc 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: RocksDB version: 7.9.2 2026-02-19T11:22:27.876 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Git sha 0 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Compile date 2026-02-18 14:05:58 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: DB SUMMARY 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: DB Session ID: R4FNGLWN8KQDCTMOX1EW 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: CURRENT file: CURRENT 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: IDENTITY file: IDENTITY 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: SST files in /var/lib/ceph/mon/ceph-a/store.db dir, Total Num: 1, files: 000008.sst 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-a/store.db: 000009.log size: 76545 ; 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.error_if_exists: 0 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.create_if_missing: 0 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.paranoid_checks: 1 2026-02-19T11:22:27.877 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.env: 0xed5c80 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.fs: PosixFileSystem 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.info_log: 0x24b0e80 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_file_opening_threads: 16 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.statistics: (nil) 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.use_fsync: 0 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_log_file_size: 0 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.keep_log_file_num: 1000 2026-02-19T11:22:27.878 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.recycle_log_file_num: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.allow_fallocate: 1 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.allow_mmap_reads: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.allow_mmap_writes: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.use_direct_reads: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.create_missing_column_families: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.db_log_dir: 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.wal_dir: 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-19T11:22:27.879 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.advise_random_on_open: 1 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.db_write_buffer_size: 0 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.write_buffer_manager: 0x24ac140 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.rate_limiter: (nil) 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.wal_recovery_mode: 2 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.enable_thread_tracking: 0 2026-02-19T11:22:27.880 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.enable_pipelined_write: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.unordered_write: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.row_cache: None 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.wal_filter: None 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.allow_ingest_behind: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.two_write_queues: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.manual_wal_flush: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.wal_compression: 0 2026-02-19T11:22:27.881 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.atomic_flush: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.log_readahead_size: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.best_efforts_recovery: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.allow_data_in_errors: 0 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.db_host_id: __hostname__ 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_background_jobs: 2 2026-02-19T11:22:27.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_background_compactions: -1 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_subcompactions: 1 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_total_wal_size: 0 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_open_files: -1 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bytes_per_sync: 0 2026-02-19T11:22:27.883 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_readahead_size: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_background_flushes: -1 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Compression algorithms supported: 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kZSTD supported: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kXpressCompression supported: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kBZip2Compression supported: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kLZ4Compression supported: 1 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kZlibCompression supported: 1 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kLZ4HCCompression supported: 1 2026-02-19T11:22:27.884 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: kSnappyCompression supported: 1 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.merge_operator: 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_filter: None 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_filter_factory: None 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.sst_partitioner_factory: None 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x24b15c0) 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout: cache_index_and_filter_blocks: 1 2026-02-19T11:22:27.885 INFO:journalctl@ceph.mon.a.trial010.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: pin_top_level_index_and_filter: 1 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: index_type: 0 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: data_block_index_type: 0 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: index_shortening: 1 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: checksum: 4 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: no_block_cache: 0 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: block_cache: 0x247fa50 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: block_cache_name: BinnedLRUCache 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: block_cache_options: 2026-02-19T11:22:27.886 INFO:journalctl@ceph.mon.a.trial010.stdout: capacity : 536870912 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: num_shard_bits : 4 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: strict_capacity_limit : 0 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: high_pri_pool_ratio: 0.000 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: block_cache_compressed: (nil) 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: persistent_cache: (nil) 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: block_size: 4096 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: block_size_deviation: 10 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: block_restart_interval: 16 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: index_block_restart_interval: 1 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: metadata_block_size: 4096 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: partition_filters: 0 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: use_delta_encoding: 1 2026-02-19T11:22:27.887 INFO:journalctl@ceph.mon.a.trial010.stdout: filter_policy: bloomfilter 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: whole_key_filtering: 1 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: verify_compression: 0 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: read_amp_bytes_per_bit: 0 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: format_version: 5 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: enable_index_compression: 1 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: block_align: 0 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: max_auto_readahead_size: 262144 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: prepopulate_block_cache: 0 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: initial_auto_readahead_size: 8192 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout: num_file_reads_for_auto_readahead: 2 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.write_buffer_size: 33554432 2026-02-19T11:22:27.888 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_write_buffer_number: 2 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression: NoCompression 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression: Disabled 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.prefix_extractor: nullptr 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.num_levels: 7 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-19T11:22:27.889 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.level: 32767 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.strategy: 0 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.enabled: false 2026-02-19T11:22:27.890 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.target_file_size_base: 67108864 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-19T11:22:27.891 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.arena_block_size: 1048576 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.disable_auto_compactions: 0 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-19T11:22:27.892 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.inplace_update_support: 0 2026-02-19T11:22:27.893 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.bloom_locality: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.max_successive_merges: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.paranoid_file_checks: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.force_consistency_checks: 1 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.report_bg_io_stats: 0 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.ttl: 2592000 2026-02-19T11:22:27.894 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.enable_blob_files: false 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.min_blob_size: 0 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.blob_file_size: 268435456 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.blob_file_starting_level: 0 2026-02-19T11:22:27.895 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-a/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 5b76581d-a8fe-4eb6-9183-3f4adbfdb3d1 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771500147740750, "job": 1, "event": "recovery_started", "wal_files": [9]} 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771500147741464, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 73637, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 229, "table_properties": {"data_size": 71912, "index_size": 174, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 517, "raw_key_size": 9783, "raw_average_key_size": 48, "raw_value_size": 66326, "raw_average_value_size": 331, "num_data_blocks": 8, "num_entries": 200, "num_filter_entries": 200, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771500147, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "5b76581d-a8fe-4eb6-9183-3f4adbfdb3d1", "db_session_id": "R4FNGLWN8KQDCTMOX1EW", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771500147741536, "job": 1, "event": "recovery_finished"} 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/version_set.cc:5047] Creating manifest 15 2026-02-19T11:22:27.896 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-a/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-19T11:22:27.897 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x24cce00 2026-02-19T11:22:27.897 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: DB pointer 0x32be000 2026-02-19T11:22:27.897 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-19T11:22:27.897 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-19T11:22:27.897 INFO:journalctl@ceph.mon.a.trial010.stdout: ** DB Stats ** 2026-02-19T11:22:27.897 INFO:journalctl@ceph.mon.a.trial010.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: 2026-02-19T11:22:27.898 INFO:journalctl@ceph.mon.a.trial010.stdout: ** Compaction Stats [default] ** 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: L0 2/0 73.78 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 144.5 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: Sum 2/0 73.78 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 144.5 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 144.5 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: ** Compaction Stats [default] ** 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 144.5 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:22:27.899 INFO:journalctl@ceph.mon.a.trial010.stdout: 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Cumulative compaction: 0.00 GB write, 18.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Interval compaction: 0.00 GB write, 18.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2026-02-19T11:22:27.900 INFO:journalctl@ceph.mon.a.trial010.stdout: Block cache BinnedLRUCache@0x247fa50#2 capacity: 512.00 MB usage: 1.06 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: Block cache entry stats(count,size,portion): FilterBlock(2,0.70 KB,0.00013411%) IndexBlock(2,0.36 KB,6.85453e-05%) Misc(1,0.00 KB,0%) 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: starting mon.a rank 0 at public addrs [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] at bind addrs [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon_data /var/lib/ceph/mon/ceph-a fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???) e1 preinit fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).mds e1 new map 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).mds e1 print_map 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: e1 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: btime 2026-02-19T11:22:26:918583+0000 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2026-02-19T11:22:27.901 INFO:journalctl@ceph.mon.a.trial010.stdout: legacy client fscid: -1 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout: 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout: No filesystems configured 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: monmap epoch 1 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: last_changed 2026-02-19T11:22:25.936658+0000 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:22:27.902 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: min_mon_release 20 (tentacle) 2026-02-19T11:22:27.903 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: election_strategy: 1 2026-02-19T11:22:27.903 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:22:27.903 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: fsmap 2026-02-19T11:22:27.903 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: osdmap e1: 0 total, 0 up, 0 in 2026-02-19T11:22:27.903 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:27 trial010 ceph-mon[21676]: mgrmap e1: no daemons active 2026-02-19T11:22:27.904 INFO:teuthology.orchestra.run.trial010.stdout:Wrote config to /etc/ceph/ceph.conf 2026-02-19T11:22:27.904 INFO:teuthology.orchestra.run.trial010.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:27.904 INFO:teuthology.orchestra.run.trial010.stdout:Creating mgr... 2026-02-19T11:22:27.904 INFO:teuthology.orchestra.run.trial010.stdout:Verifying port 0.0.0.0:9283 ... 2026-02-19T11:22:27.904 INFO:teuthology.orchestra.run.trial010.stdout:Verifying port 0.0.0.0:8765 ... 2026-02-19T11:22:28.018 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a 2026-02-19T11:22:28.019 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Failed to reset failed state of unit ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a.service: Unit ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a.service not loaded. 2026-02-19T11:22:28.134 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460.target.wants/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a.service → /etc/systemd/system/ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@.service. 2026-02-19T11:22:28.282 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-19T11:22:28.283 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-19T11:22:28.288 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-19T11:22:28.289 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:28.289 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-19T11:22:28.289 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to enable service . firewalld.service is not available 2026-02-19T11:22:28.295 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-19T11:22:28.295 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-19T11:22:28.301 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-19T11:22:28.302 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:28.302 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-19T11:22:28.302 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to open ports <[9283, 8765]>. firewalld.service is not available 2026-02-19T11:22:28.302 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr to start... 2026-02-19T11:22:28.302 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr... 2026-02-19T11:22:28.469 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:28.469 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:28.469 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsid": "3d5d7969-0d85-11f1-8034-d404e6e7d460", 2026-02-19T11:22:28.469 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "health": { 2026-02-19T11:22:28.469 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 0 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:28.470 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "a" 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_age": 0, 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-19T11:22:28.471 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-19T11:22:28.472 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-19T11:22:28.473 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-19T11:22:28.474 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "btime": "2026-02-19T11:22:26:918583+0000", 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-19T11:22:28.475 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modified": "2026-02-19T11:22:26.919062+0000", 2026-02-19T11:22:28.476 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-19T11:22:28.477 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:28.477 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-19T11:22:28.477 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:28.477 INFO:teuthology.orchestra.run.trial010.stdout:mgr not available, waiting (1/15)... 2026-02-19T11:22:29.265 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:28 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3766668003' entity='client.admin' 2026-02-19T11:22:29.265 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:28 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1701441437' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-19T11:22:29.540 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:29 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: from numpy import show_config as show_numpy_config 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsid": "3d5d7969-0d85-11f1-8034-d404e6e7d460", 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "health": { 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 0 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "a" 2026-02-19T11:22:30.616 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_age": 2, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-19T11:22:30.617 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-19T11:22:30.619 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "btime": "2026-02-19T11:22:26:918583+0000", 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": false, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modified": "2026-02-19T11:22:26.919062+0000", 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:30.620 INFO:teuthology.orchestra.run.trial010.stdout:mgr not available, waiting (2/15)... 2026-02-19T11:22:30.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:30 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3432799053' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-19T11:22:32.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: Activating manager daemon a 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: mgrmap e2: a(active, starting, since 0.00230533s) 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: Manager daemon a is now available 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' 2026-02-19T11:22:32.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-19T11:22:32.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' 2026-02-19T11:22:32.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:31 trial010 ceph-mon[21676]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' 2026-02-19T11:22:32.896 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:32.896 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:32.896 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsid": "3d5d7969-0d85-11f1-8034-d404e6e7d460", 2026-02-19T11:22:32.896 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "health": { 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "checks": {}, 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mutes": [] 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum": [ 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 0 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "a" 2026-02-19T11:22:32.897 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "quorum_age": 5, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "monmap": { 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "tentacle", 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_mons": 1 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osdmap": { 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2026-02-19T11:22:32.898 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgmap": { 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2026-02-19T11:22:32.899 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "fsmap": { 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "btime": "2026-02-19T11:22:26:918583+0000", 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "by_rank": [], 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "up:standby": 0 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap": { 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modules": [ 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "iostat", 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "nfs" 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ], 2026-02-19T11:22:32.900 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "servicemap": { 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 1, 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "modified": "2026-02-19T11:22:26.919062+0000", 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "services": {} 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout }, 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "progress_events": {} 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:32.901 INFO:teuthology.orchestra.run.trial010.stdout:mgr is available 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [global] 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout fsid = 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_host = [v2:10.20.193.10:3300,v1:10.20.193.10:6789] 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2026-02-19T11:22:33.122 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [mgr] 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout [osd] 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2026-02-19T11:22:33.123 INFO:teuthology.orchestra.run.trial010.stdout:Enabling cephadm module... 2026-02-19T11:22:33.168 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:33 trial010 ceph-mon[21676]: mgrmap e3: a(active, since 1.0056s) 2026-02-19T11:22:33.168 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:33 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3465333682' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-19T11:22:34.360 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:34 trial010 ceph-mon[21676]: mgrmap e4: a(active, since 2s) 2026-02-19T11:22:34.360 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:34 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2584684292' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-19T11:22:34.360 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:34 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2584684292' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-02-19T11:22:34.361 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:34 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1656225422' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-19T11:22:34.361 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:34 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: ignoring --setuser ceph since I am not root 2026-02-19T11:22:34.361 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:34 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: ignoring --setgroup ceph since I am not root 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 5, 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for the mgr to restart... 2026-02-19T11:22:34.383 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr epoch 5... 2026-02-19T11:22:35.540 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:35 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1656225422' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-19T11:22:35.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:35 trial010 ceph-mon[21676]: mgrmap e5: a(active, since 3s) 2026-02-19T11:22:35.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:35 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1223614212' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-19T11:22:35.541 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:35 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: /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-19T11:22:35.541 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:35 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: 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-19T11:22:35.541 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:35 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: from numpy import show_config as show_numpy_config 2026-02-19T11:22:37.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: Active manager daemon a restarted 2026-02-19T11:22:37.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: Activating manager daemon a 2026-02-19T11:22:37.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: osdmap e2: 0 total, 0 up, 0 in 2026-02-19T11:22:37.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: mgrmap e6: a(active, starting, since 0.00258183s) 2026-02-19T11:22:37.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:22:37.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-19T11:22:37.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-19T11:22:37.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-19T11:22:37.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-19T11:22:37.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:36 trial010 ceph-mon[21676]: Manager daemon a is now available 2026-02-19T11:22:37.904 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:37.904 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2026-02-19T11:22:37.904 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-19T11:22:37.904 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:37.904 INFO:teuthology.orchestra.run.trial010.stdout:mgr epoch 5 is available 2026-02-19T11:22:37.904 INFO:teuthology.orchestra.run.trial010.stdout:Verifying orchestrator module is enabled... 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: Found migration_current of "None". Setting to last migration. 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:38.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:37] ENGINE Bus STARTING 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:37] ENGINE Serving on https://10.20.193.10:7150 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:37] ENGINE Client ('10.20.193.10', 56498) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:37] ENGINE Serving on http://10.20.193.10:8765 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:37] ENGINE Bus STARTED 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: mgrmap e7: a(active, since 1.00419s) 2026-02-19T11:22:38.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-19T11:22:38.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-19T11:22:38.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:38 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/67603786' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-19T11:22:38.904 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2026-02-19T11:22:38.904 INFO:teuthology.orchestra.run.trial010.stdout:Setting orchestrator backend to cephadm... 2026-02-19T11:22:39.370 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout value unchanged 2026-02-19T11:22:39.370 INFO:teuthology.orchestra.run.trial010.stdout:Generating ssh key... 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: Generating public/private ed25519 key pair. 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: Your identification has been saved in /tmp/tmpmv84cka8/key 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: Your public key has been saved in /tmp/tmpmv84cka8/key.pub 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: The key fingerprint is: 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: SHA256:ZDCpknsxTj4fpZ0+aEZYOW3H3mnOeWELNu9WZCWQfQ8 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: The key's randomart image is: 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: +--[ED25519 256]--+ 2026-02-19T11:22:39.664 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | o. .+ | 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | .o . E o| 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | . . oo. +o| 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | o = +o+ o +| 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | * = *S+ . . o | 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | . * + o . B o .| 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | . + + = * + | 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | = o + = | 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: | o . +. | 2026-02-19T11:22:39.665 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: +----[SHA256]-----+ 2026-02-19T11:22:39.843 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:39.844 INFO:teuthology.orchestra.run.trial010.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2026-02-19T11:22:39.844 INFO:teuthology.orchestra.run.trial010.stdout:Adding key to root@localhost authorized_keys... 2026-02-19T11:22:39.844 INFO:teuthology.orchestra.run.trial010.stdout:Adding host trial010... 2026-02-19T11:22:39.958 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/67603786' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-19T11:22:39.959 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: mgrmap e8: a(active, since 2s) 2026-02-19T11:22:39.959 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:39.959 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:39.959 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:39.959 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:39.959 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:39 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:41.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:40 trial010 ceph-mon[21676]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:41.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:40 trial010 ceph-mon[21676]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:41.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:40 trial010 ceph-mon[21676]: Generating ssh key... 2026-02-19T11:22:41.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:40 trial010 ceph-mon[21676]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:41.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:40 trial010 ceph-mon[21676]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial010", "addr": "10.20.193.10", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:41.673 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Added host 'trial010' with addr '10.20.193.10' 2026-02-19T11:22:41.673 INFO:teuthology.orchestra.run.trial010.stdout:Deploying unmanaged mon service... 2026-02-19T11:22:41.905 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:41 trial010 ceph-mon[21676]: Deploying cephadm binary to trial010 2026-02-19T11:22:41.905 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:41 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:41.905 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:41 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:41.933 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2026-02-19T11:22:41.933 INFO:teuthology.orchestra.run.trial010.stdout:Deploying unmanaged mgr service... 2026-02-19T11:22:42.168 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2026-02-19T11:22:42.632 INFO:teuthology.orchestra.run.trial010.stdout:Enabling the dashboard module... 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: Added host trial010 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: Saving service mon spec with placement count:5 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:43.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2625523803' entity='client.admin' 2026-02-19T11:22:43.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2330644605' entity='client.admin' 2026-02-19T11:22:43.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:43.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:42 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3405232781' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-19T11:22:44.005 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:43 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: ignoring --setuser ceph since I am not root 2026-02-19T11:22:44.005 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:43 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: ignoring --setgroup ceph since I am not root 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "epoch": 9, 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "available": true, 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "active_name": "a", 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "num_standby": 0 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for the mgr to restart... 2026-02-19T11:22:44.026 INFO:teuthology.orchestra.run.trial010.stdout:Waiting for mgr epoch 9... 2026-02-19T11:22:44.290 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-mon[21676]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:44.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-mon[21676]: Saving service mgr spec with placement count:2 2026-02-19T11:22:44.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-mon[21676]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:22:44.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3405232781' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-19T11:22:44.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-mon[21676]: mgrmap e9: a(active, since 6s) 2026-02-19T11:22:44.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/150076616' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-19T11:22:45.040 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: /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-19T11:22:45.041 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: 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-19T11:22:45.041 INFO:journalctl@ceph.mgr.a.trial010.stdout:Feb 19 11:22:44 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-a[21945]: from numpy import show_config as show_numpy_config 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: Active manager daemon a restarted 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: Activating manager daemon a 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: osdmap e3: 0 total, 0 up, 0 in 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: mgrmap e10: a(active, starting, since 0.00262738s) 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-19T11:22:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-19T11:22:47.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-19T11:22:47.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:46 trial010 ceph-mon[21676]: Manager daemon a is now available 2026-02-19T11:22:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-19T11:22:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-19T11:22:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:47 trial010 ceph-mon[21676]: mgrmap e11: a(active, since 1.0047s) 2026-02-19T11:22:47.972 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout { 2026-02-19T11:22:47.972 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 11, 2026-02-19T11:22:47.972 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout "initialized": true 2026-02-19T11:22:47.972 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout } 2026-02-19T11:22:47.973 INFO:teuthology.orchestra.run.trial010.stdout:mgr epoch 9 is available 2026-02-19T11:22:47.973 INFO:teuthology.orchestra.run.trial010.stdout:Using certmgr to generate dashboard self-signed certificate... 2026-02-19T11:22:49.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:46] ENGINE Bus STARTING 2026-02-19T11:22:49.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:46] ENGINE Serving on http://10.20.193.10:8765 2026-02-19T11:22:49.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:47] ENGINE Serving on https://10.20.193.10:7150 2026-02-19T11:22:49.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:47] ENGINE Bus STARTED 2026-02-19T11:22:49.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: [19/Feb/2026:11:22:47] ENGINE Client ('10.20.193.10', 40818) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-19T11:22:49.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-19T11:22:49.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-19T11:22:49.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:49.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:48 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:49.183 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIFHzCCAwegAwIBAgIUd259+QT2CN2hBIwWXZwdLAQa6BAwDQYJKoZIhvcNAQEL\nBQAwPDE6MDgGA1UEAwwxY2VwaGFkbS1yb290LTNkNWQ3OTY5LTBkODUtMTFmMS04\nMDM0LWQ0MDRlNmU3ZDQ2MDAeFw0yNjAyMTkxMTIyNDlaFw0yOTAyMTgxMTIyNDla\nMBcxFTATBgNVBAMMDDEwLjIwLjE5My4xMDCCAiIwDQYJKoZIhvcNAQEBBQADggIP\nADCCAgoCggIBAOQ/SDt0n3QmDThuK7OGM795CnVptBCc1fcDJiiMWOGWgPRKg7yZ\n5lrtv/MylgQiZrbMT/0U7JBEzktMY58PNNQYpv8Rv9+PupzUxxOr1ZU2KB/6OwOn\nqGUcyR6OwyxqjBsEaKv10yjHIzgOIWKiVhg5QqjmrRBoqelS6gOxmW/SJab7IrO2\nE9qKB8lOvUPs5OKHtn96BTJwbndVDxKZXm9OGL2CypLZBDrHASnrFVygosHc38Ys\nak/2Gl52hZJ1pBDITWyUWzGq3mMdLMuaVBJmUFBXsTsEmbqdGQxZ6QWbfawWJwkP\ncA8K+80AcypreNYq6QykXlqZkcVNFajGT6aI5tDyfxnT9nWq/WJjdvp7CchptX7P\nQ8HaKvld0PqfeuWRxV6J5hXQSkt9pQ9HiwZbf1WlFjKyZCFheBwuYV1fokYyKKUC\n41R0gdA0BXSILLqNvW2i5ddyU7Y5qHmpBro5lzgSIo5N0gHCLLui9tTeiRww26C7\nhbl7o4HsGjvH9NILreb+r8/8I3KeQOBlowRb1cyE0ftRsxDo0QZ+WhrjKjUAiPyp\n0U45vcIEavudOkNr8+9ZmdeWu7PW7NVFL2lTvHxUVBng5hI8bdkmgDME96yXqxAP\nw7RcTAPNTdOYtNiyCjB9theWhpJ6tKWYD/9nxTA9FDcSDJMEwsMUOirFAgMBAAGj\nPjA8MCwGA1UdEQQlMCOCCHRyaWFsMDEwghFkYXNoYm9hcmRfc2VydmVyc4cEChTB\nCjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQBe5zWzvZmFXWkB7fZG\nCtSaT+36wz0FwnMnuJnCHfoMBWAF1PK95lhcj33TAbAUQAjWIo1HdFD8zjrCccm4\nKBFRZDEzAplvXm0DdfotNKU0iGsfzOdv+xaRDBpO1J8w1x9ttPySNZl9pbuBt8Cx\nraEpAhXMWgNDvZ+2kABijOkMPM7pSq19udVlvTHV5dLW9oM5neBsjogGigVIKoCc\nP30ffH4a1GVNJUBoNsKWV/QkLqBDi8APNh7zfTUHTXUGfjbNm13ASWljTjcmn2RZ\nh7NNSXd5e0f89R68liG3iLNLP7a5deSXyp9knonpZPOLg234YIYWsPMmzJtaT9gf\nNf0G8ZNQJ2K3a7XrkMNb7SpsTdszQHZV8w092g8LTI9HlqSwPWDELCpXLRGhoiPn\nTkRr1HSgH/iIPVkm+5vyoUdILGl9t67FZs3rEzgsTt/5qhBwYXnfMEgjWcbozI7R\nvnqOXTcK46Jp0jqA8LZ7XCUJcuTPaJIzC//haXP4G3YaBL4vlPQOvMZ73BqowpTd\ntu5IA8Tgk9hg8uOAHxd1JuJz27CKEWI1xHxikpo/dufqNnRiAtNoQYgVp0nJ55fu\nzrbO7iU/QJnY6sY9MEtzLPJ1nYtYWXYl65z02+u2jlaP6/sJ69Jd9aLhZ/TBrzHv\n2LjFgg+6uVc6acYZ8LMMfi8BnQ==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJKQIBAAKCAgEA5D9IO3SfdCYNOG4rs4Yzv3kKdWm0EJzV9wMmKIxY4ZaA9EqD\nvJnmWu2/8zKWBCJmtsxP/RTskETOS0xjnw801Bim/xG/34+6nNTHE6vVlTYoH/o7\nA6eoZRzJHo7DLGqMGwRoq/XTKMcjOA4hYqJWGDlCqOatEGip6VLqA7GZb9Ilpvsi\ns7YT2ooHyU69Q+zk4oe2f3oFMnBud1UPEpleb04YvYLKktkEOscBKesVXKCiwdzf\nxixqT/YaXnaFknWkEMhNbJRbMareYx0sy5pUEmZQUFexOwSZup0ZDFnpBZt9rBYn\nCQ9wDwr7zQBzKmt41irpDKReWpmRxU0VqMZPpojm0PJ/GdP2dar9YmN2+nsJyGm1\nfs9Dwdoq+V3Q+p965ZHFXonmFdBKS32lD0eLBlt/VaUWMrJkIWF4HC5hXV+iRjIo\npQLjVHSB0DQFdIgsuo29baLl13JTtjmoeakGujmXOBIijk3SAcIsu6L21N6JHDDb\noLuFuXujgewaO8f00gut5v6vz/wjcp5A4GWjBFvVzITR+1GzEOjRBn5aGuMqNQCI\n/KnRTjm9wgRq+506Q2vz71mZ15a7s9bs1UUvaVO8fFRUGeDmEjxt2SaAMwT3rJer\nEA/DtFxMA81N05i02LIKMH22F5aGknq0pZgP/2fFMD0UNxIMkwTCwxQ6KsUCAwEA\nAQKCAgAaKRSm1+GUxu25+4qfu3B/8CgeN/zO8KLnemFrwVZImN7z4PyDZ+JKprha\n7//YvnamWfmLCNRqXrCEWd+LMgt8iczOLGMhBRC++/ZLT2UeAoSL0brk2tkGqct1\naKh/FUE0sYcrunO210g2mwwBiZizkxCMWlAYst5So1G2Fat/8Qamwl8CWQqigDKP\nRKqVt/et7R8iMkKZOuC2ZbXiDFkSCdH1GqIMPbpp4DhGbS7YHIM7FA1D4gBXZN41\n2IDLvhcNY1/YY5KmOS7fDk99kJU1PKvU4ZArMwZJqMrfqwh1v5IiYLGdrLrLxpcA\nsp4AjSve5DEs5UP5P2PBSOoEG6KyPNF/8N78iH7L3RZtuOoK68w8cBd20yHKO2Px\nPZdEO1gTj/en6cXEynYSrH08TJNIjxHXfAAQ0nPEfIHSrDqk0MQqiicUj1A4Ra5Z\nhmfuJnPQToNEmUAbsOtm95vB4O5rF/s3DD1B0mHPoJ1g2mJ/faGB+VVy1JBNuJ5N\n/SWgZdD/uDRhxXZ5/1mgOC3MV0WX5xcOjNFaclJ94x8nYYWcg2rgcv3afwz5vsTP\nqYo/sGlYdQkBAQUsOinZzNmuKBOw+DMV2cTvr9zfDKSaHRcsojiEBqLgSVlIuS9f\nERBulDbHsHINS6GMiM126T8CWUytZbSurs98yHRf6+ybU1o2UQKCAQEA9GxMOwPl\nHHsf3Eik8YNPrYVb1X6ymVuKMCXG2o2k/xYHFQ33jSfLJTcHSpt02qCSE4V0KXwX\npcUe2Qrdwpd/68eg9y9rhGai8A6TjwfdOnEzZ29bG64rdUmUD37FJlYNdc+pe74V\nLtGX/+xWU/l04JyYzNBPwBrNy7HZEc8pOnhbsQLjOuTTVB/HbjqS0D3o8oPzA+fV\nxP+yGxi0wdHYwGXiUnSyTuna4Bj9Kd3eVsDhsA8yORMIvs3JLFqUUccQ1ru76G4X\nTvyghoPmywc4NRS3BWAQQR+h35+ha5QvSa8OmzYoiFmIYr3wmt0TxSP2vMVAgh7O\n77zGFhhhauL8PQKCAQEA7w7Y89dhpzsdPJ/jjZl+iXO3ZI4VCd7VLkQW5+vWXTFT\nHHJtH9LXJILCDwRT72jSgNgAmq6lQ7XLkVzLKDZGgrJvtlNuEVmWRd+FwbjzJ/jQ\nXJf0027IbZsvtikKfZoYZW69nvQWtQ5aGd+xGIzgqRz5FAHnhI4q9iIRbqCQNigt\nuHBLOJjsVl5w93vHpH6/RFfX1n7ZtpaiAfKmIdsF5YKIs/cIQhO2OdgUkw1ah9LM\nRoUFT1kUbPI6qi4W1bppS0J+CVfgXAK8PtRUn5/6VqezbpRPbhHcqDESBVB607ja\nzFpWHf3TTSPcLg+UIYMXbdarBeoFP/CZaJbyXwIpKQKCAQEAn4+fSBtn0urxxp1J\nyDwfpLhdVgcq0oB2uq2+neg/4SJhJzaB940VycqdoO/RHfQayFGjnn1a9qWzWJ8G\nW8UJBkPA6fzz5HAYSDxLyeCpZECH/Sstv+k4h42r8V2hmEAu80zIaHaTX4gGAVUo\nmhNMYGD6QyJuHYuh8yq7+StSz8/Ik8q9yjGdX9qLF4N3WihATSkkWNVcsQj3HUdI\noQq7xAX+9DMoP+ncL9VAV7d2MQ4jhwq0j5vEZsLyZFkRYD1i2buelMJhxveWV5n9\n7WZeJBDM1d57XfgndVPBTfhj0mdMUrjNRw2jwkoaqw5NnLG4nkzqqscv8kM60SvD\nVMKvRQKCAQEA0PQlZl3omYfuMkN/XxG/rN1ce6RFd28y31Hcw7M8mBC5GLBb+ekM\n7HjurrmVtDnnZX9oZ8wn4FtTKCf325o1X6AgTTn3h2rLEyAhhgbnYxT06zpXYUgA\nIO34cjzFUqwSjvaRABNSlceJsfv4jAD3jloozPgtKYwquSFmI1BtPSk5bXGaDkp8\nqbG7BFdJVdsDy/UMUAxouFRKH3G9DPKo4MeMPeG7ciZQrZbVxQNzEi2LKEi1L3op\nhGDmLkJC62YZCxN/nyMUlNg/OpvVrADljEDhcdJo60jpmonpuoNyGQYHGYAMrgJj\nY5XoqsorLG+tVvDAZFb9Z7oiHW1zROBaoQKCAQA9DiUHE1/6+VFod7zAhxvsOuOe\nN+2BcXnOiB+Pc4BS/Zlv93Fp3PnEQ7qKZOyGrJG7rXd6IEsbc/p8TTuEhP7hKMcK\na7/oExMMGTlCtQzp3Ty3FNIBnzwMr03j9HBJqeJyCxLeSlTCD84S+Y6tBD95DPT8\nyjGhRnPX7PTC8reH1+gbf75d1a1PSWlv5aixBRfqZSvq7cH8OoMKbGboyYkWzqmy\n5CXhg2sy7IIyZgM3PWdyXmC3gdwbYo2vsSaFVJ2NKQn1ZyEr6qliAVEHFX3603UV\nAR6uyujm2WZ6jKBYAx1F8i4IDF8GktUQgBjkT3xh9mRCQ53fbl1gChVTCDBD\n-----END RSA PRIVATE KEY-----\n"} 2026-02-19T11:22:49.418 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout SSL certificate updated 2026-02-19T11:22:49.649 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2026-02-19T11:22:49.650 INFO:teuthology.orchestra.run.trial010.stdout:Creating initial admin user... 2026-02-19T11:22:49.672 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:49 trial010 ceph-mon[21676]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:49.673 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:49 trial010 ceph-mon[21676]: mgrmap e12: a(active, since 2s) 2026-02-19T11:22:49.673 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:49 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:50.079 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$nbR//NN.NsmjgnBZfzW3quplnmamwD1Wm67kvbMDyzsQOU6lAEK22", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1771500170, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2026-02-19T11:22:50.079 INFO:teuthology.orchestra.run.trial010.stdout:Fetching dashboard port number... 2026-02-19T11:22:50.297 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stdout 8443 2026-02-19T11:22:50.306 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 1 from systemctl is-enabled firewalld.service 2026-02-19T11:22:50.306 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout disabled 2026-02-19T11:22:50.312 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active firewalld.service 2026-02-19T11:22:50.312 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:50.312 INFO:teuthology.orchestra.run.trial010.stdout:firewalld.service is not enabled 2026-02-19T11:22:50.312 INFO:teuthology.orchestra.run.trial010.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2026-02-19T11:22:50.313 INFO:teuthology.orchestra.run.trial010.stdout:Ceph Dashboard is now available at: 2026-02-19T11:22:50.313 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.313 INFO:teuthology.orchestra.run.trial010.stdout: URL: https://trial010:8443/ 2026-02-19T11:22:50.313 INFO:teuthology.orchestra.run.trial010.stdout: User: admin 2026-02-19T11:22:50.313 INFO:teuthology.orchestra.run.trial010.stdout: Password: mvush45u7m 2026-02-19T11:22:50.314 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.314 INFO:teuthology.orchestra.run.trial010.stdout:Saving cluster configuration to /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config directory 2026-02-19T11:22:50.593 INFO:teuthology.orchestra.run.trial010.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2026-02-19T11:22:50.593 INFO:teuthology.orchestra.run.trial010.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2026-02-19T11:22:50.593 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout:Or, if you are only running a single cluster on this host: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout:Please consider enabling telemetry to help improve Ceph: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: ceph telemetry on 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.594 INFO:teuthology.orchestra.run.trial010.stdout:For more information see: 2026-02-19T11:22:50.595 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.595 INFO:teuthology.orchestra.run.trial010.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2026-02-19T11:22:50.595 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:50.595 INFO:teuthology.orchestra.run.trial010.stdout:Bootstrap complete. 2026-02-19T11:22:50.601 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout static 2026-02-19T11:22:50.608 INFO:teuthology.orchestra.run.trial010.stdout:Non-zero exit code 3 from systemctl is-active logrotate 2026-02-19T11:22:50.608 INFO:teuthology.orchestra.run.trial010.stdout:systemctl: stdout inactive 2026-02-19T11:22:50.608 INFO:teuthology.orchestra.run.trial010.stdout:Enabling the logrotate.timer service to perform daily log rotation. 2026-02-19T11:22:50.757 INFO:tasks.cephadm:Fetching config... 2026-02-19T11:22:50.757 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:50.757 DEBUG:teuthology.orchestra.run.trial010:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2026-02-19T11:22:50.774 INFO:tasks.cephadm:Fetching client.admin keyring... 2026-02-19T11:22:50.774 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:50.774 DEBUG:teuthology.orchestra.run.trial010:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2026-02-19T11:22:50.830 INFO:tasks.cephadm:Fetching mon keyring... 2026-02-19T11:22:50.830 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:50.830 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/keyring of=/dev/stdout 2026-02-19T11:22:50.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:50 trial010 ceph-mon[21676]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:50.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:50 trial010 ceph-mon[21676]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:50.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:50 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:50.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:50 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:50.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:50 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/4102511660' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-19T11:22:50.882 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:50 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3472408460' entity='client.admin' 2026-02-19T11:22:50.895 INFO:tasks.cephadm:Fetching pub ssh key... 2026-02-19T11:22:50.896 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:22:50.896 DEBUG:teuthology.orchestra.run.trial010:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2026-02-19T11:22:50.953 INFO:tasks.cephadm:Installing pub ssh key for root users... 2026-02-19T11:22:50.953 DEBUG:teuthology.orchestra.run.trial010:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-19T11:22:51.027 INFO:teuthology.orchestra.run.trial010.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:51.037 DEBUG:teuthology.orchestra.run.trial132:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-19T11:22:51.074 INFO:teuthology.orchestra.run.trial132.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:51.084 DEBUG:teuthology.orchestra.run.trial186:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2026-02-19T11:22:51.119 INFO:teuthology.orchestra.run.trial186.stdout:ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH/ei0hjMJFCjP4wYPBEjUGLz4VdOY1a/lngN2Q6xLbp ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:22:51.129 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2026-02-19T11:22:51.244 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:51.501 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2026-02-19T11:22:51.501 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch client-keyring set client.admin '*' --mode 0755 2026-02-19T11:22:51.619 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:51.734 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:51 trial010 ceph-mon[21676]: 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-19T11:22:51.734 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:51 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3539070877' entity='client.admin' 2026-02-19T11:22:51.884 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial132 2026-02-19T11:22:51.884 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:22:51.884 DEBUG:teuthology.orchestra.run.trial132:> dd of=/etc/ceph/ceph.conf 2026-02-19T11:22:51.902 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:22:51.902 DEBUG:teuthology.orchestra.run.trial132:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:51.958 INFO:tasks.cephadm:Adding host trial132 to orchestrator... 2026-02-19T11:22:51.959 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch host add trial132 2026-02-19T11:22:52.080 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial132", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial010", "name": "osd_memory_target"} : dispatch 2026-02-19T11:22:53.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:22:53.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:22:53.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:22:53.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:22:53.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: Deploying cephadm binary to trial132 2026-02-19T11:22:53.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:52 trial010 ceph-mon[21676]: Updating trial010:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:53.858 INFO:teuthology.orchestra.run.trial010.stdout:Added host 'trial132' with addr '10.20.193.132' 2026-02-19T11:22:53.898 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-19T11:22:54.012 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:54.128 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: mgrmap e13: a(active, since 6s) 2026-02-19T11:22:54.129 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:22:54.129 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:54.129 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:54.129 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:54.129 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: Certificate for "cephadm-signed_agent_cert (trial010)" is still valid for 1824 days. 2026-02-19T11:22:54.129 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:54.130 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:22:54.130 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:22:54.130 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:54.231 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:54.232 INFO:teuthology.orchestra.run.trial010.stdout:[{"addr": "10.20.193.10", "hostname": "trial010", "labels": [], "status": ""}, {"addr": "10.20.193.132", "hostname": "trial132", "labels": [], "status": ""}] 2026-02-19T11:22:54.269 INFO:tasks.cephadm:Writing (initial) conf and keyring to trial186 2026-02-19T11:22:54.269 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:22:54.269 DEBUG:teuthology.orchestra.run.trial186:> dd of=/etc/ceph/ceph.conf 2026-02-19T11:22:54.287 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:22:54.288 DEBUG:teuthology.orchestra.run.trial186:> dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:54.344 INFO:tasks.cephadm:Adding host trial186 to orchestrator... 2026-02-19T11:22:54.345 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch host add trial186 2026-02-19T11:22:54.462 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:55.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:55.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: Added host trial132 2026-02-19T11:22:55.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:55.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:55.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:55.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:22:55.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:54 trial010 ceph-mon[21676]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:56.194 INFO:teuthology.orchestra.run.trial010.stdout:Added host 'trial186' with addr '10.20.193.186' 2026-02-19T11:22:56.257 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch host ls --format=json 2026-02-19T11:22:56.381 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:56.403 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:56 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:56.403 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:56 trial010 ceph-mon[21676]: Deploying cephadm binary to trial186 2026-02-19T11:22:56.600 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:22:56.600 INFO:teuthology.orchestra.run.trial010.stdout:[{"addr": "10.20.193.10", "hostname": "trial010", "labels": [], "status": ""}, {"addr": "10.20.193.132", "hostname": "trial132", "labels": [], "status": ""}, {"addr": "10.20.193.186", "hostname": "trial186", "labels": [], "status": ""}] 2026-02-19T11:22:56.638 INFO:tasks.cephadm:Setting crush tunables to default 2026-02-19T11:22:56.638 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd crush tunables default 2026-02-19T11:22:56.753 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:22:57.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial132", "name": "osd_memory_target"} : dispatch 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: Added host trial186 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:22:57.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: Updating trial132:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3589459544' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-19T11:22:57.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:57 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:57.859 INFO:teuthology.orchestra.run.trial010.stderr:adjusted tunables profile to default 2026-02-19T11:22:57.901 INFO:tasks.cephadm:Adding mon.a on trial010 2026-02-19T11:22:57.901 INFO:tasks.cephadm:Adding mon.b on trial132 2026-02-19T11:22:57.901 INFO:tasks.cephadm:Adding mon.c on trial186 2026-02-19T11:22:57.901 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch apply mon '3;trial010:10.20.193.10=a;trial132:10.20.193.132=b;trial186:10.20.193.186=c' 2026-02-19T11:22:58.020 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-19T11:22:58.020 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-19T11:22:58.251 INFO:teuthology.orchestra.run.trial186.stdout:Scheduled mon update... 2026-02-19T11:22:58.287 DEBUG:teuthology.orchestra.run.trial132:mon.b> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.b.service 2026-02-19T11:22:58.290 DEBUG:teuthology.orchestra.run.trial186:mon.c> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.c.service 2026-02-19T11:22:58.292 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-19T11:22:58.292 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph mon dump -f json 2026-02-19T11:22:58.449 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-19T11:22:58.449 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /etc/ceph/ceph.conf 2026-02-19T11:22:58.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:58 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:58.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:58 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3589459544' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-19T11:22:58.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:58 trial010 ceph-mon[21676]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:22:58.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:58 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:58.803 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:22:58.803 INFO:teuthology.orchestra.run.trial186.stdout:{"epoch":1,"fsid":"3d5d7969-0d85-11f1-8034-d404e6e7d460","modified":"2026-02-19T11:22:25.936658Z","created":"2026-02-19T11:22:25.936658Z","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.10:3300","nonce":0},{"type":"v1","addr":"10.20.193.10:6789","nonce":0}]},"addr":"10.20.193.10:6789/0","public_addr":"10.20.193.10:6789/0","priority":0,"weight":0,"time_added":"2026-02-19T11:22:25:936671+0000","crush_location":[]}],"quorum":[0]} 2026-02-19T11:22:58.803 INFO:teuthology.orchestra.run.trial186.stderr:dumped monmap epoch 1 2026-02-19T11:22:59.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;trial010:10.20.193.10=a;trial132:10.20.193.132=b;trial186:10.20.193.186=c", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:22:59.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: Saving service mon spec with placement trial010:10.20.193.10=a;trial132:10.20.193.132=b;trial186:10.20.193.186=c;count:3 2026-02-19T11:22:59.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial186", "name": "osd_memory_target"} : dispatch 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: Updating trial186:/etc/ceph/ceph.conf 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: Updating trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: Updating trial186:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='client.? 10.20.193.186:0/2423682772' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:22:59.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:22:59.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:22:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:22:59.841 INFO:tasks.cephadm:Waiting for 3 mons in monmap... 2026-02-19T11:22:59.842 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph mon dump -f json 2026-02-19T11:23:00.082 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.c/config 2026-02-19T11:23:00.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 podman[24926]: 2026-02-19 11:23:00.056748688 +0000 UTC m=+0.016282064 container create 453ccbc33deafe51b9225dbf29144f84044aaa2409a1ce4ae923071bbb72602d (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-c, org.label-schema.build-date=20260216, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-19T11:23:00.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 podman[24926]: 2026-02-19 11:23:00.093285669 +0000 UTC m=+0.052818975 container init 453ccbc33deafe51b9225dbf29144f84044aaa2409a1ce4ae923071bbb72602d (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-c, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, ceph=True, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, OSD_FLAVOR=default, io.buildah.version=1.41.3, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 podman[24926]: 2026-02-19 11:23:00.095861824 +0000 UTC m=+0.055395130 container start 453ccbc33deafe51b9225dbf29144f84044aaa2409a1ce4ae923071bbb72602d (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-c, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, OSD_FLAVOR=default) 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 bash[24926]: 453ccbc33deafe51b9225dbf29144f84044aaa2409a1ce4ae923071bbb72602d 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 podman[24926]: 2026-02-19 11:23:00.050532349 +0000 UTC m=+0.010065665 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 systemd[1]: Started Ceph mon.c for 3d5d7969-0d85-11f1-8034-d404e6e7d460. 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: set uid:gid to 167:167 (ceph:ceph) 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: ceph version 20.3.0-5314-g941b42ca (941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) tentacle (dev - RelWithDebInfo), process ceph-mon, pid 2 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: pidfile_write: ignore empty --pid-file 2026-02-19T11:23:00.598 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: load: jerasure load: lrc 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: RocksDB version: 7.9.2 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Git sha 0 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Compile date 2026-02-18 14:05:58 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: DB SUMMARY 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: DB Session ID: UJ0RGZJWIQ1BVTWRZ8WW 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: CURRENT file: CURRENT 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: IDENTITY file: IDENTITY 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: SST files in /var/lib/ceph/mon/ceph-c/store.db dir, Total Num: 0, files: 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-c/store.db: 000004.log size: 519 ; 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.error_if_exists: 0 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.create_if_missing: 0 2026-02-19T11:23:00.599 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.paranoid_checks: 1 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.flush_verify_memtable_count: 1 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.track_and_verify_wals_in_manifest: 0 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.env: 0xed5c80 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.fs: PosixFileSystem 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.info_log: 0x3530e80 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_file_opening_threads: 16 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.statistics: (nil) 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.use_fsync: 0 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_log_file_size: 0 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_manifest_file_size: 1073741824 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.log_file_time_to_roll: 0 2026-02-19T11:23:00.600 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.keep_log_file_num: 1000 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.recycle_log_file_num: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.allow_fallocate: 1 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.allow_mmap_reads: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.allow_mmap_writes: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.use_direct_reads: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.create_missing_column_families: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.db_log_dir: 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.wal_dir: 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.table_cache_numshardbits: 6 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.WAL_ttl_seconds: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.WAL_size_limit_MB: 0 2026-02-19T11:23:00.601 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.manifest_preallocation_size: 4194304 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.is_fd_close_on_exec: 1 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.advise_random_on_open: 1 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.db_write_buffer_size: 0 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.write_buffer_manager: 0x352c140 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.access_hint_on_compaction_start: 1 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.random_access_max_buffer_size: 1048576 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.use_adaptive_mutex: 0 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.rate_limiter: (nil) 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.wal_recovery_mode: 2 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.enable_thread_tracking: 0 2026-02-19T11:23:00.602 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.enable_pipelined_write: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.unordered_write: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.allow_concurrent_memtable_write: 1 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.enable_write_thread_adaptive_yield: 1 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.write_thread_max_yield_usec: 100 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.write_thread_slow_yield_usec: 3 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.row_cache: None 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.wal_filter: None 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.avoid_flush_during_recovery: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.allow_ingest_behind: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.two_write_queues: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.manual_wal_flush: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.wal_compression: 0 2026-02-19T11:23:00.603 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.atomic_flush: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.avoid_unnecessary_blocking_io: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.persist_stats_to_disk: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.write_dbid_to_manifest: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.log_readahead_size: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.file_checksum_gen_factory: Unknown 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.best_efforts_recovery: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bgerror_resume_count: 2147483647 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bgerror_resume_retry_interval: 1000000 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.allow_data_in_errors: 0 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.db_host_id: __hostname__ 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.enforce_single_del_contracts: true 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_background_jobs: 2 2026-02-19T11:23:00.604 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_background_compactions: -1 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_subcompactions: 1 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.avoid_flush_during_shutdown: 0 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.writable_file_max_buffer_size: 1048576 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.delayed_write_rate : 16777216 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_total_wal_size: 0 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.stats_dump_period_sec: 600 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.stats_persist_period_sec: 600 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.stats_history_buffer_size: 1048576 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_open_files: -1 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bytes_per_sync: 0 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.wal_bytes_per_sync: 0 2026-02-19T11:23:00.605 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.strict_bytes_per_sync: 0 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_readahead_size: 0 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_background_flushes: -1 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Compression algorithms supported: 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kZSTD supported: 0 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kXpressCompression supported: 0 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kBZip2Compression supported: 0 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kZSTDNotFinalCompression supported: 0 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kLZ4Compression supported: 1 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kZlibCompression supported: 1 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kLZ4HCCompression supported: 1 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: kSnappyCompression supported: 1 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Fast CRC32 supported: Supported on x86 2026-02-19T11:23:00.606 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: DMutex implementation: pthread_mutex_t 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.comparator: leveldb.BytewiseComparator 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.merge_operator: 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_filter: None 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_filter_factory: None 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.sst_partitioner_factory: None 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.memtable_factory: SkipListFactory 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.table_factory: BlockBasedTable 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x35315c0) 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout: cache_index_and_filter_blocks: 1 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout: cache_index_and_filter_blocks_with_high_priority: 0 2026-02-19T11:23:00.607 INFO:journalctl@ceph.mon.c.trial186.stdout: pin_l0_filter_and_index_blocks_in_cache: 0 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: pin_top_level_index_and_filter: 1 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: index_type: 0 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: data_block_index_type: 0 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: index_shortening: 1 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: data_block_hash_table_util_ratio: 0.750000 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: checksum: 4 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: no_block_cache: 0 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: block_cache: 0x34ffa50 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: block_cache_name: BinnedLRUCache 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: block_cache_options: 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: capacity : 536870912 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: num_shard_bits : 4 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: strict_capacity_limit : 0 2026-02-19T11:23:00.608 INFO:journalctl@ceph.mon.c.trial186.stdout: high_pri_pool_ratio: 0.000 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: block_cache_compressed: (nil) 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: persistent_cache: (nil) 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: block_size: 4096 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: block_size_deviation: 10 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: block_restart_interval: 16 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: index_block_restart_interval: 1 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: metadata_block_size: 4096 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: partition_filters: 0 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: use_delta_encoding: 1 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: filter_policy: bloomfilter 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: whole_key_filtering: 1 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: verify_compression: 0 2026-02-19T11:23:00.609 INFO:journalctl@ceph.mon.c.trial186.stdout: read_amp_bytes_per_bit: 0 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: format_version: 5 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: enable_index_compression: 1 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: block_align: 0 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: max_auto_readahead_size: 262144 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: prepopulate_block_cache: 0 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: initial_auto_readahead_size: 8192 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout: num_file_reads_for_auto_readahead: 2 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.write_buffer_size: 33554432 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_write_buffer_number: 2 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression: NoCompression 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression: Disabled 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.prefix_extractor: nullptr 2026-02-19T11:23:00.610 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.num_levels: 7 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.min_write_buffer_number_to_merge: 1 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_write_buffer_number_to_maintain: 0 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_write_buffer_size_to_maintain: 0 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.window_bits: -14 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.level: 32767 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.strategy: 0 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.enabled: false 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2026-02-19T11:23:00.611 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.window_bits: -14 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.level: 32767 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.strategy: 0 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.max_dict_bytes: 0 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.parallel_threads: 1 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.enabled: false 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.level0_file_num_compaction_trigger: 4 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.level0_slowdown_writes_trigger: 20 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.level0_stop_writes_trigger: 36 2026-02-19T11:23:00.612 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.target_file_size_base: 67108864 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.target_file_size_multiplier: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_base: 268435456 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_sequential_skip_in_iterations: 8 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_compaction_bytes: 1677721600 2026-02-19T11:23:00.613 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.arena_block_size: 1048576 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.disable_auto_compactions: 0 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_style: kCompactionStyleLevel 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_pri: kMinOverlappingRatio 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_universal.size_ratio: 1 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_universal.min_merge_width: 2 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2026-02-19T11:23:00.614 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.inplace_update_support: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.inplace_update_num_locks: 10000 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.memtable_whole_key_filtering: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.memtable_huge_page_size: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.bloom_locality: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.max_successive_merges: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.optimize_filters_for_hits: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.paranoid_file_checks: 0 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.force_consistency_checks: 1 2026-02-19T11:23:00.615 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.report_bg_io_stats: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.ttl: 2592000 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.periodic_compaction_seconds: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.preclude_last_level_data_seconds: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.preserve_internal_time_seconds: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.enable_blob_files: false 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.min_blob_size: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.blob_file_size: 268435456 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.blob_compression_type: NoCompression 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.enable_blob_garbage_collection: false 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.blob_compaction_readahead_size: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.blob_file_starting_level: 0 2026-02-19T11:23:00.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: Options.experimental_mempurge_threshold: 0.000000 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-c/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: ce441854-07e1-4d54-b41a-218c4e03d657 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771500180112741, "job": 1, "event": "recovery_started", "wal_files": [4]} 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771500180113089, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1655, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 531, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 409, "raw_average_value_size": 81, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1771500180, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "ce441854-07e1-4d54-b41a-218c4e03d657", "db_session_id": "UJ0RGZJWIQ1BVTWRZ8WW", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: EVENT_LOG_v1 {"time_micros": 1771500180113157, "job": 1, "event": "recovery_finished"} 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/version_set.cc:5047] Creating manifest 10 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-c/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x354ce00 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: DB pointer 0x433e000 2026-02-19T11:23:00.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: rocksdb: [db/db_impl/db_impl.cc:1111] 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: ** DB Stats ** 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: ** Compaction Stats [default] ** 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-19T11:23:00.618 INFO:journalctl@ceph.mon.c.trial186.stdout: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: L0 1/0 1.62 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: Sum 1/0 1.62 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: ** Compaction Stats [default] ** 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 4.7 0.00 0.00 1 0.000 0 0 0.0 0.0 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: 2026-02-19T11:23:00.619 INFO:journalctl@ceph.mon.c.trial186.stdout: Uptime(secs): 0.0 total, 0.0 interval 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: Flush(GB): cumulative 0.000, interval 0.000 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: AddFile(GB): cumulative 0.000, interval 0.000 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: AddFile(Total Files): cumulative 0, interval 0 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: AddFile(L0 Files): cumulative 0, interval 0 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: AddFile(Keys): cumulative 0, interval 0 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: Cumulative compaction: 0.00 GB write, 0.71 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: Interval compaction: 0.00 GB write, 0.71 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: Block cache BinnedLRUCache@0x34ffa50#2 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: 2026-02-19T11:23:00.620 INFO:journalctl@ceph.mon.c.trial186.stdout: ** File Read Latency Histogram By Level [default] ** 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c does not exist in monmap, will attempt to join an existing cluster 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: using public_addr v2:10.20.193.186:0/0 -> [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: starting mon.c rank -1 at public addrs [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] at bind addrs [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] mon_data /var/lib/ceph/mon/ceph-c fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(???) e0 preinit fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).mds e1 new map 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).mds e1 print_map 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: e1 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: btime 2026-02-19T11:22:26:918583+0000 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: enable_multiple, ever_enabled_multiple: 1,1 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: legacy client fscid: -1 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: 2026-02-19T11:23:00.621 INFO:journalctl@ceph.mon.c.trial186.stdout: No filesystems configured 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e4 crush map has features 3314932999778484224, adjusting msgr requires 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).osd e4 crush map has features 288514050185494528, adjusting msgr requires 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mkfs 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-19T11:23:00.622 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.a is new leader, mons a in quorum (ranks 0) 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: monmap epoch 1 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: last_changed 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: min_mon_release 20 (tentacle) 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: election_strategy: 1 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: fsmap 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: osdmap e1: 0 total, 0 up, 0 in 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e1: no daemons active 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3766668003' entity='client.admin' 2026-02-19T11:23:00.623 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1701441437' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3432799053' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Activating manager daemon a 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e2: a(active, starting, since 0.00230533s) 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Manager daemon a is now available 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' 2026-02-19T11:23:00.624 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14100 10.20.193.10:0/920264354' entity='mgr.a' 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e3: a(active, since 1.0056s) 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3465333682' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e4: a(active, since 2s) 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2584684292' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2584684292' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1656225422' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1656225422' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e5: a(active, since 3s) 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1223614212' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Active manager daemon a restarted 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Activating manager daemon a 2026-02-19T11:23:00.625 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: osdmap e2: 0 total, 0 up, 0 in 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e6: a(active, starting, since 0.00258183s) 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Manager daemon a is now available 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Found migration_current of "None". Setting to last migration. 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.626 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:37] ENGINE Bus STARTING 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:37] ENGINE Serving on https://10.20.193.10:7150 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:37] ENGINE Client ('10.20.193.10', 56498) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:37] ENGINE Serving on http://10.20.193.10:8765 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:37] ENGINE Bus STARTED 2026-02-19T11:23:00.627 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e7: a(active, since 1.00419s) 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/67603786' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/67603786' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e8: a(active, since 2s) 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.628 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Generating ssh key... 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial010", "addr": "10.20.193.10", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Deploying cephadm binary to trial010 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Added host trial010 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Saving service mon spec with placement count:5 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.629 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2625523803' entity='client.admin' 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2330644605' entity='client.admin' 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3405232781' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "unmanaged": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Saving service mgr spec with placement count:2 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14118 10.20.193.10:0/3483670139' entity='mgr.a' 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3405232781' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e9: a(active, since 6s) 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/150076616' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Active manager daemon a restarted 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Activating manager daemon a 2026-02-19T11:23:00.630 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: osdmap e3: 0 total, 0 up, 0 in 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e10: a(active, starting, since 0.00262738s) 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "a", "id": "a"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mds metadata"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Manager daemon a is now available 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/mirror_snapshot_schedule"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/a/trash_purge_schedule"} : dispatch 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e11: a(active, since 1.0047s) 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:46] ENGINE Bus STARTING 2026-02-19T11:23:00.631 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:46] ENGINE Serving on http://10.20.193.10:8765 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:47] ENGINE Serving on https://10.20.193.10:7150 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:47] ENGINE Bus STARTED 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: [19/Feb/2026:11:22:47] ENGINE Client ('10.20.193.10', 40818) lost — peer dropped the TLS connection suddenly, during handshake: (6, 'TLS/SSL connection has been closed (EOF) (_ssl.c:1147)') 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14156 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14164 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e12: a(active, since 2s) 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14168 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.632 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/4102511660' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3472408460' entity='client.admin' 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: 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-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3539070877' entity='client.admin' 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14180 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial132", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial010", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:00.633 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Deploying cephadm binary to trial132 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial010:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mgrmap e13: a(active, since 6s) 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Certificate for "cephadm-signed_agent_cert (trial010)" is still valid for 1824 days. 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Added host trial132 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.634 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14182 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14184 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Deploying cephadm binary to trial186 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial132", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:23:00.635 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Added host trial186 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial132:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3589459544' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3589459544' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:23:00.636 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.14190 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "3;trial010:10.20.193.10=a;trial132:10.20.193.132=b;trial186:10.20.193.186=c", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Saving service mon spec with placement trial010:10.20.193.10=a;trial132:10.20.193.132=b;trial186:10.20.193.186=c;count:3 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd/host:trial186", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial186:/etc/ceph/ceph.conf 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: Updating trial186:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='client.? 10.20.193.186:0/2423682772' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:00.637 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:00.638 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:00.638 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:00 trial186 ceph-mon[24984]: mon.c@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-02-19T11:23:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: mon.a calling monitor election 2026-02-19T11:23:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: mon.c calling monitor election 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: monmap epoch 2 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: last_changed 2026-02-19T11:23:00.131499+0000 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: min_mon_release 20 (tentacle) 2026-02-19T11:23:05.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: election_strategy: 1 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: 1: [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] mon.c 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: fsmap 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: mgrmap e13: a(active, since 18s) 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: overall HEALTH_OK 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:05.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:05.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:05.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: mon.a calling monitor election 2026-02-19T11:23:05.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: mon.c calling monitor election 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: mon.a is new leader, mons a,c in quorum (ranks 0,1) 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: monmap epoch 2 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: last_changed 2026-02-19T11:23:00.131499+0000 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: min_mon_release 20 (tentacle) 2026-02-19T11:23:05.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: election_strategy: 1 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: 1: [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] mon.c 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: fsmap 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: mgrmap e13: a(active, since 18s) 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: overall HEALTH_OK 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:05.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:06.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:06 trial132 ceph-mon[25485]: mon.b@-1(synchronizing).paxosservice(auth 1..3) refresh upgraded, format 0 -> 3 2026-02-19T11:23:06.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:06 trial010 ceph-mon[21676]: Deploying daemon mon.b on trial132 2026-02-19T11:23:06.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:06 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:06.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:06 trial186 ceph-mon[24984]: Deploying daemon mon.b on trial132 2026-02-19T11:23:06.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:06 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:11.351 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:23:11.352 INFO:teuthology.orchestra.run.trial186.stdout:{"epoch":3,"fsid":"3d5d7969-0d85-11f1-8034-d404e6e7d460","modified":"2026-02-19T11:23:06.338416Z","created":"2026-02-19T11:22:25.936658Z","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.10:3300","nonce":0},{"type":"v1","addr":"10.20.193.10:6789","nonce":0}]},"addr":"10.20.193.10:6789/0","public_addr":"10.20.193.10:6789/0","priority":0,"weight":0,"time_added":"2026-02-19T11:22:25:936671+0000","crush_location":[]},{"rank":1,"name":"c","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:3300","nonce":0},{"type":"v1","addr":"10.20.193.186:6789","nonce":0}]},"addr":"10.20.193.186:6789/0","public_addr":"10.20.193.186:6789/0","priority":0,"weight":0,"time_added":"2026-02-19T11:23:00:131497+0000","crush_location":[]},{"rank":2,"name":"b","public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:3300","nonce":0},{"type":"v1","addr":"10.20.193.132:6789","nonce":0}]},"addr":"10.20.193.132:6789/0","public_addr":"10.20.193.132:6789/0","priority":0,"weight":0,"time_added":"2026-02-19T11:23:06:338414+0000","crush_location":[]}],"quorum":[0,1,2]} 2026-02-19T11:23:11.352 INFO:teuthology.orchestra.run.trial186.stderr:dumped monmap epoch 3 2026-02-19T11:23:11.390 INFO:tasks.cephadm:Generating final ceph.conf file... 2026-02-19T11:23:11.390 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph config generate-minimal-conf 2026-02-19T11:23:11.506 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:23:11.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:11.616 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:11.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: mon.a calling monitor election 2026-02-19T11:23:11.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: mon.c calling monitor election 2026-02-19T11:23:11.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='client.? 10.20.193.186:0/3018944451' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-19T11:23:11.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: mon.b calling monitor election 2026-02-19T11:23:11.617 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.618 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.619 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-19T11:23:11.619 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: monmap epoch 3 2026-02-19T11:23:11.619 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:11.619 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: last_changed 2026-02-19T11:23:06.338416+0000 2026-02-19T11:23:11.619 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:11.619 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: min_mon_release 20 (tentacle) 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: election_strategy: 1 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: 1: [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] mon.c 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: 2: [v2:10.20.193.132:3300/0,v1:10.20.193.132:6789/0] mon.b 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: fsmap 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:23:11.620 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: mgrmap e13: a(active, since 24s) 2026-02-19T11:23:11.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: overall HEALTH_OK 2026-02-19T11:23:11.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.621 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: mon.a calling monitor election 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: mon.c calling monitor election 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='client.? 10.20.193.186:0/3018944451' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-19T11:23:11.656 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: mon.b calling monitor election 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: monmap epoch 3 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:11.657 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: last_changed 2026-02-19T11:23:06.338416+0000 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: min_mon_release 20 (tentacle) 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: election_strategy: 1 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: 1: [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] mon.c 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: 2: [v2:10.20.193.132:3300/0,v1:10.20.193.132:6789/0] mon.b 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: fsmap 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: mgrmap e13: a(active, since 24s) 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: overall HEALTH_OK 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.658 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.659 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.721 INFO:teuthology.orchestra.run.trial010.stdout:# minimal ceph.conf for 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:11.721 INFO:teuthology.orchestra.run.trial010.stdout:[global] 2026-02-19T11:23:11.721 INFO:teuthology.orchestra.run.trial010.stdout: fsid = 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:11.722 INFO:teuthology.orchestra.run.trial010.stdout: mon_host = [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] [v2:10.20.193.132:3300/0,v1:10.20.193.132:6789/0] [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: mon.a calling monitor election 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: mon.c calling monitor election 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='client.? 10.20.193.186:0/3018944451' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2026-02-19T11:23:11.722 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: mon.b calling monitor election 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: mon.a is new leader, mons a,c,b in quorum (ranks 0,1,2) 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: monmap epoch 3 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:23:11.723 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: last_changed 2026-02-19T11:23:06.338416+0000 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: min_mon_release 20 (tentacle) 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: election_strategy: 1 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: 1: [v2:10.20.193.186:3300/0,v1:10.20.193.186:6789/0] mon.c 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: 2: [v2:10.20.193.132:3300/0,v1:10.20.193.132:6789/0] mon.b 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: fsmap 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: osdmap e4: 0 total, 0 up, 0 in 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: mgrmap e13: a(active, since 24s) 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: overall HEALTH_OK 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.724 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.725 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.725 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:11.759 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2026-02-19T11:23:11.760 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:23:11.760 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/etc/ceph/ceph.conf 2026-02-19T11:23:11.787 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:23:11.787 DEBUG:teuthology.orchestra.run.trial010:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:23:11.854 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:23:11.854 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/etc/ceph/ceph.conf 2026-02-19T11:23:11.880 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:23:11.880 DEBUG:teuthology.orchestra.run.trial132:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:23:11.945 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:23:11.945 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/etc/ceph/ceph.conf 2026-02-19T11:23:11.972 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:23:11.972 DEBUG:teuthology.orchestra.run.trial186:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:23:12.038 INFO:tasks.cephadm:Adding mgr.a on trial010 2026-02-19T11:23:12.038 INFO:tasks.cephadm:Adding mgr.b on trial132 2026-02-19T11:23:12.038 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch apply mgr '2;trial010=a;trial132=b' 2026-02-19T11:23:12.193 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.c/config 2026-02-19T11:23:12.416 INFO:teuthology.orchestra.run.trial186.stdout:Scheduled mgr update... 2026-02-19T11:23:12.452 DEBUG:teuthology.orchestra.run.trial132:mgr.b> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.b.service 2026-02-19T11:23:12.454 DEBUG:tasks.cephadm:set 0 configs 2026-02-19T11:23:12.455 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph config dump 2026-02-19T11:23:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2777959336' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: Updating trial186:/etc/ceph/ceph.conf 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:12.543 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.544 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:12 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:12.571 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:23:12.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:12.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2777959336' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: Updating trial186:/etc/ceph/ceph.conf 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.596 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.597 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:12 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:12.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:12.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2777959336' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: Updating trial186:/etc/ceph/ceph.conf 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:12.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:12.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:12 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:12.778 INFO:teuthology.orchestra.run.trial010.stdout:WHO MASK LEVEL OPTION VALUE RO 2026-02-19T11:23:12.778 INFO:teuthology.orchestra.run.trial010.stdout:global dev auth_debug true 2026-02-19T11:23:12.778 INFO:teuthology.orchestra.run.trial010.stdout:global basic container_image quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef * 2026-02-19T11:23:12.778 INFO:teuthology.orchestra.run.trial010.stdout:global dev debug_asserts_on_shutdown true 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global basic log_to_file true 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global basic log_to_journald false 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global basic log_to_stderr false 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_allow_pool_delete true 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_clock_drift_allowed 1.000000 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_cluster_log_to_file true 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_election_default_strategy 1 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_max_pg_per_osd 10000 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_pg_warn_max_object_skew 0.000000 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_warn_on_crush_straw_calc_version_zero false 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_warn_on_legacy_crush_tunables false 2026-02-19T11:23:12.779 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_warn_on_osd_down_out_interval_zero false 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:global dev mon_warn_on_pool_pg_num_not_power_of_two false 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:global advanced mon_warn_on_too_few_osds false 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:global dev ms_die_on_bug true 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:global dev ms_die_on_old_message true 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.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-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:global advanced osd_pool_default_pg_autoscale_mode off 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:global advanced public_network 10.20.192.0/20 * 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced auth_allow_insecure_global_id_reclaim false 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced auth_mon_ticket_ttl 660.000000 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced auth_service_ticket_ttl 240.000000 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced debug_mon 20/20 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced debug_ms 1/1 2026-02-19T11:23:12.780 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced debug_paxos 20/20 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_data_avail_warn 5 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_mgr_mkfs_grace 240 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon dev mon_osd_prime_pg_temp true 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_osd_reporter_subtree_level osd 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_reweight_min_bytes_per_osd 10 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_reweight_min_pgs_per_osd 4 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim false 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mon advanced mon_warn_on_insecure_global_id_reclaim_allowed false 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced debug_mgr 20/20 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced debug_ms 1/1 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mgr/cephadm/allow_ptrace true * 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mgr/cephadm/container_init True * 2026-02-19T11:23:12.781 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mgr/cephadm/migration_current 8 * 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mgr/cephadm/use_agent false * 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mgr/dashboard/ssl_server_port 8443 * 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mgr/orchestrator/orchestrator cephadm 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mon_reweight_min_bytes_per_osd 10 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:mgr advanced mon_reweight_min_pgs_per_osd 4 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:osd dev bdev_debug_aio true 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced debug_ms 1/1 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced debug_osd 20/20 2026-02-19T11:23:12.782 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_misdirected_ops true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_op_order true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_pg_log_writeout true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_shutdown true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_verify_cached_snaps true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_verify_missing_on_start true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_debug_verify_stray_on_activate true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_deep_scrub_update_digest_min_age 30 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_mclock_profile high_recovery_ops 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd dev osd_mclock_skip_benchmark true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_memory_target_autotune true 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_op_queue debug_random * 2026-02-19T11:23:12.783 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_op_queue_cut_off debug_random * 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_recover_clone_overlap true 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_recovery_max_chunk 1048576 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_scrub_load_threshold 5.000000 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_scrub_max_interval 600.000000 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:osd advanced osd_shutdown_pgref_assert true 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:client.rgw advanced rgw_cache_enabled true 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:client.rgw advanced rgw_enable_ops_log true 2026-02-19T11:23:12.784 INFO:teuthology.orchestra.run.trial010.stdout:client.rgw advanced rgw_enable_usage_log true 2026-02-19T11:23:12.815 INFO:tasks.cephadm:Deploying OSDs... 2026-02-19T11:23:12.815 DEBUG:teuthology.orchestra.run.trial010:> set -ex 2026-02-19T11:23:12.815 DEBUG:teuthology.orchestra.run.trial010:> dd if=/scratch_devs of=/dev/stdout 2026-02-19T11:23:12.833 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-19T11:23:12.834 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_1 2026-02-19T11:23:12.890 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-19T11:23:12.890 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:12.890 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1299 Links: 1 2026-02-19T11:23:12.890 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:12.891 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:12.891 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-19 11:22:52.238983815 +0000 2026-02-19T11:23:12.891 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-19 11:20:58.150151134 +0000 2026-02-19T11:23:12.891 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-19 11:20:58.150151134 +0000 2026-02-19T11:23:12.891 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-19 11:20:58.150151134 +0000 2026-02-19T11:23:12.891 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-19T11:23:12.954 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-19T11:23:12.954 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-19T11:23:12.954 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000153316 s, 3.3 MB/s 2026-02-19T11:23:12.956 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-19T11:23:13.013 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_2 2026-02-19T11:23:13.069 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-19T11:23:13.069 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:13.069 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1289 Links: 1 2026-02-19T11:23:13.069 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:13.070 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:13.070 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-19 11:22:52.273982958 +0000 2026-02-19T11:23:13.070 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-19 11:20:58.149151174 +0000 2026-02-19T11:23:13.070 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-19 11:20:58.149151174 +0000 2026-02-19T11:23:13.070 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-19 11:20:58.149151174 +0000 2026-02-19T11:23:13.070 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-19T11:23:13.134 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-19T11:23:13.134 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-19T11:23:13.134 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000150471 s, 3.4 MB/s 2026-02-19T11:23:13.136 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-19T11:23:13.193 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_3 2026-02-19T11:23:13.249 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-19T11:23:13.249 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1290 Links: 1 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-19 11:22:52.309982075 +0000 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-19 11:20:58.149151174 +0000 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-19 11:20:58.149151174 +0000 2026-02-19T11:23:13.250 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-19 11:20:58.149151174 +0000 2026-02-19T11:23:13.250 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-19T11:23:13.312 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-19T11:23:13.312 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-19T11:23:13.312 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000159518 s, 3.2 MB/s 2026-02-19T11:23:13.313 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-19T11:23:13.370 DEBUG:teuthology.orchestra.run.trial010:> stat /dev/vg_nvme/lv_4 2026-02-19T11:23:13.427 INFO:teuthology.orchestra.run.trial010.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-19T11:23:13.427 INFO:teuthology.orchestra.run.trial010.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:13.427 INFO:teuthology.orchestra.run.trial010.stdout:Device: 6h/6d Inode: 1298 Links: 1 2026-02-19T11:23:13.427 INFO:teuthology.orchestra.run.trial010.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:13.427 INFO:teuthology.orchestra.run.trial010.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:13.428 INFO:teuthology.orchestra.run.trial010.stdout:Access: 2026-02-19 11:22:52.343981242 +0000 2026-02-19T11:23:13.428 INFO:teuthology.orchestra.run.trial010.stdout:Modify: 2026-02-19 11:20:58.150151134 +0000 2026-02-19T11:23:13.428 INFO:teuthology.orchestra.run.trial010.stdout:Change: 2026-02-19 11:20:58.150151134 +0000 2026-02-19T11:23:13.428 INFO:teuthology.orchestra.run.trial010.stdout: Birth: 2026-02-19 11:20:58.150151134 +0000 2026-02-19T11:23:13.428 DEBUG:teuthology.orchestra.run.trial010:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-19T11:23:13.489 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records in 2026-02-19T11:23:13.490 INFO:teuthology.orchestra.run.trial010.stderr:1+0 records out 2026-02-19T11:23:13.490 INFO:teuthology.orchestra.run.trial010.stderr:512 bytes copied, 0.000147846 s, 3.5 MB/s 2026-02-19T11:23:13.491 DEBUG:teuthology.orchestra.run.trial010:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-19T11:23:13.549 DEBUG:teuthology.orchestra.run.trial132:> set -ex 2026-02-19T11:23:13.549 DEBUG:teuthology.orchestra.run.trial132:> dd if=/scratch_devs of=/dev/stdout 2026-02-19T11:23:13.566 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-19T11:23:13.567 DEBUG:teuthology.orchestra.run.trial132:> stat /dev/vg_nvme/lv_1 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout:Device: 6h/6d Inode: 1307 Links: 1 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout:Access: 2026-02-19 11:23:13.283444065 +0000 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout:Modify: 2026-02-19 11:20:56.447638020 +0000 2026-02-19T11:23:13.622 INFO:teuthology.orchestra.run.trial132.stdout:Change: 2026-02-19 11:20:56.447638020 +0000 2026-02-19T11:23:13.623 INFO:teuthology.orchestra.run.trial132.stdout: Birth: 2026-02-19 11:20:56.447638020 +0000 2026-02-19T11:23:13.623 DEBUG:teuthology.orchestra.run.trial132:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-19T11:23:13.687 INFO:journalctl@ceph.mgr.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mgr[26572]: -- 10.20.193.132:0/1291386276 <== mon.0 v2:10.20.193.10:3300/0 4 ==== auth_reply(proto 2 0 (0) Success) ==== 194+0+0 (secure 0 0 0) 0x117ba00 con 0x114fc00 2026-02-19T11:23:13.687 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Updating trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Reconfiguring mon.a (unknown last config time)... 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Reconfiguring daemon mon.a on trial010 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Reconfiguring mon.b (monmap changed)... 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Reconfiguring daemon mon.b on trial132 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial010=a;trial132=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Saving service mgr spec with placement trial010=a;trial132=b;count:2 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:13.688 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Reconfiguring mon.c (monmap changed)... 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: Reconfiguring daemon mon.c on trial186 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/612498647' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.689 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:13.690 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.690 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:23:13.690 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-19T11:23:13.690 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:23:13.690 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:13 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.690 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records in 2026-02-19T11:23:13.690 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records out 2026-02-19T11:23:13.691 INFO:teuthology.orchestra.run.trial132.stderr:512 bytes copied, 0.000162835 s, 3.1 MB/s 2026-02-19T11:23:13.692 DEBUG:teuthology.orchestra.run.trial132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-19T11:23:13.750 DEBUG:teuthology.orchestra.run.trial132:> stat /dev/vg_nvme/lv_2 2026-02-19T11:23:13.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Updating trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Reconfiguring mon.a (unknown last config time)... 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Reconfiguring daemon mon.a on trial010 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Reconfiguring mon.b (monmap changed)... 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Reconfiguring daemon mon.b on trial132 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial010=a;trial132=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Saving service mgr spec with placement trial010=a;trial132=b;count:2 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Reconfiguring mon.c (monmap changed)... 2026-02-19T11:23:13.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: Reconfiguring daemon mon.c on trial186 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/612498647' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:23:13.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-19T11:23:13.794 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:23:13.794 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:13 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.806 INFO:teuthology.orchestra.run.trial132.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-19T11:23:13.806 INFO:teuthology.orchestra.run.trial132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:13.806 INFO:teuthology.orchestra.run.trial132.stdout:Device: 6h/6d Inode: 1304 Links: 1 2026-02-19T11:23:13.807 INFO:teuthology.orchestra.run.trial132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:13.807 INFO:teuthology.orchestra.run.trial132.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:13.807 INFO:teuthology.orchestra.run.trial132.stdout:Access: 2026-02-19 11:23:13.283444065 +0000 2026-02-19T11:23:13.807 INFO:teuthology.orchestra.run.trial132.stdout:Modify: 2026-02-19 11:20:56.447638020 +0000 2026-02-19T11:23:13.807 INFO:teuthology.orchestra.run.trial132.stdout:Change: 2026-02-19 11:20:56.447638020 +0000 2026-02-19T11:23:13.807 INFO:teuthology.orchestra.run.trial132.stdout: Birth: 2026-02-19 11:20:56.447638020 +0000 2026-02-19T11:23:13.807 DEBUG:teuthology.orchestra.run.trial132:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-19T11:23:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Updating trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Reconfiguring mon.a (unknown last config time)... 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Reconfiguring daemon mon.a on trial010 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Reconfiguring mon.b (monmap changed)... 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Reconfiguring daemon mon.b on trial132 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='client.14208 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "placement": "2;trial010=a;trial132=b", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Saving service mgr spec with placement trial010=a;trial132=b;count:2 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Reconfiguring mon.c (monmap changed)... 2026-02-19T11:23:13.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: Reconfiguring daemon mon.c on trial186 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/612498647' entity='client.admin' cmd={"prefix": "config dump"} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2026-02-19T11:23:13.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:23:13.848 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:13 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:13.873 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records in 2026-02-19T11:23:13.873 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records out 2026-02-19T11:23:13.873 INFO:teuthology.orchestra.run.trial132.stderr:512 bytes copied, 0.000155261 s, 3.3 MB/s 2026-02-19T11:23:13.876 DEBUG:teuthology.orchestra.run.trial132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-19T11:23:13.933 DEBUG:teuthology.orchestra.run.trial132:> stat /dev/vg_nvme/lv_3 2026-02-19T11:23:13.990 INFO:teuthology.orchestra.run.trial132.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout:Device: 6h/6d Inode: 1295 Links: 1 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout:Access: 2026-02-19 11:23:13.283444065 +0000 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout:Modify: 2026-02-19 11:20:56.446638059 +0000 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout:Change: 2026-02-19 11:20:56.446638059 +0000 2026-02-19T11:23:13.991 INFO:teuthology.orchestra.run.trial132.stdout: Birth: 2026-02-19 11:20:56.446638059 +0000 2026-02-19T11:23:13.992 DEBUG:teuthology.orchestra.run.trial132:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-19T11:23:14.053 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records in 2026-02-19T11:23:14.053 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records out 2026-02-19T11:23:14.053 INFO:teuthology.orchestra.run.trial132.stderr:512 bytes copied, 0.000161162 s, 3.2 MB/s 2026-02-19T11:23:14.055 DEBUG:teuthology.orchestra.run.trial132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-19T11:23:14.111 DEBUG:teuthology.orchestra.run.trial132:> stat /dev/vg_nvme/lv_4 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout:Device: 6h/6d Inode: 1294 Links: 1 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout:Access: 2026-02-19 11:23:13.284444061 +0000 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout:Modify: 2026-02-19 11:20:56.446638059 +0000 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout:Change: 2026-02-19 11:20:56.446638059 +0000 2026-02-19T11:23:14.168 INFO:teuthology.orchestra.run.trial132.stdout: Birth: 2026-02-19 11:20:56.446638059 +0000 2026-02-19T11:23:14.168 DEBUG:teuthology.orchestra.run.trial132:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-19T11:23:14.231 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records in 2026-02-19T11:23:14.231 INFO:teuthology.orchestra.run.trial132.stderr:1+0 records out 2026-02-19T11:23:14.231 INFO:teuthology.orchestra.run.trial132.stderr:512 bytes copied, 0.000149701 s, 3.4 MB/s 2026-02-19T11:23:14.233 DEBUG:teuthology.orchestra.run.trial132:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-19T11:23:14.290 DEBUG:teuthology.orchestra.run.trial186:> set -ex 2026-02-19T11:23:14.290 DEBUG:teuthology.orchestra.run.trial186:> dd if=/scratch_devs of=/dev/stdout 2026-02-19T11:23:14.307 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-19T11:23:14.307 DEBUG:teuthology.orchestra.run.trial186:> stat /dev/vg_nvme/lv_1 2026-02-19T11:23:14.364 INFO:teuthology.orchestra.run.trial186.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2026-02-19T11:23:14.364 INFO:teuthology.orchestra.run.trial186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:14.364 INFO:teuthology.orchestra.run.trial186.stdout:Device: 6h/6d Inode: 1300 Links: 1 2026-02-19T11:23:14.364 INFO:teuthology.orchestra.run.trial186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:14.365 INFO:teuthology.orchestra.run.trial186.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:14.365 INFO:teuthology.orchestra.run.trial186.stdout:Access: 2026-02-19 11:22:59.910180749 +0000 2026-02-19T11:23:14.365 INFO:teuthology.orchestra.run.trial186.stdout:Modify: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.365 INFO:teuthology.orchestra.run.trial186.stdout:Change: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.365 INFO:teuthology.orchestra.run.trial186.stdout: Birth: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.365 DEBUG:teuthology.orchestra.run.trial186:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2026-02-19T11:23:14.429 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records in 2026-02-19T11:23:14.429 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records out 2026-02-19T11:23:14.429 INFO:teuthology.orchestra.run.trial186.stderr:512 bytes copied, 0.000151778 s, 3.4 MB/s 2026-02-19T11:23:14.430 DEBUG:teuthology.orchestra.run.trial186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2026-02-19T11:23:14.488 DEBUG:teuthology.orchestra.run.trial186:> stat /dev/vg_nvme/lv_2 2026-02-19T11:23:14.544 INFO:teuthology.orchestra.run.trial186.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout:Device: 6h/6d Inode: 1297 Links: 1 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout:Access: 2026-02-19 11:22:59.911180738 +0000 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout:Modify: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout:Change: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.545 INFO:teuthology.orchestra.run.trial186.stdout: Birth: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.546 DEBUG:teuthology.orchestra.run.trial186:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2026-02-19T11:23:14.607 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records in 2026-02-19T11:23:14.607 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records out 2026-02-19T11:23:14.607 INFO:teuthology.orchestra.run.trial186.stderr:512 bytes copied, 0.000149674 s, 3.4 MB/s 2026-02-19T11:23:14.608 DEBUG:teuthology.orchestra.run.trial186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2026-02-19T11:23:14.667 DEBUG:teuthology.orchestra.run.trial186:> stat /dev/vg_nvme/lv_3 2026-02-19T11:23:14.715 INFO:journalctl@ceph.mgr.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-b[26568]: /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-19T11:23:14.715 INFO:journalctl@ceph.mgr.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-b[26568]: 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-19T11:23:14.715 INFO:journalctl@ceph.mgr.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mgr-b[26568]: from numpy import show_config as show_numpy_config 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: Deploying daemon mgr.b on trial132 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:14.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:14 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout:Device: 6h/6d Inode: 1309 Links: 1 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout:Access: 2026-02-19 11:22:59.911180738 +0000 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout:Modify: 2026-02-19 11:20:58.842665927 +0000 2026-02-19T11:23:14.724 INFO:teuthology.orchestra.run.trial186.stdout:Change: 2026-02-19 11:20:58.842665927 +0000 2026-02-19T11:23:14.725 INFO:teuthology.orchestra.run.trial186.stdout: Birth: 2026-02-19 11:20:58.842665927 +0000 2026-02-19T11:23:14.725 DEBUG:teuthology.orchestra.run.trial186:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2026-02-19T11:23:14.785 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: Deploying daemon mgr.b on trial132 2026-02-19T11:23:14.785 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.785 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.785 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.785 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:14.786 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:14 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.787 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records in 2026-02-19T11:23:14.787 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records out 2026-02-19T11:23:14.787 INFO:teuthology.orchestra.run.trial186.stderr:512 bytes copied, 0.000162308 s, 3.2 MB/s 2026-02-19T11:23:14.788 DEBUG:teuthology.orchestra.run.trial186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2026-02-19T11:23:14.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: Deploying daemon mgr.b on trial132 2026-02-19T11:23:14.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:14.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:14.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:14.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:14 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:14.846 DEBUG:teuthology.orchestra.run.trial186:> stat /dev/vg_nvme/lv_4 2026-02-19T11:23:14.902 INFO:teuthology.orchestra.run.trial186.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2026-02-19T11:23:14.902 INFO:teuthology.orchestra.run.trial186.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2026-02-19T11:23:14.902 INFO:teuthology.orchestra.run.trial186.stdout:Device: 6h/6d Inode: 1291 Links: 1 2026-02-19T11:23:14.902 INFO:teuthology.orchestra.run.trial186.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2026-02-19T11:23:14.902 INFO:teuthology.orchestra.run.trial186.stdout:Context: system_u:object_r:device_t:s0 2026-02-19T11:23:14.903 INFO:teuthology.orchestra.run.trial186.stdout:Access: 2026-02-19 11:22:59.911180738 +0000 2026-02-19T11:23:14.903 INFO:teuthology.orchestra.run.trial186.stdout:Modify: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.903 INFO:teuthology.orchestra.run.trial186.stdout:Change: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.903 INFO:teuthology.orchestra.run.trial186.stdout: Birth: 2026-02-19 11:20:58.841665961 +0000 2026-02-19T11:23:14.903 DEBUG:teuthology.orchestra.run.trial186:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2026-02-19T11:23:14.965 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records in 2026-02-19T11:23:14.966 INFO:teuthology.orchestra.run.trial186.stderr:1+0 records out 2026-02-19T11:23:14.966 INFO:teuthology.orchestra.run.trial186.stderr:512 bytes copied, 0.000171476 s, 3.0 MB/s 2026-02-19T11:23:14.967 DEBUG:teuthology.orchestra.run.trial186:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2026-02-19T11:23:15.024 INFO:tasks.cephadm:Deploying osd.0 on trial010 with /dev/vg_nvme/lv_4... 2026-02-19T11:23:15.024 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-19T11:23:15.142 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:23:15.559 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:15 trial010 ceph-mon[21676]: Reconfiguring mgr.a (unknown last config time)... 2026-02-19T11:23:15.559 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:15 trial010 ceph-mon[21676]: Reconfiguring daemon mgr.a on trial010 2026-02-19T11:23:15.559 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:15 trial010 ceph-mon[21676]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:15.627 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:23:15.644 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch daemon add osd trial010:vg_nvme/lv_4 --skip-validation 2026-02-19T11:23:15.764 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:23:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:15 trial186 ceph-mon[24984]: Reconfiguring mgr.a (unknown last config time)... 2026-02-19T11:23:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:15 trial186 ceph-mon[24984]: Reconfiguring daemon mgr.a on trial010 2026-02-19T11:23:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:15 trial186 ceph-mon[24984]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:15 trial132 ceph-mon[25485]: Reconfiguring mgr.a (unknown last config time)... 2026-02-19T11:23:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:15 trial132 ceph-mon[25485]: Reconfiguring daemon mgr.a on trial010 2026-02-19T11:23:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:15 trial132 ceph-mon[25485]: pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:17.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial010:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: osd.default does not exist. Creating it now. 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: Creating OSDs with service ID: default on trial010:['vg_nvme/lv_4'] 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: Marking host: trial010 for OSDSpec preview refresh. 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: Saving service osd.default spec with placement trial010 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: Standby manager daemon b started 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-19T11:23:17.293 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2474283748' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "aa408253-4254-475d-a2fb-52e2f8e88558"} : dispatch 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2474283748' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aa408253-4254-475d-a2fb-52e2f8e88558"}]': finished 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: osdmap e5: 1 total, 0 up, 1 in 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.294 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3877432517' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:17.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial010:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:17.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: osd.default does not exist. Creating it now. 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: Creating OSDs with service ID: default on trial010:['vg_nvme/lv_4'] 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: Marking host: trial010 for OSDSpec preview refresh. 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: Saving service osd.default spec with placement trial010 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: Standby manager daemon b started 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2474283748' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "aa408253-4254-475d-a2fb-52e2f8e88558"} : dispatch 2026-02-19T11:23:17.347 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2474283748' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aa408253-4254-475d-a2fb-52e2f8e88558"}]': finished 2026-02-19T11:23:17.348 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: osdmap e5: 1 total, 0 up, 1 in 2026-02-19T11:23:17.348 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:17.348 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.348 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3877432517' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:17.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='client.14226 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial010:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:17.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: osd.default does not exist. Creating it now. 2026-02-19T11:23:17.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: Creating OSDs with service ID: default on trial010:['vg_nvme/lv_4'] 2026-02-19T11:23:17.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: Marking host: trial010 for OSDSpec preview refresh. 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: Saving service osd.default spec with placement trial010 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:17.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: Standby manager daemon b started 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/crt"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/b/key"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.? 10.20.193.132:0/1383008377' entity='mgr.b' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2474283748' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "aa408253-4254-475d-a2fb-52e2f8e88558"} : dispatch 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2474283748' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "aa408253-4254-475d-a2fb-52e2f8e88558"}]': finished 2026-02-19T11:23:17.467 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: osdmap e5: 1 total, 0 up, 1 in 2026-02-19T11:23:17.468 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:17.468 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:17.468 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3877432517' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:18.169 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:17 trial010 ceph-mon[21676]: mgrmap e14: a(active, since 30s), standbys: b 2026-02-19T11:23:18.169 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:17 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-19T11:23:18.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:17 trial186 ceph-mon[24984]: mgrmap e14: a(active, since 30s), standbys: b 2026-02-19T11:23:18.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:17 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-19T11:23:18.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:17 trial132 ceph-mon[25485]: mgrmap e14: a(active, since 30s), standbys: b 2026-02-19T11:23:18.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:17 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr metadata", "who": "b", "id": "b"} : dispatch 2026-02-19T11:23:19.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:18 trial010 ceph-mon[21676]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:19.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:18 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:23:19.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:18 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:19.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:18 trial010 ceph-mon[21676]: Deploying daemon osd.0 on trial010 2026-02-19T11:23:19.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:18 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:23:19.292 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:18 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:19.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:18 trial186 ceph-mon[24984]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:19.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:18 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:23:19.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:18 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:19.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:18 trial186 ceph-mon[24984]: Deploying daemon osd.0 on trial010 2026-02-19T11:23:19.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:18 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:23:19.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:18 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:19.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:18 trial132 ceph-mon[25485]: pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:19.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:18 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:23:19.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:18 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:19.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:18 trial132 ceph-mon[25485]: Deploying daemon osd.0 on trial010 2026-02-19T11:23:19.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:18 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:23:19.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:18 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:20.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:19 trial010 ceph-mon[21676]: Deploying daemon osd.0 on trial010 2026-02-19T11:23:20.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:19 trial186 ceph-mon[24984]: Deploying daemon osd.0 on trial010 2026-02-19T11:23:20.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:19 trial132 ceph-mon[25485]: Deploying daemon osd.0 on trial010 2026-02-19T11:23:21.075 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:20 trial010 ceph-mon[21676]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:21.076 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:20 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:21.076 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:20 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:21.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:20 trial186 ceph-mon[24984]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:21.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:20 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:21.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:20 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:21.464 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:20 trial132 ceph-mon[25485]: pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:21.464 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:20 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:21.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:20 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:23.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:23 trial186 ceph-mon[24984]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:23.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:23.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:23.937 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:23 trial010 ceph-mon[21676]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:23.938 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:23.938 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:23 trial132 ceph-mon[25485]: pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.267 INFO:teuthology.orchestra.run.trial010.stdout:Created osd(s) 0 on host 'trial010' 2026-02-19T11:23:24.315 DEBUG:teuthology.orchestra.run.trial010:osd.0> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.0.service 2026-02-19T11:23:24.317 INFO:tasks.cephadm:Deploying osd.1 on trial010 with /dev/vg_nvme/lv_3... 2026-02-19T11:23:24.317 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-19T11:23:24.476 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:23:24.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:24.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-19T11:23:24.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-19T11:23:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.585 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:23:25.602 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch daemon add osd trial010:vg_nvme/lv_3 --skip-validation 2026-02-19T11:23:25.724 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:23:25.858 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:25.858 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: osdmap e6: 1 total, 0 up, 1 in 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial010", "root=default"]} : dispatch 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.859 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:25.860 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:25.860 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:25.860 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:25 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0[38899]: 2026-02-19T11:23:25.673+0000 7fd2069c0640 -1 osd.0 0 waiting for initial osdmap 2026-02-19T11:23:25.860 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:25 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0[38899]: 2026-02-19T11:23:25.675+0000 7fd202887640 -1 osd.0 7 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-19T11:23:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-19T11:23:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: osdmap e6: 1 total, 0 up, 1 in 2026-02-19T11:23:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial010", "root=default"]} : dispatch 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: osdmap e6: 1 total, 0 up, 1 in 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial010", "root=default"]} : dispatch 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:26.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:26.919 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: Detected new or changed devices on trial010 2026-02-19T11:23:26.919 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: Adjusting osd_memory_target on trial010 to 84047M 2026-02-19T11:23:26.919 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial010", "root=default"]}]': finished 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: osdmap e7: 1 total, 0 up, 1 in 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:26.920 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: Detected new or changed devices on trial010 2026-02-19T11:23:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: Adjusting osd_memory_target on trial010 to 84047M 2026-02-19T11:23:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial010", "root=default"]}]': finished 2026-02-19T11:23:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: osdmap e7: 1 total, 0 up, 1 in 2026-02-19T11:23:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:26.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:26.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:26.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:26.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:26.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: Detected new or changed devices on trial010 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: Adjusting osd_memory_target on trial010 to 84047M 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322]' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.6836, "args": ["host=trial010", "root=default"]}]': finished 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: osdmap e7: 1 total, 0 up, 1 in 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:27.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:27.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:27.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:27.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: purged_snaps scrub starts 2026-02-19T11:23:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:23:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial010:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: osd.default does not exist. Creating it now. 2026-02-19T11:23:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: Creating OSDs with service ID: default on trial010:['vg_nvme/lv_3'] 2026-02-19T11:23:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: Marking host: trial010 for OSDSpec preview refresh. 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: Saving service osd.default spec with placement trial010 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322] boot 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: osdmap e8: 1 total, 1 up, 1 in 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/4167920740' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a2774c42-9a14-4ea7-920e-966b5dcc20a9"} : dispatch 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/4167920740' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a2774c42-9a14-4ea7-920e-966b5dcc20a9"}]': finished 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: osdmap e9: 2 total, 1 up, 2 in 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:27 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2301688333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: purged_snaps scrub starts 2026-02-19T11:23:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:23:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial010:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: osd.default does not exist. Creating it now. 2026-02-19T11:23:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: Creating OSDs with service ID: default on trial010:['vg_nvme/lv_3'] 2026-02-19T11:23:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: Marking host: trial010 for OSDSpec preview refresh. 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: Saving service osd.default spec with placement trial010 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322] boot 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: osdmap e8: 1 total, 1 up, 1 in 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/4167920740' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a2774c42-9a14-4ea7-920e-966b5dcc20a9"} : dispatch 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/4167920740' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a2774c42-9a14-4ea7-920e-966b5dcc20a9"}]': finished 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: osdmap e9: 2 total, 1 up, 2 in 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:27 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2301688333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:28.094 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: purged_snaps scrub starts 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: purged_snaps scrub ok 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: from='client.14256 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial010:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: osd.default does not exist. Creating it now. 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: Creating OSDs with service ID: default on trial010:['vg_nvme/lv_3'] 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: Marking host: trial010 for OSDSpec preview refresh. 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: Saving service osd.default spec with placement trial010 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: osd.0 [v2:10.20.193.10:6802/2719689322,v1:10.20.193.10:6803/2719689322] boot 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: osdmap e8: 1 total, 1 up, 1 in 2026-02-19T11:23:28.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2026-02-19T11:23:28.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/4167920740' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "a2774c42-9a14-4ea7-920e-966b5dcc20a9"} : dispatch 2026-02-19T11:23:28.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/4167920740' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "a2774c42-9a14-4ea7-920e-966b5dcc20a9"}]': finished 2026-02-19T11:23:28.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: osdmap e9: 2 total, 1 up, 2 in 2026-02-19T11:23:28.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:28.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:27 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2301688333' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:29.838 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: pgmap v20: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:29.838 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:29.838 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:29.839 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:29.839 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-19T11:23:29.839 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:29.839 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:29.839 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:29 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: pgmap v20: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:30.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:29 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: pgmap v20: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:30.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:30.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-19T11:23:30.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:30.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:29 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:30.807 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:30 trial010 ceph-mon[21676]: Deploying daemon osd.1 on trial010 2026-02-19T11:23:31.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:30 trial186 ceph-mon[24984]: Deploying daemon osd.1 on trial010 2026-02-19T11:23:31.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:30 trial132 ceph-mon[25485]: Deploying daemon osd.1 on trial010 2026-02-19T11:23:31.749 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.750 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.751 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:31.751 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:31.751 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:31.751 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:31.751 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:31.751 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:32.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:32.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-19T11:23:32.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:32.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:31 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:32.182 INFO:teuthology.orchestra.run.trial010.stdout:Created osd(s) 1 on host 'trial010' 2026-02-19T11:23:32.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: pgmap v21: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:32.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2026-02-19T11:23:32.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:32.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:32.221 DEBUG:teuthology.orchestra.run.trial010:osd.1> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.1.service 2026-02-19T11:23:32.223 INFO:tasks.cephadm:Deploying osd.2 on trial132 with /dev/vg_nvme/lv_4... 2026-02-19T11:23:32.223 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-19T11:23:32.339 INFO:teuthology.orchestra.run.trial132.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.b/config 2026-02-19T11:23:32.777 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:23:32.794 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch daemon add osd trial132:vg_nvme/lv_4 --skip-validation 2026-02-19T11:23:32.817 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: Detected new or changed devices on trial010 2026-02-19T11:23:32.817 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-19T11:23:32.817 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: osdmap e10: 2 total, 1 up, 2 in 2026-02-19T11:23:32.818 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial010", "root=default"]} : dispatch 2026-02-19T11:23:32.818 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:32.818 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.818 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:32.911 INFO:teuthology.orchestra.run.trial132.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.b/config 2026-02-19T11:23:33.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: Detected new or changed devices on trial010 2026-02-19T11:23:33.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-19T11:23:33.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: osdmap e10: 2 total, 1 up, 2 in 2026-02-19T11:23:33.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial010", "root=default"]} : dispatch 2026-02-19T11:23:33.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:33.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.042 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:32 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1[46630]: 2026-02-19T11:23:32.832+0000 7ff9d6590640 -1 osd.1 0 waiting for initial osdmap 2026-02-19T11:23:33.042 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:32 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1[46630]: 2026-02-19T11:23:32.834+0000 7ff9d2457640 -1 osd.1 11 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-19T11:23:33.094 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: Detected new or changed devices on trial010 2026-02-19T11:23:33.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2026-02-19T11:23:33.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: osdmap e10: 2 total, 1 up, 2 in 2026-02-19T11:23:33.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial010", "root=default"]} : dispatch 2026-02-19T11:23:33.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:33.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:32 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial010", "root=default"]}]': finished 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: osdmap e11: 2 total, 1 up, 2 in 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.862 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.863 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.874 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:33.874 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial010", "root=default"]}]': finished 2026-02-19T11:23:33.874 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: osdmap e11: 2 total, 1 up, 2 in 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:33.875 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:33.876 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: pgmap v23: 0 pgs: ; 0 B data, 26 MiB used, 700 GiB / 700 GiB avail 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.6836, "args": ["host=trial010", "root=default"]}]': finished 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: osdmap e11: 2 total, 1 up, 2 in 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:34.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:34.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:33 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: purged_snaps scrub starts 2026-02-19T11:23:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:23:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='client.24134 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial132:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: osd.default does not exist. Creating it now. 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: Creating OSDs with service ID: default on trial132:['vg_nvme/lv_4'] 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: Marking host: trial132 for OSDSpec preview refresh. 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: Saving service osd.default spec with placement trial132 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='client.? 10.20.193.132:0/2266649871' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"} : dispatch 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"} : dispatch 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"}]': finished 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594] boot 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: osdmap e12: 3 total, 2 up, 3 in 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:34 trial010 ceph-mon[21676]: from='client.? 10.20.193.132:0/2299797300' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:35.091 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: purged_snaps scrub starts 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='client.24134 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial132:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: osd.default does not exist. Creating it now. 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: Creating OSDs with service ID: default on trial132:['vg_nvme/lv_4'] 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: Marking host: trial132 for OSDSpec preview refresh. 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: Saving service osd.default spec with placement trial132 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='client.? 10.20.193.132:0/2266649871' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"} : dispatch 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"} : dispatch 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"}]': finished 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594] boot 2026-02-19T11:23:35.092 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: osdmap e12: 3 total, 2 up, 3 in 2026-02-19T11:23:35.093 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:35.093 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:35.093 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.093 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.093 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:34 trial132 ceph-mon[25485]: from='client.? 10.20.193.132:0/2299797300' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: purged_snaps scrub starts 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: purged_snaps scrub ok 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='client.24134 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial132:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: osd.default does not exist. Creating it now. 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: Creating OSDs with service ID: default on trial132:['vg_nvme/lv_4'] 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: Marking host: trial132 for OSDSpec preview refresh. 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: Saving service osd.default spec with placement trial132 2026-02-19T11:23:35.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='client.? 10.20.193.132:0/2266649871' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"} : dispatch 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"} : dispatch 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed"}]': finished 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: osd.1 [v2:10.20.193.10:6810/2070043594,v1:10.20.193.10:6811/2070043594] boot 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: osdmap e12: 3 total, 2 up, 3 in 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:34 trial186 ceph-mon[24984]: from='client.? 10.20.193.132:0/2299797300' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:35.886 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: pgmap v26: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:35.887 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: pgmap v26: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: pgmap v26: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:36.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:36.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:36.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:36.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:36.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:35 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:36 trial010 ceph-mon[21676]: Adjusting osd_memory_target on trial010 to 42023M 2026-02-19T11:23:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:23:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:23:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:36 trial186 ceph-mon[24984]: Adjusting osd_memory_target on trial010 to 42023M 2026-02-19T11:23:37.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:36 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:23:37.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:36 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:36 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:23:37.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:36 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:36 trial132 ceph-mon[25485]: Adjusting osd_memory_target on trial010 to 42023M 2026-02-19T11:23:37.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:23:37.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:23:37.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:37.933 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:37 trial132 ceph-mon[25485]: Deploying daemon osd.2 on trial132 2026-02-19T11:23:37.933 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:37 trial132 ceph-mon[25485]: Deploying daemon osd.2 on trial132 2026-02-19T11:23:37.933 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:37 trial132 ceph-mon[25485]: pgmap v27: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:38.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:37 trial010 ceph-mon[21676]: Deploying daemon osd.2 on trial132 2026-02-19T11:23:38.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:37 trial010 ceph-mon[21676]: Deploying daemon osd.2 on trial132 2026-02-19T11:23:38.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:37 trial010 ceph-mon[21676]: pgmap v27: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:38.094 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:37 trial186 ceph-mon[24984]: Deploying daemon osd.2 on trial132 2026-02-19T11:23:38.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:37 trial186 ceph-mon[24984]: Deploying daemon osd.2 on trial132 2026-02-19T11:23:38.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:37 trial186 ceph-mon[24984]: pgmap v27: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:39.117 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:38 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:39.117 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:38 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:39.117 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:38 trial132 ceph-mon[25485]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:39.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:38 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:39.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:38 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:39.291 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:38 trial010 ceph-mon[21676]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:39.344 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:38 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:39.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:38 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:39.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:38 trial186 ceph-mon[24984]: pgmap v28: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:40.817 INFO:teuthology.orchestra.run.trial132.stdout:Created osd(s) 2 on host 'trial132' 2026-02-19T11:23:40.857 DEBUG:teuthology.orchestra.run.trial132:osd.2> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.2.service 2026-02-19T11:23:40.899 INFO:tasks.cephadm:Deploying osd.3 on trial132 with /dev/vg_nvme/lv_3... 2026-02-19T11:23:40.899 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-19T11:23:41.059 INFO:teuthology.orchestra.run.trial132.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.b/config 2026-02-19T11:23:41.082 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:40 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2[31104]: 2026-02-19T11:23:40.949+0000 7f1a83032780 -1 osd.2 0 log_to_monitors true 2026-02-19T11:23:41.334 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.335 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.335 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: pgmap v29: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:41.335 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.335 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.335 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: from='osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-19T11:23:41.335 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:41 trial132 ceph-mon[25485]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: pgmap v29: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: from='osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-19T11:23:41.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:41 trial010 ceph-mon[21676]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-19T11:23:41.594 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: pgmap v29: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:41.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:41.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: from='osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-19T11:23:41.595 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:41 trial186 ceph-mon[24984]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2026-02-19T11:23:41.813 INFO:teuthology.orchestra.run.trial132.stdout: 2026-02-19T11:23:41.830 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch daemon add osd trial132:vg_nvme/lv_3 --skip-validation 2026-02-19T11:23:41.945 INFO:teuthology.orchestra.run.trial132.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.b/config 2026-02-19T11:23:42.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:42.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: osdmap e13: 3 total, 2 up, 3 in 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:42.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:42 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-19T11:23:42.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: osdmap e13: 3 total, 2 up, 3 in 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:42.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:42 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: osdmap e13: 3 total, 2 up, 3 in 2026-02-19T11:23:42.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:42.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:42 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.026 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:42 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2[31104]: 2026-02-19T11:23:42.815+0000 7f1a7efb4640 -1 osd.2 0 waiting for initial osdmap 2026-02-19T11:23:43.027 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:42 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2[31104]: 2026-02-19T11:23:42.817+0000 7f1a7ae7b640 -1 osd.2 14 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-19T11:23:43.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='client.24164 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial132:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:43.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: osd.default does not exist. Creating it now. 2026-02-19T11:23:43.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: Creating OSDs with service ID: default on trial132:['vg_nvme/lv_3'] 2026-02-19T11:23:43.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: Marking host: trial132 for OSDSpec preview refresh. 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: Saving service osd.default spec with placement trial132 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]}]': finished 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: osdmap e14: 3 total, 2 up, 3 in 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:43.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='client.? 10.20.193.132:0/2277844066' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"} : dispatch 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"}]': finished 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613] boot 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: osdmap e15: 4 total, 3 up, 4 in 2026-02-19T11:23:43.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:43 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:43.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='client.24164 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial132:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:43.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: osd.default does not exist. Creating it now. 2026-02-19T11:23:43.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: Creating OSDs with service ID: default on trial132:['vg_nvme/lv_3'] 2026-02-19T11:23:43.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: Marking host: trial132 for OSDSpec preview refresh. 2026-02-19T11:23:43.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: Saving service osd.default spec with placement trial132 2026-02-19T11:23:43.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]}]': finished 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: osdmap e14: 3 total, 2 up, 3 in 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='client.? 10.20.193.132:0/2277844066' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"}]': finished 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613] boot 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: osdmap e15: 4 total, 3 up, 4 in 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:43 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='client.24164 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial132:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: osd.default does not exist. Creating it now. 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: Creating OSDs with service ID: default on trial132:['vg_nvme/lv_3'] 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: Marking host: trial132 for OSDSpec preview refresh. 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: Saving service osd.default spec with placement trial132 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: pgmap v31: 0 pgs: ; 0 B data, 53 MiB used, 1.4 TiB / 1.4 TiB avail 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.6836, "args": ["host=trial132", "root=default"]}]': finished 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: osdmap e14: 3 total, 2 up, 3 in 2026-02-19T11:23:43.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:43.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='client.? 10.20.193.132:0/2277844066' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"} : dispatch 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"} : dispatch 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2b82b4a9-e417-444c-b05f-9c5c5bedd6c8"}]': finished 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: osd.2 [v2:10.20.193.132:6800/4060289613,v1:10.20.193.132:6801/4060289613] boot 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: osdmap e15: 4 total, 3 up, 4 in 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2026-02-19T11:23:43.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:43 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:44.643 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:44 trial132 ceph-mon[25485]: purged_snaps scrub starts 2026-02-19T11:23:44.643 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:44 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:23:44.643 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:44 trial132 ceph-mon[25485]: Detected new or changed devices on trial132 2026-02-19T11:23:44.643 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:44 trial132 ceph-mon[25485]: Adjusting osd_memory_target on trial132 to 84047M 2026-02-19T11:23:44.643 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:44 trial132 ceph-mon[25485]: from='client.? 10.20.193.132:0/1713112760' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:44.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:44 trial010 ceph-mon[21676]: purged_snaps scrub starts 2026-02-19T11:23:44.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:44 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:23:44.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:44 trial010 ceph-mon[21676]: Detected new or changed devices on trial132 2026-02-19T11:23:44.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:44 trial010 ceph-mon[21676]: Adjusting osd_memory_target on trial132 to 84047M 2026-02-19T11:23:44.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:44 trial010 ceph-mon[21676]: from='client.? 10.20.193.132:0/1713112760' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:44.844 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:44 trial186 ceph-mon[24984]: purged_snaps scrub starts 2026-02-19T11:23:44.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:44 trial186 ceph-mon[24984]: purged_snaps scrub ok 2026-02-19T11:23:44.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:44 trial186 ceph-mon[24984]: Detected new or changed devices on trial132 2026-02-19T11:23:44.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:44 trial186 ceph-mon[24984]: Adjusting osd_memory_target on trial132 to 84047M 2026-02-19T11:23:44.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:44 trial186 ceph-mon[24984]: from='client.? 10.20.193.132:0/1713112760' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:45.416 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:45 trial132 ceph-mon[25485]: pgmap v34: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:45.417 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:45 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' 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-19T11:23:45.417 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:45 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:23:45.417 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:45 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:45.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:45 trial010 ceph-mon[21676]: pgmap v34: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:45.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:45 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' 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-19T11:23:45.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:45 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:23:45.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:45 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:45.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:45 trial186 ceph-mon[24984]: pgmap v34: 0 pgs: ; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:45.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:45 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' 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-19T11:23:45.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:45 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:23:45.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:45 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: Deploying daemon osd.3 on trial132 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' 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-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: osdmap e16: 4 total, 3 up, 4 in 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:46.665 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 ceph-mon[21676]: Deploying daemon osd.3 on trial132 2026-02-19T11:23:46.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: Deploying daemon osd.3 on trial132 2026-02-19T11:23:46.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' 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-19T11:23:46.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: osdmap e16: 4 total, 3 up, 4 in 2026-02-19T11:23:46.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:46.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:23:46.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:23:46.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:46.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 ceph-mon[25485]: Deploying daemon osd.3 on trial132 2026-02-19T11:23:46.835 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: Deploying daemon osd.3 on trial132 2026-02-19T11:23:46.835 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' 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-19T11:23:46.836 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: osdmap e16: 4 total, 3 up, 4 in 2026-02-19T11:23:46.836 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:46.836 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:23:46.836 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:23:46.836 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:46.836 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 ceph-mon[24984]: Deploying daemon osd.3 on trial132 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38040]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38040]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38040]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38040]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38044]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38044]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38044]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.022 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38044]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38025]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38025]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38025]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38025]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38031]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38031]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38031]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.023 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:23:46 trial132 sudo[38031]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54656]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54656]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54656]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54656]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54660]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54660]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54660]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54660]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54640]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54640]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54640]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54640]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54644]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54644]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54644]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54644]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54648]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme2n1 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54648]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54648]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54648]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54652]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme2n1 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54652]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54652]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.041 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:23:46 trial010 sudo[54652]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.094 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26383]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/smartctl -x --json=o /dev/nvme1n1 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26383]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26383]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26383]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26387]: ceph : PWD=/ ; USER=root ; COMMAND=/usr/sbin/nvme mtfdkcc1t9tgp-1bk1jabyy smart-log-add --json /dev/nvme1n1 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26387]: pam_systemd(sudo:session): Failed to connect to system bus: No such file or directory 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26387]: pam_unix(sudo:session): session opened for user root(uid=0) by (uid=167) 2026-02-19T11:23:47.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:46 trial186 sudo[26387]: pam_unix(sudo:session): session closed for user root 2026-02-19T11:23:47.539 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-19T11:23:47.539 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: osdmap e17: 4 total, 3 up, 4 in 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.540 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.541 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:47 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-19T11:23:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: osdmap e17: 4 total, 3 up, 4 in 2026-02-19T11:23:47.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:47 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2026-02-19T11:23:47.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: osdmap e17: 4 total, 3 up, 4 in 2026-02-19T11:23:47.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:47.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: pgmap v37: 1 pgs: 1 unknown; 0 B data, 79 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:47.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "c"} : dispatch 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:47.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:47 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:48.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:48 trial132 ceph-mon[25485]: osdmap e18: 4 total, 3 up, 4 in 2026-02-19T11:23:48.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:48 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:48.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:48 trial010 ceph-mon[21676]: osdmap e18: 4 total, 3 up, 4 in 2026-02-19T11:23:48.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:48 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:48.844 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:48 trial186 ceph-mon[24984]: osdmap e18: 4 total, 3 up, 4 in 2026-02-19T11:23:48.844 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:48 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:49.464 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:49 trial132 ceph-mon[25485]: pgmap v39: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:49.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:49 trial010 ceph-mon[21676]: pgmap v39: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:49.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:49 trial186 ceph-mon[24984]: pgmap v39: 1 pgs: 1 unknown; 0 B data, 81 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:49.916 INFO:teuthology.orchestra.run.trial132.stdout:Created osd(s) 3 on host 'trial132' 2026-02-19T11:23:49.963 DEBUG:teuthology.orchestra.run.trial132:osd.3> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.3.service 2026-02-19T11:23:49.965 INFO:tasks.cephadm:Deploying osd.4 on trial186 with /dev/vg_nvme/lv_4... 2026-02-19T11:23:49.966 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_4 2026-02-19T11:23:50.085 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.c/config 2026-02-19T11:23:50.215 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:23:50 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3[39199]: 2026-02-19T11:23:50.010+0000 7f50f2cbb780 -1 osd.3 0 log_to_monitors true 2026-02-19T11:23:50.527 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:23:50.545 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch daemon add osd trial186:vg_nvme/lv_4 --skip-validation 2026-02-19T11:23:50.548 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: mgrmap e15: a(active, since 62s), standbys: b 2026-02-19T11:23:50.549 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.549 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.549 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.549 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.549 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: from='osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-19T11:23:50.549 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:50 trial186 ceph-mon[24984]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-19T11:23:50.664 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.c/config 2026-02-19T11:23:50.670 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: mgrmap e15: a(active, since 62s), standbys: b 2026-02-19T11:23:50.670 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.670 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.670 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.670 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.671 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: from='osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-19T11:23:50.671 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:50 trial132 ceph-mon[25485]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-19T11:23:50.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: mgrmap e15: a(active, since 62s), standbys: b 2026-02-19T11:23:50.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:50.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: from='osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-19T11:23:50.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:50 trial010 ceph-mon[21676]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: osdmap e19: 4 total, 3 up, 4 in 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:51.647 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:51 trial186 ceph-mon[24984]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:23:51 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3[39199]: 2026-02-19T11:23:51.551+0000 7f50eec3d640 -1 osd.3 0 waiting for initial osdmap 2026-02-19T11:23:51.715 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:23:51 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3[39199]: 2026-02-19T11:23:51.553+0000 7f50e6afc640 -1 osd.3 20 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: osdmap e19: 4 total, 3 up, 4 in 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:51.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:51 trial132 ceph-mon[25485]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:51.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: pgmap v40: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: osdmap e19: 4 total, 3 up, 4 in 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:51.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:51 trial010 ceph-mon[21676]: from='osd.3 ' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]} : dispatch 2026-02-19T11:23:52.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial186:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:52.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: osd.default does not exist. Creating it now. 2026-02-19T11:23:52.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: Creating OSDs with service ID: default on trial186:['vg_nvme/lv_4'] 2026-02-19T11:23:52.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: Marking host: trial186 for OSDSpec preview refresh. 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: Saving service osd.default spec with placement trial186 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"} : dispatch 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='client.? 10.20.193.186:0/3099644193' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"} : dispatch 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]}]': finished 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"}]': finished 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: osdmap e20: 5 total, 3 up, 5 in 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:52.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: Detected new or changed devices on trial132 2026-02-19T11:23:52.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:52.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:52.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: Adjusting osd_memory_target on trial132 to 42023M 2026-02-19T11:23:52.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:52.718 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:52 trial132 ceph-mon[25485]: from='client.? 10.20.193.186:0/4167419286' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:52.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial186:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:52.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: osd.default does not exist. Creating it now. 2026-02-19T11:23:52.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: Creating OSDs with service ID: default on trial186:['vg_nvme/lv_4'] 2026-02-19T11:23:52.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: Marking host: trial186 for OSDSpec preview refresh. 2026-02-19T11:23:52.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: Saving service osd.default spec with placement trial186 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"} : dispatch 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='client.? 10.20.193.186:0/3099644193' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"} : dispatch 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]}]': finished 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"}]': finished 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: osdmap e20: 5 total, 3 up, 5 in 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: Detected new or changed devices on trial132 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: Adjusting osd_memory_target on trial132 to 42023M 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:52.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:52 trial010 ceph-mon[21676]: from='client.? 10.20.193.186:0/4167419286' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:52.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='client.24181 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial186:vg_nvme/lv_4", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:23:52.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: osd.default does not exist. Creating it now. 2026-02-19T11:23:52.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: Creating OSDs with service ID: default on trial186:['vg_nvme/lv_4'] 2026-02-19T11:23:52.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: Marking host: trial186 for OSDSpec preview refresh. 2026-02-19T11:23:52.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: Saving service osd.default spec with placement trial186 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"} : dispatch 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='client.? 10.20.193.186:0/3099644193' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"} : dispatch 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='osd.3 ' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.6836, "args": ["host=trial132", "root=default"]}]': finished 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "debc3b0f-cf5f-495b-bc76-b37672ac763f"}]': finished 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: osdmap e20: 5 total, 3 up, 5 in 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: Detected new or changed devices on trial132 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: Adjusting osd_memory_target on trial132 to 42023M 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:52.847 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:52 trial186 ceph-mon[24984]: from='client.? 10.20.193.186:0/4167419286' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:23:53.710 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: purged_snaps scrub starts 2026-02-19T11:23:53.710 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: purged_snaps scrub ok 2026-02-19T11:23:53.710 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:53.710 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555] boot 2026-02-19T11:23:53.710 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: osdmap e21: 5 total, 4 up, 5 in 2026-02-19T11:23:53.710 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:53.711 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:53.711 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: osdmap e22: 5 total, 4 up, 5 in 2026-02-19T11:23:53.711 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:53 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:53.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: purged_snaps scrub starts 2026-02-19T11:23:53.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:23:53.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:53.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555] boot 2026-02-19T11:23:53.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: osdmap e21: 5 total, 4 up, 5 in 2026-02-19T11:23:53.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:53.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:53.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: osdmap e22: 5 total, 4 up, 5 in 2026-02-19T11:23:53.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:53 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:54.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: purged_snaps scrub starts 2026-02-19T11:23:54.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:23:54.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: pgmap v43: 1 pgs: 1 active+clean; 577 KiB data, 83 MiB used, 2.1 TiB / 2.1 TiB avail 2026-02-19T11:23:54.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: osd.3 [v2:10.20.193.132:6808/676626555,v1:10.20.193.132:6809/676626555] boot 2026-02-19T11:23:54.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: osdmap e21: 5 total, 4 up, 5 in 2026-02-19T11:23:54.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2026-02-19T11:23:54.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:54.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: osdmap e22: 5 total, 4 up, 5 in 2026-02-19T11:23:54.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:53 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:54.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-19T11:23:54.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:54.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: Deploying daemon osd.4 on trial186 2026-02-19T11:23:54.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: osdmap e23: 5 total, 4 up, 5 in 2026-02-19T11:23:54.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:54.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-19T11:23:54.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:54 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: Deploying daemon osd.4 on trial186 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: osdmap e23: 5 total, 4 up, 5 in 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-19T11:23:54.866 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:54 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:54.942 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-19T11:23:54.942 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:54.942 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: Deploying daemon osd.4 on trial186 2026-02-19T11:23:54.942 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: osdmap e23: 5 total, 4 up, 5 in 2026-02-19T11:23:54.943 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:54.943 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2026-02-19T11:23:54.943 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:23:55.955 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:55 trial186 ceph-mon[24984]: Deploying daemon osd.4 on trial186 2026-02-19T11:23:55.955 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:55 trial186 ceph-mon[24984]: pgmap v47: 1 pgs: 1 remapped; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:23:55.956 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:55 trial186 ceph-mon[24984]: osdmap e24: 5 total, 4 up, 5 in 2026-02-19T11:23:55.956 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:55 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:55.956 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:55 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:55.956 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:55 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:55 trial010 ceph-mon[21676]: Deploying daemon osd.4 on trial186 2026-02-19T11:23:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:55 trial010 ceph-mon[21676]: pgmap v47: 1 pgs: 1 remapped; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:23:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:55 trial010 ceph-mon[21676]: osdmap e24: 5 total, 4 up, 5 in 2026-02-19T11:23:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:55 trial132 ceph-mon[25485]: Deploying daemon osd.4 on trial186 2026-02-19T11:23:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:55 trial132 ceph-mon[25485]: pgmap v47: 1 pgs: 1 remapped; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:23:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:55 trial132 ceph-mon[25485]: osdmap e24: 5 total, 4 up, 5 in 2026-02-19T11:23:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:56.826 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:56 trial186 ceph-mon[24984]: osdmap e25: 5 total, 4 up, 5 in 2026-02-19T11:23:56.826 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:56 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:57.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:56 trial010 ceph-mon[21676]: osdmap e25: 5 total, 4 up, 5 in 2026-02-19T11:23:57.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:56 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:57.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:56 trial132 ceph-mon[25485]: osdmap e25: 5 total, 4 up, 5 in 2026-02-19T11:23:57.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:56 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:58.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:57 trial010 ceph-mon[21676]: pgmap v50: 1 pgs: 1 remapped; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:23:58.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:57 trial186 ceph-mon[24984]: pgmap v50: 1 pgs: 1 remapped; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:23:58.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:57 trial132 ceph-mon[25485]: pgmap v50: 1 pgs: 1 remapped; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:23:58.398 INFO:teuthology.orchestra.run.trial186.stdout:Created osd(s) 4 on host 'trial186' 2026-02-19T11:23:58.440 DEBUG:teuthology.orchestra.run.trial186:osd.4> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.4.service 2026-02-19T11:23:58.484 INFO:tasks.cephadm:Deploying osd.5 on trial186 with /dev/vg_nvme/lv_3... 2026-02-19T11:23:58.484 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec ceph-volume -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- lvm zap /dev/vg_nvme/lv_3 2026-02-19T11:23:58.639 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.c/config 2026-02-19T11:23:58.990 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:58 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:58.990 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:58 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:58.991 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:58 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:58.991 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:58 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:58.991 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:58 trial186 ceph-mon[24984]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-19T11:23:58.991 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:58 trial186 ceph-mon[24984]: from='osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-19T11:23:59.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:58 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:58 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:58 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:58 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:58 trial010 ceph-mon[21676]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-19T11:23:59.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:58 trial010 ceph-mon[21676]: from='osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-19T11:23:59.168 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:58 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.168 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:58 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.168 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:58 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.168 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:58 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.168 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:58 trial132 ceph-mon[25485]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-19T11:23:59.168 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:58 trial132 ceph-mon[25485]: from='osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2026-02-19T11:23:59.340 INFO:teuthology.orchestra.run.trial186.stdout: 2026-02-19T11:23:59.357 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph orch daemon add osd trial186:vg_nvme/lv_3 --skip-validation 2026-02-19T11:23:59.477 INFO:teuthology.orchestra.run.trial186.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.c/config 2026-02-19T11:23:59.810 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 100 KiB/s, 0 objects/s recovering 2026-02-19T11:23:59.810 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: osdmap e26: 5 total, 4 up, 5 in 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:23:59.811 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:23:59.812 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:23:59.812 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.812 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:23:59.812 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:23:59.812 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:23:59.812 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:23:59 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 100 KiB/s, 0 objects/s recovering 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: osdmap e26: 5 total, 4 up, 5 in 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:00.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:23:59 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:00.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: pgmap v51: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 100 KiB/s, 0 objects/s recovering 2026-02-19T11:24:00.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:00.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: osdmap e26: 5 total, 4 up, 5 in 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:00.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:00.217 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:23:59 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:00.664 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:00 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4[30027]: 2026-02-19T11:24:00.399+0000 7fd965fe1640 -1 osd.4 0 waiting for initial osdmap 2026-02-19T11:24:00.665 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:00 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4[30027]: 2026-02-19T11:24:00.402+0000 7fd95dea0640 -1 osd.4 27 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-19T11:24:01.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial186:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:01.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: osd.default does not exist. Creating it now. 2026-02-19T11:24:01.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: Creating OSDs with service ID: default on trial186:['vg_nvme/lv_3'] 2026-02-19T11:24:01.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: Marking host: trial186 for OSDSpec preview refresh. 2026-02-19T11:24:01.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: Saving service osd.default spec with placement trial186 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]}]': finished 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: osdmap e27: 5 total, 4 up, 5 in 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:01.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:00 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:01.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial186:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:01.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: osd.default does not exist. Creating it now. 2026-02-19T11:24:01.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: Creating OSDs with service ID: default on trial186:['vg_nvme/lv_3'] 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: Marking host: trial186 for OSDSpec preview refresh. 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: Saving service osd.default spec with placement trial186 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]}]': finished 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: osdmap e27: 5 total, 4 up, 5 in 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:01.097 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:00 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:01.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='client.24211 -' entity='client.admin' cmd=[{"prefix": "orch daemon add osd", "svc_arg": "trial186:vg_nvme/lv_3", "skip_validation": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:01.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: osd.default does not exist. Creating it now. 2026-02-19T11:24:01.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: Creating OSDs with service ID: default on trial186:['vg_nvme/lv_3'] 2026-02-19T11:24:01.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: Marking host: trial186 for OSDSpec preview refresh. 2026-02-19T11:24:01.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: Saving service osd.default spec with placement trial186 2026-02-19T11:24:01.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.6836, "args": ["host=trial186", "root=default"]}]': finished 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: osdmap e27: 5 total, 4 up, 5 in 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:01.217 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:01.217 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:01.217 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:01.217 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:01.217 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:00 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:02.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: purged_snaps scrub starts 2026-02-19T11:24:02.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:24:02.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 100 KiB/s, 0 objects/s recovering 2026-02-19T11:24:02.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: Detected new or changed devices on trial186 2026-02-19T11:24:02.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: Adjusting osd_memory_target on trial186 to 88143M 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"} : dispatch 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: from='client.? 10.20.193.186:0/3180927010' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"} : dispatch 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"}]': finished 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699] boot 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: osdmap e28: 6 total, 5 up, 6 in 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:02.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:01 trial010 ceph-mon[21676]: from='client.? 10.20.193.186:0/3923474073' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:24:02.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: purged_snaps scrub starts 2026-02-19T11:24:02.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: purged_snaps scrub ok 2026-02-19T11:24:02.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 100 KiB/s, 0 objects/s recovering 2026-02-19T11:24:02.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: Detected new or changed devices on trial186 2026-02-19T11:24:02.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: Adjusting osd_memory_target on trial186 to 88143M 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"} : dispatch 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: from='client.? 10.20.193.186:0/3180927010' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"} : dispatch 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"}]': finished 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699] boot 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: osdmap e28: 6 total, 5 up, 6 in 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:02.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:01 trial186 ceph-mon[24984]: from='client.? 10.20.193.186:0/3923474073' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: purged_snaps scrub starts 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: pgmap v54: 1 pgs: 1 active+clean; 577 KiB data, 108 MiB used, 2.7 TiB / 2.7 TiB avail; 100 KiB/s, 0 objects/s recovering 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: Detected new or changed devices on trial186 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: Adjusting osd_memory_target on trial186 to 88143M 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"} : dispatch 2026-02-19T11:24:02.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: from='client.? 10.20.193.186:0/3180927010' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"} : dispatch 2026-02-19T11:24:02.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65"}]': finished 2026-02-19T11:24:02.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: osd.4 [v2:10.20.193.186:6800/3613126699,v1:10.20.193.186:6801/3613126699] boot 2026-02-19T11:24:02.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: osdmap e28: 6 total, 5 up, 6 in 2026-02-19T11:24:02.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2026-02-19T11:24:02.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:02.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:01 trial132 ceph-mon[25485]: from='client.? 10.20.193.186:0/3923474073' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2026-02-19T11:24:03.202 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:03 trial186 ceph-mon[24984]: osdmap e29: 6 total, 5 up, 6 in 2026-02-19T11:24:03.202 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:03 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:03.202 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:03 trial186 ceph-mon[24984]: pgmap v57: 1 pgs: 1 active+clean; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:03.464 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:03 trial132 ceph-mon[25485]: osdmap e29: 6 total, 5 up, 6 in 2026-02-19T11:24:03.464 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:03 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:03.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:03 trial132 ceph-mon[25485]: pgmap v57: 1 pgs: 1 active+clean; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:03.540 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:03 trial010 ceph-mon[21676]: osdmap e29: 6 total, 5 up, 6 in 2026-02-19T11:24:03.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:03 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:03.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:03 trial010 ceph-mon[21676]: pgmap v57: 1 pgs: 1 active+clean; 577 KiB data, 134 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:04.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: osdmap e30: 6 total, 5 up, 6 in 2026-02-19T11:24:04.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:04.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:04.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:04.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: Deploying daemon osd.5 on trial186 2026-02-19T11:24:04.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:04.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:04.346 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:04 trial186 ceph-mon[24984]: Deploying daemon osd.5 on trial186 2026-02-19T11:24:04.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: osdmap e30: 6 total, 5 up, 6 in 2026-02-19T11:24:04.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:04.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:04.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:04.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: Deploying daemon osd.5 on trial186 2026-02-19T11:24:04.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:04.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:04.466 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:04 trial132 ceph-mon[25485]: Deploying daemon osd.5 on trial186 2026-02-19T11:24:04.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: osdmap e30: 6 total, 5 up, 6 in 2026-02-19T11:24:04.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:04.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:04.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:04.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: Deploying daemon osd.5 on trial186 2026-02-19T11:24:04.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:04.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:04.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:04 trial010 ceph-mon[21676]: Deploying daemon osd.5 on trial186 2026-02-19T11:24:05.221 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:05 trial186 ceph-mon[24984]: osdmap e31: 6 total, 5 up, 6 in 2026-02-19T11:24:05.222 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:05.222 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:05 trial186 ceph-mon[24984]: pgmap v60: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:05.222 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:05.222 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:05 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:05.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:05 trial132 ceph-mon[25485]: osdmap e31: 6 total, 5 up, 6 in 2026-02-19T11:24:05.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:05 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:05.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:05 trial132 ceph-mon[25485]: pgmap v60: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:05.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:05 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:05.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:05 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:05 trial010 ceph-mon[21676]: osdmap e31: 6 total, 5 up, 6 in 2026-02-19T11:24:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:05 trial010 ceph-mon[21676]: pgmap v60: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:05.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:05 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:06.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:06 trial186 ceph-mon[24984]: osdmap e32: 6 total, 5 up, 6 in 2026-02-19T11:24:06.345 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:06 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:06.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:06 trial132 ceph-mon[25485]: osdmap e32: 6 total, 5 up, 6 in 2026-02-19T11:24:06.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:06 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:06.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:06 trial010 ceph-mon[21676]: osdmap e32: 6 total, 5 up, 6 in 2026-02-19T11:24:06.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:06 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:07.205 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:07 trial186 ceph-mon[24984]: pgmap v62: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:07.205 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:07 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:07.205 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:07 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:07.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:07 trial132 ceph-mon[25485]: pgmap v62: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:07.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:07 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:07.465 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:07 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:07.468 INFO:teuthology.orchestra.run.trial186.stdout:Created osd(s) 5 on host 'trial186' 2026-02-19T11:24:07.510 DEBUG:teuthology.orchestra.run.trial186:osd.5> sudo journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.5.service 2026-02-19T11:24:07.512 INFO:tasks.cephadm:Waiting for 6 OSDs to come up... 2026-02-19T11:24:07.512 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd stat -f json 2026-02-19T11:24:07.538 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:07 trial010 ceph-mon[21676]: pgmap v62: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:07.539 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:07 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:07.539 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:07 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:07.634 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:07.817 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:07 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5[38293]: 2026-02-19T11:24:07.675+0000 7f32e85c2780 -1 osd.5 0 log_to_monitors true 2026-02-19T11:24:07.851 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:07.891 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":32,"num_osds":6,"num_up_osds":5,"osd_up_since":1771500241,"num_in_osds":6,"osd_in_since":1771500241,"num_remapped_pgs":0} 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2027888507' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.532 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:08 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2027888507' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.564 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:08 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2027888507' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:08.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:08 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:08.892 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd stat -f json 2026-02-19T11:24:09.010 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:09.219 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:09.257 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":33,"num_osds":6,"num_up_osds":5,"osd_up_since":1771500241,"num_in_osds":6,"osd_in_since":1771500241,"num_remapped_pgs":0} 2026-02-19T11:24:09.520 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:09 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5[38293]: 2026-02-19T11:24:09.469+0000 7f32e4544640 -1 osd.5 0 waiting for initial osdmap 2026-02-19T11:24:09.520 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:09 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5[38293]: 2026-02-19T11:24:09.471+0000 7f32dc403640 -1 osd.5 34 set_numa_affinity unable to identify public interface '' numa node: (2) No such file or directory 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: osdmap e33: 6 total, 5 up, 6 in 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 106 KiB/s, 0 objects/s recovering 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3749263838' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:09.521 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.522 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:09.523 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:09.523 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:09 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:09.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-19T11:24:09.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: osdmap e33: 6 total, 5 up, 6 in 2026-02-19T11:24:09.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:09.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 106 KiB/s, 0 objects/s recovering 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3749263838' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.716 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:09.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:09.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:09.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:09.717 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:09 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:09.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2026-02-19T11:24:09.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: osdmap e33: 6 total, 5 up, 6 in 2026-02-19T11:24:09.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:09.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='osd.5 ' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:09.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]} : dispatch 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: pgmap v64: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 106 KiB/s, 0 objects/s recovering 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3749263838' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:09.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:09.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:09.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:09.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2026-02-19T11:24:09.793 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:09 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:10.259 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd stat -f json 2026-02-19T11:24:10.378 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:10.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:10 trial010 ceph-mon[21676]: Detected new or changed devices on trial186 2026-02-19T11:24:10.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:10 trial010 ceph-mon[21676]: Adjusting osd_memory_target on trial186 to 44071M 2026-02-19T11:24:10.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:10 trial010 ceph-mon[21676]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]}]': finished 2026-02-19T11:24:10.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:10 trial010 ceph-mon[21676]: osdmap e34: 6 total, 5 up, 6 in 2026-02-19T11:24:10.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:10 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:10.542 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:10 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:10.588 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:10.639 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":35,"num_osds":6,"num_up_osds":6,"osd_up_since":1771500250,"num_in_osds":6,"osd_in_since":1771500241,"num_remapped_pgs":1} 2026-02-19T11:24:10.640 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd dump --format=json 2026-02-19T11:24:10.756 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:10.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:10 trial186 ceph-mon[24984]: Detected new or changed devices on trial186 2026-02-19T11:24:10.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:10 trial186 ceph-mon[24984]: Adjusting osd_memory_target on trial186 to 44071M 2026-02-19T11:24:10.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:10 trial186 ceph-mon[24984]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]}]': finished 2026-02-19T11:24:10.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:10 trial186 ceph-mon[24984]: osdmap e34: 6 total, 5 up, 6 in 2026-02-19T11:24:10.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:10 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:10.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:10 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:10.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:10 trial132 ceph-mon[25485]: Detected new or changed devices on trial186 2026-02-19T11:24:10.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:10 trial132 ceph-mon[25485]: Adjusting osd_memory_target on trial186 to 44071M 2026-02-19T11:24:10.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:10 trial132 ceph-mon[25485]: from='osd.5 ' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.6836, "args": ["host=trial186", "root=default"]}]': finished 2026-02-19T11:24:10.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:10 trial132 ceph-mon[25485]: osdmap e34: 6 total, 5 up, 6 in 2026-02-19T11:24:10.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:10 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:10.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:10 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:10.971 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:10.972 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":35,"fsid":"3d5d7969-0d85-11f1-8034-d404e6e7d460","created":"2026-02-19T11:22:26.918742+0000","modified":"2026-02-19T11:24:10.466925+0000","last_up_change":"2026-02-19T11:24:10.466925+0000","last_in_change":"2026-02-19T11:24:01.057205+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-19T11:23:44.720673+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":"18","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":"aa408253-4254-475d-a2fb-52e2f8e88558","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6802","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6803","nonce":2719689322}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6804","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6805","nonce":2719689322}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6808","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6809","nonce":2719689322}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6806","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6807","nonce":2719689322}]},"public_addr":"10.20.193.10:6803/2719689322","cluster_addr":"10.20.193.10:6805/2719689322","heartbeat_back_addr":"10.20.193.10:6809/2719689322","heartbeat_front_addr":"10.20.193.10:6807/2719689322","state":["exists","up"]},{"osd":1,"uuid":"a2774c42-9a14-4ea7-920e-966b5dcc20a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":12,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6810","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6811","nonce":2070043594}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6812","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6813","nonce":2070043594}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6816","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6817","nonce":2070043594}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6814","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6815","nonce":2070043594}]},"public_addr":"10.20.193.10:6811/2070043594","cluster_addr":"10.20.193.10:6813/2070043594","heartbeat_back_addr":"10.20.193.10:6817/2070043594","heartbeat_front_addr":"10.20.193.10:6815/2070043594","state":["exists","up"]},{"osd":2,"uuid":"bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":16,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6800","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6801","nonce":4060289613}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6802","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6803","nonce":4060289613}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6806","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6807","nonce":4060289613}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6804","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6805","nonce":4060289613}]},"public_addr":"10.20.193.132:6801/4060289613","cluster_addr":"10.20.193.132:6803/4060289613","heartbeat_back_addr":"10.20.193.132:6807/4060289613","heartbeat_front_addr":"10.20.193.132:6805/4060289613","state":["exists","up"]},{"osd":3,"uuid":"2b82b4a9-e417-444c-b05f-9c5c5bedd6c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":34,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6808","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6809","nonce":676626555}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6810","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6811","nonce":676626555}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6814","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6815","nonce":676626555}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6812","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6813","nonce":676626555}]},"public_addr":"10.20.193.132:6809/676626555","cluster_addr":"10.20.193.132:6811/676626555","heartbeat_back_addr":"10.20.193.132:6815/676626555","heartbeat_front_addr":"10.20.193.132:6813/676626555","state":["exists","up"]},{"osd":4,"uuid":"debc3b0f-cf5f-495b-bc76-b37672ac763f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6800","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6801","nonce":3613126699}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6802","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6803","nonce":3613126699}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6806","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6807","nonce":3613126699}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6804","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6805","nonce":3613126699}]},"public_addr":"10.20.193.186:6801/3613126699","cluster_addr":"10.20.193.186:6803/3613126699","heartbeat_back_addr":"10.20.193.186:6807/3613126699","heartbeat_front_addr":"10.20.193.186:6805/3613126699","state":["exists","up"]},{"osd":5,"uuid":"5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6808","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6809","nonce":1091675022}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6810","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6811","nonce":1091675022}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6814","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6815","nonce":1091675022}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6812","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6813","nonce":1091675022}]},"public_addr":"10.20.193.186:6809/1091675022","cluster_addr":"10.20.193.186:6811/1091675022","heartbeat_back_addr":"10.20.193.186:6815/1091675022","heartbeat_front_addr":"10.20.193.186:6813/1091675022","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-19T11:23:24.735940+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-19T11:23:32.478323+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-19T11:23:41.941667+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-19T11:23:51.061859+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-19T11:23:59.363028+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.10:0/3273052009":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6800/771237931":"2026-02-20T11:22:46.510048+0000","10.20.193.10:0/3201910482":"2026-02-20T11:22:36.871025+0000","10.20.193.10:6801/771237931":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6801/3680169372":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/3741612206":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6800/3680169372":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/2507073660":"2026-02-20T11:22:46.510048+0000","10.20.193.10:0/113026406":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/3531562025":"2026-02-20T11:22:36.871025+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-19T11:24:11.010 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2026-02-19T11:23:44.720673+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': '18', '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-19T11:24:11.011 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd pool get .mgr pg_num 2026-02-19T11:24:11.129 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:11.334 INFO:teuthology.orchestra.run.trial010.stdout:pg_num: 1 2026-02-19T11:24:11.372 INFO:tasks.cephadm:Setting up client nodes... 2026-02-19T11:24:11.373 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph config log 1 --format=json 2026-02-19T11:24:11.490 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:11.700 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:11.700 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: purged_snaps scrub starts 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022] boot 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: osdmap e35: 6 total, 6 up, 6 in 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 106 KiB/s, 0 objects/s recovering 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3660067733' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:11.701 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/120286215' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:11.702 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:11 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2280090605' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-19T11:24:11.735 INFO:teuthology.orchestra.run.trial010.stdout:[{"version":16,"timestamp":"2026-02-19T11:24:09.311580+0000","name":"","changes":[{"name":"osd/host:trial186/osd_memory_target","previous_value":"92424898969","new_value":"46212449484"}]}] 2026-02-19T11:24:11.736 INFO:tasks.ceph_manager:config epoch is 16 2026-02-19T11:24:11.736 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2026-02-19T11:24:11.736 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2026-02-19T11:24:11.736 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph mgr dump --format=json 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: purged_snaps scrub starts 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: purged_snaps scrub ok 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022] boot 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: osdmap e35: 6 total, 6 up, 6 in 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 106 KiB/s, 0 objects/s recovering 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3660067733' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/120286215' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:11.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:11 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2280090605' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-19T11:24:11.852 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:11.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: purged_snaps scrub starts 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: osd.5 [v2:10.20.193.186:6808/1091675022,v1:10.20.193.186:6809/1091675022] boot 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: osdmap e35: 6 total, 6 up, 6 in 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: pgmap v67: 1 pgs: 1 active+clean; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail; 106 KiB/s, 0 objects/s recovering 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3660067733' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/120286215' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:11.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:11 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2280090605' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2026-02-19T11:24:12.094 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:12.131 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":15,"flags":0,"active_gid":14152,"active_name":"a","active_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6800","nonce":522218057},{"type":"v1","addr":"10.20.193.10:6801","nonce":522218057}]},"active_addr":"10.20.193.10:6801/522218057","active_change":"2026-02-19T11:22:46.510154+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 the agent on each host will 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":"The first TCP port the agent will try to bind to. Up to 1000 subsequent ports will be attempted if this port cannot be bound","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 option can facilitate debugging daemons that encounter runtime problems.","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":"Fraction of total system memory to divide among autotuned daemons. Converged systems hosting both Ceph and compute should set a lower value; systems with more than 10 GiB of memory per OSD may benefit from a slightly larger value so that the abundance of RAM can be fully utilized","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 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-signed certificates generated and signed by the 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 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_alloy":{"name":"container_image_alloy","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/alloy:latest","min":"","max":"","enum_allowed":[],"desc":"Alloy 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.6","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:devbuilds-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:devbuilds-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 for which 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 for which 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 for which 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","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":"Whether the hardware monitoring daemon be deployed 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 the 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 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: guard against mistakes and runaways","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":[]},"max_parallel_osd_upgrades":{"name":"max_parallel_osd_upgrades","type":"int","level":"advanced","flags":0,"default_value":"16","min":"","max":"","enum_allowed":[],"desc":"Maximum number of OSD daemons upgraded in parallel.","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 IP 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 Alertmanager","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 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 distribute 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 sequential SSH connection liveness check failures 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 the 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 to ensure that 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":[]},"healthcheck_history_max_entries":{"name":"healthcheck_history_max_entries","type":"int","level":"advanced","flags":1,"default_value":"1000","min":"","max":"","enum_allowed":[],"desc":"Maximum number of health check history entries to keep","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":[]},"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 the agent on each host will 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":"The first TCP port the agent will try to bind to. Up to 1000 subsequent ports will be attempted if this port cannot be bound","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 option can facilitate debugging daemons that encounter runtime problems.","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":"Fraction of total system memory to divide among autotuned daemons. Converged systems hosting both Ceph and compute should set a lower value; systems with more than 10 GiB of memory per OSD may benefit from a slightly larger value so that the abundance of RAM can be fully utilized","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 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-signed certificates generated and signed by the 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 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_alloy":{"name":"container_image_alloy","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/alloy:latest","min":"","max":"","enum_allowed":[],"desc":"Alloy 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.6","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:devbuilds-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:devbuilds-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 for which 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 for which 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 for which 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","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":"Whether the hardware monitoring daemon be deployed 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 the 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 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: guard against mistakes and runaways","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":[]},"max_parallel_osd_upgrades":{"name":"max_parallel_osd_upgrades","type":"int","level":"advanced","flags":0,"default_value":"16","min":"","max":"","enum_allowed":[],"desc":"Maximum number of OSD daemons upgraded in parallel.","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 IP 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 Alertmanager","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 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 distribute 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 sequential SSH connection liveness check failures 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 the 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 to ensure that 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":[]},"healthcheck_history_max_entries":{"name":"healthcheck_history_max_entries","type":"int","level":"advanced","flags":1,"default_value":"1000","min":"","max":"","enum_allowed":[],"desc":"Maximum number of health check history entries to keep","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":[]},"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.10: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.10:0","nonce":4162079963}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"10.20.193.10:0","nonce":3025026938}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"10.20.193.10:0","nonce":1195039360}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"10.20.193.10:0","nonce":3930352988}]}]} 2026-02-19T11:24:12.136 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2026-02-19T11:24:12.136 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2026-02-19T11:24:12.136 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd dump --format=json 2026-02-19T11:24:12.252 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.462 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:12.462 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":36,"fsid":"3d5d7969-0d85-11f1-8034-d404e6e7d460","created":"2026-02-19T11:22:26.918742+0000","modified":"2026-02-19T11:24:11.471039+0000","last_up_change":"2026-02-19T11:24:10.466925+0000","last_in_change":"2026-02-19T11:24:01.057205+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-19T11:23:44.720673+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":"18","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":"aa408253-4254-475d-a2fb-52e2f8e88558","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6802","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6803","nonce":2719689322}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6804","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6805","nonce":2719689322}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6808","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6809","nonce":2719689322}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6806","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6807","nonce":2719689322}]},"public_addr":"10.20.193.10:6803/2719689322","cluster_addr":"10.20.193.10:6805/2719689322","heartbeat_back_addr":"10.20.193.10:6809/2719689322","heartbeat_front_addr":"10.20.193.10:6807/2719689322","state":["exists","up"]},{"osd":1,"uuid":"a2774c42-9a14-4ea7-920e-966b5dcc20a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":12,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6810","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6811","nonce":2070043594}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6812","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6813","nonce":2070043594}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6816","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6817","nonce":2070043594}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6814","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6815","nonce":2070043594}]},"public_addr":"10.20.193.10:6811/2070043594","cluster_addr":"10.20.193.10:6813/2070043594","heartbeat_back_addr":"10.20.193.10:6817/2070043594","heartbeat_front_addr":"10.20.193.10:6815/2070043594","state":["exists","up"]},{"osd":2,"uuid":"bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":16,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6800","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6801","nonce":4060289613}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6802","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6803","nonce":4060289613}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6806","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6807","nonce":4060289613}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6804","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6805","nonce":4060289613}]},"public_addr":"10.20.193.132:6801/4060289613","cluster_addr":"10.20.193.132:6803/4060289613","heartbeat_back_addr":"10.20.193.132:6807/4060289613","heartbeat_front_addr":"10.20.193.132:6805/4060289613","state":["exists","up"]},{"osd":3,"uuid":"2b82b4a9-e417-444c-b05f-9c5c5bedd6c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":35,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6808","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6809","nonce":676626555}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6810","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6811","nonce":676626555}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6814","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6815","nonce":676626555}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6812","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6813","nonce":676626555}]},"public_addr":"10.20.193.132:6809/676626555","cluster_addr":"10.20.193.132:6811/676626555","heartbeat_back_addr":"10.20.193.132:6815/676626555","heartbeat_front_addr":"10.20.193.132:6813/676626555","state":["exists","up"]},{"osd":4,"uuid":"debc3b0f-cf5f-495b-bc76-b37672ac763f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6800","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6801","nonce":3613126699}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6802","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6803","nonce":3613126699}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6806","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6807","nonce":3613126699}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6804","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6805","nonce":3613126699}]},"public_addr":"10.20.193.186:6801/3613126699","cluster_addr":"10.20.193.186:6803/3613126699","heartbeat_back_addr":"10.20.193.186:6807/3613126699","heartbeat_front_addr":"10.20.193.186:6805/3613126699","state":["exists","up"]},{"osd":5,"uuid":"5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6808","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6809","nonce":1091675022}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6810","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6811","nonce":1091675022}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6814","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6815","nonce":1091675022}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6812","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6813","nonce":1091675022}]},"public_addr":"10.20.193.186:6809/1091675022","cluster_addr":"10.20.193.186:6811/1091675022","heartbeat_back_addr":"10.20.193.186:6815/1091675022","heartbeat_front_addr":"10.20.193.186:6813/1091675022","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-19T11:23:24.735940+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-19T11:23:32.478323+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-19T11:23:41.941667+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-19T11:23:51.061859+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-19T11:23:59.363028+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-19T11:24:08.637821+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.10:0/3273052009":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6800/771237931":"2026-02-20T11:22:46.510048+0000","10.20.193.10:0/3201910482":"2026-02-20T11:22:36.871025+0000","10.20.193.10:6801/771237931":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6801/3680169372":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/3741612206":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6800/3680169372":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/2507073660":"2026-02-20T11:22:46.510048+0000","10.20.193.10:0/113026406":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/3531562025":"2026-02-20T11:22:36.871025+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-19T11:24:12.498 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2026-02-19T11:24:12.498 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd dump --format=json 2026-02-19T11:24:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:12 trial010 ceph-mon[21676]: osdmap e36: 6 total, 6 up, 6 in 2026-02-19T11:24:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:12 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1830752127' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-19T11:24:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:12 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3222653095' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-19T11:24:12.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:12 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3269459775' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:12.614 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.824 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:12.825 INFO:teuthology.orchestra.run.trial010.stdout:{"epoch":38,"fsid":"3d5d7969-0d85-11f1-8034-d404e6e7d460","created":"2026-02-19T11:22:26.918742+0000","modified":"2026-02-19T11:24:12.755254+0000","last_up_change":"2026-02-19T11:24:10.466925+0000","last_in_change":"2026-02-19T11:24:01.057205+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-19T11:23:44.720673+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":"18","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":"aa408253-4254-475d-a2fb-52e2f8e88558","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":8,"up_thru":23,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6802","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6803","nonce":2719689322}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6804","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6805","nonce":2719689322}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6808","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6809","nonce":2719689322}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6806","nonce":2719689322},{"type":"v1","addr":"10.20.193.10:6807","nonce":2719689322}]},"public_addr":"10.20.193.10:6803/2719689322","cluster_addr":"10.20.193.10:6805/2719689322","heartbeat_back_addr":"10.20.193.10:6809/2719689322","heartbeat_front_addr":"10.20.193.10:6807/2719689322","state":["exists","up"]},{"osd":1,"uuid":"a2774c42-9a14-4ea7-920e-966b5dcc20a9","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":12,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6810","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6811","nonce":2070043594}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6812","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6813","nonce":2070043594}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6816","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6817","nonce":2070043594}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.10:6814","nonce":2070043594},{"type":"v1","addr":"10.20.193.10:6815","nonce":2070043594}]},"public_addr":"10.20.193.10:6811/2070043594","cluster_addr":"10.20.193.10:6813/2070043594","heartbeat_back_addr":"10.20.193.10:6817/2070043594","heartbeat_front_addr":"10.20.193.10:6815/2070043594","state":["exists","up"]},{"osd":2,"uuid":"bb6a704c-bf0f-4dfc-adf6-7d2eb1ac12ed","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":15,"up_thru":16,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6800","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6801","nonce":4060289613}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6802","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6803","nonce":4060289613}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6806","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6807","nonce":4060289613}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6804","nonce":4060289613},{"type":"v1","addr":"10.20.193.132:6805","nonce":4060289613}]},"public_addr":"10.20.193.132:6801/4060289613","cluster_addr":"10.20.193.132:6803/4060289613","heartbeat_back_addr":"10.20.193.132:6807/4060289613","heartbeat_front_addr":"10.20.193.132:6805/4060289613","state":["exists","up"]},{"osd":3,"uuid":"2b82b4a9-e417-444c-b05f-9c5c5bedd6c8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":21,"up_thru":37,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6808","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6809","nonce":676626555}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6810","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6811","nonce":676626555}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6814","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6815","nonce":676626555}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.132:6812","nonce":676626555},{"type":"v1","addr":"10.20.193.132:6813","nonce":676626555}]},"public_addr":"10.20.193.132:6809/676626555","cluster_addr":"10.20.193.132:6811/676626555","heartbeat_back_addr":"10.20.193.132:6815/676626555","heartbeat_front_addr":"10.20.193.132:6813/676626555","state":["exists","up"]},{"osd":4,"uuid":"debc3b0f-cf5f-495b-bc76-b37672ac763f","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":28,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6800","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6801","nonce":3613126699}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6802","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6803","nonce":3613126699}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6806","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6807","nonce":3613126699}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6804","nonce":3613126699},{"type":"v1","addr":"10.20.193.186:6805","nonce":3613126699}]},"public_addr":"10.20.193.186:6801/3613126699","cluster_addr":"10.20.193.186:6803/3613126699","heartbeat_back_addr":"10.20.193.186:6807/3613126699","heartbeat_front_addr":"10.20.193.186:6805/3613126699","state":["exists","up"]},{"osd":5,"uuid":"5c6a3b1d-17d4-484c-b8ae-ab4ce314ce65","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6808","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6809","nonce":1091675022}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6810","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6811","nonce":1091675022}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6814","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6815","nonce":1091675022}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"10.20.193.186:6812","nonce":1091675022},{"type":"v1","addr":"10.20.193.186:6813","nonce":1091675022}]},"public_addr":"10.20.193.186:6809/1091675022","cluster_addr":"10.20.193.186:6811/1091675022","heartbeat_back_addr":"10.20.193.186:6815/1091675022","heartbeat_front_addr":"10.20.193.186:6813/1091675022","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-19T11:23:24.735940+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-19T11:23:32.478323+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-19T11:23:41.941667+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-19T11:23:51.061859+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-19T11:23:59.363028+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-19T11:24:08.637821+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"10.20.193.10:0/3273052009":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6800/771237931":"2026-02-20T11:22:46.510048+0000","10.20.193.10:0/3201910482":"2026-02-20T11:22:36.871025+0000","10.20.193.10:6801/771237931":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6801/3680169372":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/3741612206":"2026-02-20T11:22:46.510048+0000","10.20.193.10:6800/3680169372":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/2507073660":"2026-02-20T11:22:46.510048+0000","10.20.193.10:0/113026406":"2026-02-20T11:22:36.871025+0000","10.20.193.10:0/3531562025":"2026-02-20T11:22:36.871025+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-19T11:24:12.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:12 trial186 ceph-mon[24984]: osdmap e36: 6 total, 6 up, 6 in 2026-02-19T11:24:12.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:12 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1830752127' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-19T11:24:12.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:12 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3222653095' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-19T11:24:12.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:12 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3269459775' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:12.862 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph tell osd.0 flush_pg_stats 2026-02-19T11:24:12.862 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph tell osd.1 flush_pg_stats 2026-02-19T11:24:12.863 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph tell osd.2 flush_pg_stats 2026-02-19T11:24:12.863 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph tell osd.3 flush_pg_stats 2026-02-19T11:24:12.864 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph tell osd.4 flush_pg_stats 2026-02-19T11:24:12.864 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph tell osd.5 flush_pg_stats 2026-02-19T11:24:12.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:12 trial132 ceph-mon[25485]: osdmap e36: 6 total, 6 up, 6 in 2026-02-19T11:24:12.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:12 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/1830752127' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2026-02-19T11:24:12.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:12 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3222653095' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2026-02-19T11:24:12.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:12 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3269459775' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:12.984 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.988 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.989 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.991 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.992 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:12.994 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.158 INFO:teuthology.orchestra.run.trial010.stdout:64424509448 2026-02-19T11:24:13.158 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-19T11:24:13.162 INFO:teuthology.orchestra.run.trial010.stdout:90194313222 2026-02-19T11:24:13.162 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-19T11:24:13.173 INFO:teuthology.orchestra.run.trial010.stdout:150323855364 2026-02-19T11:24:13.174 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-19T11:24:13.177 INFO:teuthology.orchestra.run.trial010.stdout:51539607562 2026-02-19T11:24:13.177 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-19T11:24:13.180 INFO:teuthology.orchestra.run.trial010.stdout:120259084292 2026-02-19T11:24:13.180 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-19T11:24:13.187 INFO:teuthology.orchestra.run.trial010.stdout:34359738381 2026-02-19T11:24:13.187 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-19T11:24:13.277 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.298 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.299 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.300 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.343 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.345 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:13.501 INFO:teuthology.orchestra.run.trial010.stdout:64424509447 2026-02-19T11:24:13.510 INFO:teuthology.orchestra.run.trial010.stdout:150323855363 2026-02-19T11:24:13.514 INFO:teuthology.orchestra.run.trial010.stdout:90194313220 2026-02-19T11:24:13.516 INFO:teuthology.orchestra.run.trial010.stdout:51539607561 2026-02-19T11:24:13.544 INFO:tasks.cephadm.ceph_manager.ceph:need seq 64424509448 got 64424509447 for osd.2 2026-02-19T11:24:13.555 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855364 got 150323855363 for osd.5 2026-02-19T11:24:13.563 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313222 got 90194313220 for osd.3 2026-02-19T11:24:13.568 INFO:tasks.cephadm.ceph_manager.ceph:need seq 51539607562 got 51539607561 for osd.1 2026-02-19T11:24:13.573 INFO:teuthology.orchestra.run.trial010.stdout:34359738379 2026-02-19T11:24:13.581 INFO:teuthology.orchestra.run.trial010.stdout:120259084291 2026-02-19T11:24:13.612 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:13 trial010 ceph-mon[21676]: osdmap e37: 6 total, 6 up, 6 in 2026-02-19T11:24:13.612 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:13 trial010 ceph-mon[21676]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:13.613 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:13 trial010 ceph-mon[21676]: osdmap e38: 6 total, 6 up, 6 in 2026-02-19T11:24:13.613 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:13 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2393903457' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:13.614 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738381 got 34359738379 for osd.0 2026-02-19T11:24:13.616 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084292 got 120259084291 for osd.4 2026-02-19T11:24:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:13 trial186 ceph-mon[24984]: osdmap e37: 6 total, 6 up, 6 in 2026-02-19T11:24:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:13 trial186 ceph-mon[24984]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:13 trial186 ceph-mon[24984]: osdmap e38: 6 total, 6 up, 6 in 2026-02-19T11:24:13.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:13 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2393903457' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:13.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:13 trial132 ceph-mon[25485]: osdmap e37: 6 total, 6 up, 6 in 2026-02-19T11:24:13.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:13 trial132 ceph-mon[25485]: pgmap v70: 1 pgs: 1 active+clean; 577 KiB data, 161 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:13.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:13 trial132 ceph-mon[25485]: osdmap e38: 6 total, 6 up, 6 in 2026-02-19T11:24:13.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:13 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2393903457' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2026-02-19T11:24:14.546 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-19T11:24:14.556 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-19T11:24:14.564 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-19T11:24:14.569 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-19T11:24:14.614 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-19T11:24:14.617 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3208449404' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/195014222' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3001559707' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2119343480' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/3552235117' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1650454332' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:14.655 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:14 trial010 ceph-mon[21676]: osdmap e39: 6 total, 6 up, 6 in 2026-02-19T11:24:14.665 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:14.708 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:14.711 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:14.712 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:14.753 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:14.754 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3208449404' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/195014222' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3001559707' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2119343480' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/3552235117' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1650454332' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:14.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:14 trial186 ceph-mon[24984]: osdmap e39: 6 total, 6 up, 6 in 2026-02-19T11:24:14.896 INFO:teuthology.orchestra.run.trial010.stdout:64424509447 2026-02-19T11:24:14.939 INFO:tasks.cephadm.ceph_manager.ceph:need seq 64424509448 got 64424509447 for osd.2 2026-02-19T11:24:14.943 INFO:teuthology.orchestra.run.trial010.stdout:90194313220 2026-02-19T11:24:14.947 INFO:teuthology.orchestra.run.trial010.stdout:51539607561 2026-02-19T11:24:14.948 INFO:teuthology.orchestra.run.trial010.stdout:150323855363 2026-02-19T11:24:14.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3208449404' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:14.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/195014222' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:14.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3001559707' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:14.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2119343480' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:14.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/3552235117' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:14.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/1650454332' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:14.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:14 trial132 ceph-mon[25485]: osdmap e39: 6 total, 6 up, 6 in 2026-02-19T11:24:14.986 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313222 got 90194313220 for osd.3 2026-02-19T11:24:14.988 INFO:tasks.cephadm.ceph_manager.ceph:need seq 51539607562 got 51539607561 for osd.1 2026-02-19T11:24:14.989 INFO:teuthology.orchestra.run.trial010.stdout:34359738379 2026-02-19T11:24:14.991 INFO:teuthology.orchestra.run.trial010.stdout:120259084291 2026-02-19T11:24:14.996 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855364 got 150323855363 for osd.5 2026-02-19T11:24:15.030 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084292 got 120259084291 for osd.4 2026-02-19T11:24:15.031 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738381 got 34359738379 for osd.0 2026-02-19T11:24:15.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: pgmap v73: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 144 KiB/s, 0 objects/s recovering 2026-02-19T11:24:15.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/156061341' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:15.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/942592725' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:15.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/683848769' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:15.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1559695193' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:15.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1835973635' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:15.792 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:15 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2746306567' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: pgmap v73: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 144 KiB/s, 0 objects/s recovering 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/156061341' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/942592725' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/683848769' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1559695193' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1835973635' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:15.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:15 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2746306567' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:15.940 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.2 2026-02-19T11:24:15.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: pgmap v73: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 144 KiB/s, 0 objects/s recovering 2026-02-19T11:24:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/156061341' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/942592725' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/683848769' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/1559695193' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/1835973635' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:15.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:15 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2746306567' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:15.986 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.3 2026-02-19T11:24:15.989 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.1 2026-02-19T11:24:15.997 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.5 2026-02-19T11:24:16.031 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.4 2026-02-19T11:24:16.031 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph osd last-stat-seq osd.0 2026-02-19T11:24:16.058 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.102 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.149 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.150 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.181 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.184 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.285 INFO:teuthology.orchestra.run.trial010.stdout:64424509449 2026-02-19T11:24:16.327 INFO:tasks.cephadm.ceph_manager.ceph:need seq 64424509448 got 64424509449 for osd.2 2026-02-19T11:24:16.327 DEBUG:teuthology.parallel:result is None 2026-02-19T11:24:16.332 INFO:teuthology.orchestra.run.trial010.stdout:90194313222 2026-02-19T11:24:16.372 INFO:tasks.cephadm.ceph_manager.ceph:need seq 90194313222 got 90194313222 for osd.3 2026-02-19T11:24:16.372 DEBUG:teuthology.parallel:result is None 2026-02-19T11:24:16.382 INFO:teuthology.orchestra.run.trial010.stdout:150323855364 2026-02-19T11:24:16.385 INFO:teuthology.orchestra.run.trial010.stdout:51539607563 2026-02-19T11:24:16.389 INFO:teuthology.orchestra.run.trial010.stdout:34359738381 2026-02-19T11:24:16.399 INFO:teuthology.orchestra.run.trial010.stdout:120259084292 2026-02-19T11:24:16.432 INFO:tasks.cephadm.ceph_manager.ceph:need seq 51539607562 got 51539607563 for osd.1 2026-02-19T11:24:16.432 DEBUG:teuthology.parallel:result is None 2026-02-19T11:24:16.434 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855364 got 150323855364 for osd.5 2026-02-19T11:24:16.434 DEBUG:teuthology.parallel:result is None 2026-02-19T11:24:16.438 INFO:tasks.cephadm.ceph_manager.ceph:need seq 34359738381 got 34359738381 for osd.0 2026-02-19T11:24:16.438 DEBUG:teuthology.parallel:result is None 2026-02-19T11:24:16.442 INFO:tasks.cephadm.ceph_manager.ceph:need seq 120259084292 got 120259084292 for osd.4 2026-02-19T11:24:16.442 DEBUG:teuthology.parallel:result is None 2026-02-19T11:24:16.442 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2026-02-19T11:24:16.442 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph pg dump --format=json 2026-02-19T11:24:16.600 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/922476236' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:16.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2064336942' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:16.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2086262737' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:16.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/4193054753' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:16.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2716490165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:16.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:16 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/1659957943' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:16.807 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:16.808 INFO:teuthology.orchestra.run.trial010.stderr:dumped all 2026-02-19T11:24:16.843 INFO:teuthology.orchestra.run.trial010.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-19T11:24:16.521629+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":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":4404019200,"kb_used":165660,"kb_used_data":3876,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853540,"statfs":{"total":4509715660800,"available":4509546024960,"internally_reserved":0,"allocated":3969024,"data_stored":2601550,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90451,"internal_metadata":165453485},"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":"5.048596"},"pg_stats":[{"pgid":"1.0","version":"17'132","reported_seq":234,"reported_epoch":37,"state":"peering","last_fresh":"2026-02-19T11:24:12.494850+0000","last_change":"2026-02-19T11:24:12.756482+0000","last_active":"2026-02-19T11:24:12.756482+0000","last_peered":"2026-02-19T11:24:12.494850+0000","last_clean":"2026-02-19T11:24:08.463313+0000","last_became_active":"2026-02-19T11:24:12.492493+0000","last_became_peered":"2026-02-19T11:24:12.492493+0000","last_unstale":"2026-02-19T11:24:12.494850+0000","last_undegraded":"2026-02-19T11:24:12.494850+0000","last_fullsized":"2026-02-19T11:24:12.473943+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":16,"last_epoch_clean":32,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_clean_scrub_stamp":"2026-02-19T11:23:45.356998+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,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[2,4,5],"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":35,"seq":150323855365,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4874,"internal_metadata":27585782},"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":28,"seq":120259084293,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"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":21,"seq":90194313222,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":15294,"internal_metadata":27575362},"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":15,"seq":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":18,"kb_used_meta":26925,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19202,"internal_metadata":27571454},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":12,"seq":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27320,"kb_used_data":356,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975880,"statfs":{"total":751619276800,"available":751591301120,"internally_reserved":0,"allocated":364544,"data_stored":138416,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":27296,"kb_used_data":332,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975904,"statfs":{"total":751619276800,"available":751591325696,"internally_reserved":0,"allocated":339968,"data_stored":128900,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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-19T11:24:16.845 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph pg dump --format=json 2026-02-19T11:24:16.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/922476236' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:16.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2064336942' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:16.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2086262737' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:16.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/4193054753' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:16.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2716490165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:16.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:16 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/1659957943' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:16.961 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:16.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/922476236' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2026-02-19T11:24:16.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2064336942' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2026-02-19T11:24:16.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2086262737' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2026-02-19T11:24:16.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/4193054753' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2026-02-19T11:24:16.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2716490165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2026-02-19T11:24:16.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:16 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/1659957943' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2026-02-19T11:24:17.166 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:17.167 INFO:teuthology.orchestra.run.trial010.stderr:dumped all 2026-02-19T11:24:17.201 INFO:teuthology.orchestra.run.trial010.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-19T11:24:16.521629+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":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":4404019200,"kb_used":165660,"kb_used_data":3876,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853540,"statfs":{"total":4509715660800,"available":4509546024960,"internally_reserved":0,"allocated":3969024,"data_stored":2601550,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90451,"internal_metadata":165453485},"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":"5.048596"},"pg_stats":[{"pgid":"1.0","version":"17'132","reported_seq":234,"reported_epoch":37,"state":"peering","last_fresh":"2026-02-19T11:24:12.494850+0000","last_change":"2026-02-19T11:24:12.756482+0000","last_active":"2026-02-19T11:24:12.756482+0000","last_peered":"2026-02-19T11:24:12.494850+0000","last_clean":"2026-02-19T11:24:08.463313+0000","last_became_active":"2026-02-19T11:24:12.492493+0000","last_became_peered":"2026-02-19T11:24:12.492493+0000","last_unstale":"2026-02-19T11:24:12.494850+0000","last_undegraded":"2026-02-19T11:24:12.494850+0000","last_fullsized":"2026-02-19T11:24:12.473943+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":16,"last_epoch_clean":32,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_clean_scrub_stamp":"2026-02-19T11:23:45.356998+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,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[2,4,5],"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":35,"seq":150323855365,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4874,"internal_metadata":27585782},"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":28,"seq":120259084293,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"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":21,"seq":90194313222,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":15294,"internal_metadata":27575362},"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":15,"seq":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":18,"kb_used_meta":26925,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19202,"internal_metadata":27571454},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":12,"seq":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27320,"kb_used_data":356,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975880,"statfs":{"total":751619276800,"available":751591301120,"internally_reserved":0,"allocated":364544,"data_stored":138416,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":27296,"kb_used_data":332,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975904,"statfs":{"total":751619276800,"available":751591325696,"internally_reserved":0,"allocated":339968,"data_stored":128900,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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-19T11:24:17.203 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph pg dump --format=json 2026-02-19T11:24:17.319 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:17.526 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:17.526 INFO:teuthology.orchestra.run.trial010.stderr:dumped all 2026-02-19T11:24:17.563 INFO:teuthology.orchestra.run.trial010.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-19T11:24:16.521629+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":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":4404019200,"kb_used":165660,"kb_used_data":3876,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853540,"statfs":{"total":4509715660800,"available":4509546024960,"internally_reserved":0,"allocated":3969024,"data_stored":2601550,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90451,"internal_metadata":165453485},"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":"5.048596"},"pg_stats":[{"pgid":"1.0","version":"17'132","reported_seq":234,"reported_epoch":37,"state":"peering","last_fresh":"2026-02-19T11:24:12.494850+0000","last_change":"2026-02-19T11:24:12.756482+0000","last_active":"2026-02-19T11:24:12.756482+0000","last_peered":"2026-02-19T11:24:12.494850+0000","last_clean":"2026-02-19T11:24:08.463313+0000","last_became_active":"2026-02-19T11:24:12.492493+0000","last_became_peered":"2026-02-19T11:24:12.492493+0000","last_unstale":"2026-02-19T11:24:12.494850+0000","last_undegraded":"2026-02-19T11:24:12.494850+0000","last_fullsized":"2026-02-19T11:24:12.473943+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":16,"last_epoch_clean":32,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_clean_scrub_stamp":"2026-02-19T11:23:45.356998+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,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[2,4,5],"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":35,"seq":150323855365,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4874,"internal_metadata":27585782},"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":28,"seq":120259084293,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"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":21,"seq":90194313222,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":15294,"internal_metadata":27575362},"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":15,"seq":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":18,"kb_used_meta":26925,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19202,"internal_metadata":27571454},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":12,"seq":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27320,"kb_used_data":356,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975880,"statfs":{"total":751619276800,"available":751591301120,"internally_reserved":0,"allocated":364544,"data_stored":138416,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":27296,"kb_used_data":332,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975904,"statfs":{"total":751619276800,"available":751591325696,"internally_reserved":0,"allocated":339968,"data_stored":128900,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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-19T11:24:17.564 INFO:tasks.cephadm.ceph_manager.ceph:PG 1.0 is not active+clean 2026-02-19T11:24:17.564 INFO:tasks.cephadm.ceph_manager.ceph:{'pgid': '1.0', 'version': "17'132", 'reported_seq': 234, 'reported_epoch': 37, 'state': 'peering', 'last_fresh': '2026-02-19T11:24:12.494850+0000', 'last_change': '2026-02-19T11:24:12.756482+0000', 'last_active': '2026-02-19T11:24:12.756482+0000', 'last_peered': '2026-02-19T11:24:12.494850+0000', 'last_clean': '2026-02-19T11:24:08.463313+0000', 'last_became_active': '2026-02-19T11:24:12.492493+0000', 'last_became_peered': '2026-02-19T11:24:12.492493+0000', 'last_unstale': '2026-02-19T11:24:12.494850+0000', 'last_undegraded': '2026-02-19T11:24:12.494850+0000', 'last_fullsized': '2026-02-19T11:24:12.473943+0000', 'mapping_epoch': 38, 'log_start': "0'0", 'ondisk_log_start': "0'0", 'created': 16, 'last_epoch_clean': 32, 'parent': '0.0', 'parent_split_bits': 0, 'last_scrub': "0'0", 'last_scrub_stamp': '2026-02-19T11:23:45.356998+0000', 'last_deep_scrub': "0'0", 'last_deep_scrub_stamp': '2026-02-19T11:23:45.356998+0000', 'last_clean_scrub_stamp': '2026-02-19T11:23:45.356998+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, 5, 2], 'avail_no_missing': [], 'object_location_counts': [], 'blocked_by': [2, 4, 5], 'up_primary': 3, 'acting_primary': 3, 'purged_snaps': []} 2026-02-19T11:24:17.564 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph status --format=json 2026-02-19T11:24:17.680 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:17.702 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:17 trial010 ceph-mon[21676]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 114 KiB/s, 0 objects/s recovering 2026-02-19T11:24:17.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:17 trial186 ceph-mon[24984]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 114 KiB/s, 0 objects/s recovering 2026-02-19T11:24:17.928 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:17.929 INFO:teuthology.orchestra.run.trial010.stdout:{"fsid":"3d5d7969-0d85-11f1-8034-d404e6e7d460","health":{"status":"HEALTH_OK","checks":{},"mutes":[]},"election_epoch":14,"quorum":[0,1,2],"quorum_names":["a","c","b"],"quorum_age":66,"monmap":{"epoch":3,"min_mon_release_name":"tentacle","num_mons":3},"osdmap":{"epoch":39,"num_osds":6,"num_up_osds":6,"osd_up_since":1771500250,"num_in_osds":6,"osd_in_since":1771500241,"num_remapped_pgs":0},"pgmap":{"pgs_by_state":[{"state_name":"peering","count":1}],"num_pgs":1,"num_pools":1,"num_objects":2,"data_bytes":590368,"bytes_used":169635840,"bytes_avail":4509546024960,"bytes_total":4509715660800,"inactive_pgs_ratio":1,"recovering_objects_per_sec":0,"recovering_bytes_per_sec":116937,"recovering_keys_per_sec":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0},"fsmap":{"epoch":1,"btime":"2026-02-19T11:22:26:918583+0000","by_rank":[],"up:standby":0},"mgrmap":{"available":true,"num_standbys":1,"modules":["cephadm","dashboard","iostat","nfs"],"services":{"dashboard":"https://10.20.193.10:8443/"}},"servicemap":{"epoch":4,"modified":"2026-02-19T11:24:14.521436+0000","services":{"mgr":{"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-19T11:24:17.965 INFO:tasks.cephadm.ceph_manager.ceph:making progress, resetting timeout 2026-02-19T11:24:17.966 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph pg dump --format=json 2026-02-19T11:24:17.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:17 trial132 ceph-mon[25485]: pgmap v74: 1 pgs: 1 peering; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 114 KiB/s, 0 objects/s recovering 2026-02-19T11:24:18.081 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:18.287 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:18.287 INFO:teuthology.orchestra.run.trial010.stderr:dumped all 2026-02-19T11:24:18.325 INFO:teuthology.orchestra.run.trial010.stdout:{"pg_ready":true,"pg_map":{"version":74,"stamp":"2026-02-19T11:24:16.521629+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":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":4404019200,"kb_used":165660,"kb_used_data":3876,"kb_used_omap":88,"kb_used_meta":161575,"kb_avail":4403853540,"statfs":{"total":4509715660800,"available":4509546024960,"internally_reserved":0,"allocated":3969024,"data_stored":2601550,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":90451,"internal_metadata":165453485},"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":"5.048596"},"pg_stats":[{"pgid":"1.0","version":"17'132","reported_seq":234,"reported_epoch":37,"state":"peering","last_fresh":"2026-02-19T11:24:12.494850+0000","last_change":"2026-02-19T11:24:12.756482+0000","last_active":"2026-02-19T11:24:12.756482+0000","last_peered":"2026-02-19T11:24:12.494850+0000","last_clean":"2026-02-19T11:24:08.463313+0000","last_became_active":"2026-02-19T11:24:12.492493+0000","last_became_peered":"2026-02-19T11:24:12.492493+0000","last_unstale":"2026-02-19T11:24:12.494850+0000","last_undegraded":"2026-02-19T11:24:12.494850+0000","last_fullsized":"2026-02-19T11:24:12.473943+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":16,"last_epoch_clean":32,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_clean_scrub_stamp":"2026-02-19T11:23:45.356998+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,5,2],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[2,4,5],"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":35,"seq":150323855365,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4874,"internal_metadata":27585782},"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":28,"seq":120259084293,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"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":21,"seq":90194313222,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":14,"kb_used_meta":26929,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":15294,"internal_metadata":27575362},"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":15,"seq":64424509449,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27900,"kb_used_data":936,"kb_used_omap":18,"kb_used_meta":26925,"kb_avail":733975300,"statfs":{"total":751619276800,"available":751590707200,"internally_reserved":0,"allocated":958464,"data_stored":728784,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19202,"internal_metadata":27571454},"hb_peers":[0,1,3,4,5],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[]},{"osd":1,"up_from":12,"seq":51539607563,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27320,"kb_used_data":356,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975880,"statfs":{"total":751619276800,"available":751591301120,"internally_reserved":0,"allocated":364544,"data_stored":138416,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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":27296,"kb_used_data":332,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975904,"statfs":{"total":751619276800,"available":751591325696,"internally_reserved":0,"allocated":339968,"data_stored":128900,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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-19T11:24:18.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:18 trial010 ceph-mon[21676]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:18 trial010 ceph-mon[21676]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:18 trial010 ceph-mon[21676]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.541 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:18 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2744315191' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-19T11:24:18.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:18 trial186 ceph-mon[24984]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:18 trial186 ceph-mon[24984]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:18 trial186 ceph-mon[24984]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:18 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/2744315191' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-19T11:24:18.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:18 trial132 ceph-mon[25485]: from='client.14562 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:18 trial132 ceph-mon[25485]: from='client.14568 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:18 trial132 ceph-mon[25485]: from='client.14574 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:18.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:18 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2744315191' entity='client.admin' cmd={"prefix": "status", "format": "json"} : dispatch 2026-02-19T11:24:19.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:19 trial132 ceph-mon[25485]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:19.715 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:19 trial132 ceph-mon[25485]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 95 KiB/s, 0 objects/s recovering 2026-02-19T11:24:19.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:19 trial010 ceph-mon[21676]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:19.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:19 trial010 ceph-mon[21676]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 95 KiB/s, 0 objects/s recovering 2026-02-19T11:24:19.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:19 trial186 ceph-mon[24984]: from='client.14586 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:19.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:19 trial186 ceph-mon[24984]: pgmap v75: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 95 KiB/s, 0 objects/s recovering 2026-02-19T11:24:21.327 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph pg dump --format=json 2026-02-19T11:24:21.446 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:21.650 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:21.651 INFO:teuthology.orchestra.run.trial010.stderr:dumped all 2026-02-19T11:24:21.651 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:21 trial010 ceph-mon[21676]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-19T11:24:21.685 INFO:teuthology.orchestra.run.trial010.stdout:{"pg_ready":true,"pg_map":{"version":76,"stamp":"2026-02-19T11:24:20.522074+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":4,"num_osds":6,"num_per_pool_osds":6,"num_per_pool_omap_osds":3,"kb":4404019200,"kb_used":165732,"kb_used_data":3948,"kb_used_omap":90,"kb_used_meta":161573,"kb_avail":4403853468,"statfs":{"total":4509715660800,"available":4509545951232,"internally_reserved":0,"allocated":4042752,"data_stored":2629998,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":92404,"internal_metadata":165451532},"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":"8.000859"},"pg_stats":[{"pgid":"1.0","version":"17'132","reported_seq":244,"reported_epoch":39,"state":"active+clean","last_fresh":"2026-02-19T11:24:13.758586+0000","last_change":"2026-02-19T11:24:13.758510+0000","last_active":"2026-02-19T11:24:13.758586+0000","last_peered":"2026-02-19T11:24:13.758586+0000","last_clean":"2026-02-19T11:24:13.758586+0000","last_became_active":"2026-02-19T11:24:13.758255+0000","last_became_peered":"2026-02-19T11:24:13.758255+0000","last_unstale":"2026-02-19T11:24:13.758586+0000","last_undegraded":"2026-02-19T11:24:13.758586+0000","last_fullsized":"2026-02-19T11:24:13.758586+0000","mapping_epoch":38,"log_start":"0'0","ondisk_log_start":"0'0","created":16,"last_epoch_clean":39,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2026-02-19T11:23:45.356998+0000","last_clean_scrub_stamp":"2026-02-19T11:23:45.356998+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-20T19:15:48.354683+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":35,"seq":150323855365,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":4,"kb_used_meta":26939,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":4874,"internal_metadata":27585782},"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":28,"seq":120259084293,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":11,"kb_used_meta":26932,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"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":21,"seq":90194313223,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":15,"kb_used_meta":26928,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"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":15,"seq":64424509450,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":734003200,"kb_used":27912,"kb_used_data":948,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975288,"statfs":{"total":751619276800,"available":751590694912,"internally_reserved":0,"allocated":970752,"data_stored":733517,"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":12,"seq":51539607564,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":20,"kb_used_meta":26923,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"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":34359738382,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":734003200,"kb_used":27332,"kb_used_data":368,"kb_used_omap":19,"kb_used_meta":26924,"kb_avail":733975868,"statfs":{"total":751619276800,"available":751591288832,"internally_reserved":0,"allocated":376832,"data_stored":143149,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":19853,"internal_metadata":27570803},"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-19T11:24:21.686 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2026-02-19T11:24:21.686 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2026-02-19T11:24:21.687 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2026-02-19T11:24:21.687 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph health --format=json 2026-02-19T11:24:21.805 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:21.844 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:21 trial186 ceph-mon[24984]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-19T11:24:21.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:21 trial132 ceph-mon[25485]: pgmap v76: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-19T11:24:22.040 INFO:teuthology.orchestra.run.trial010.stdout: 2026-02-19T11:24:22.040 INFO:teuthology.orchestra.run.trial010.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2026-02-19T11:24:22.077 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2026-02-19T11:24:22.078 INFO:tasks.cephadm:Setup complete, yielding 2026-02-19T11:24:22.078 INFO:teuthology.run_tasks:Running task cephadm.shell... 2026-02-19T11:24:22.093 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@trial010.front.sepia.ceph.com 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- bash -c 'set -ex 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> HOSTNAMES=$(ceph orch host ls --format json | jq -r '"'"'.[] | .hostname'"'"') 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> for host in $HOSTNAMES; do 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> # find the hostname for "host.c" which will have no mgr 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> HAS_MGRS=$(ceph orch ps --hostname ${host} --format json | jq '"'"'any(.daemon_type == "mgr")'"'"') 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> if [ "$HAS_MGRS" == "false" ]; then 2026-02-19T11:24:22.094 DEBUG:teuthology.orchestra.run.trial010:> HOST_C="${host}" 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> fi 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> done 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # One last thing to worry about before draining the host 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # is that the teuthology test tends to put the explicit 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # hostnames in the placement for the mon service. 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # We want to make sure we can drain without providing 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # --force and there is a check for the host being removed 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # being listed explicitly in the placements. Therefore, 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # we should remove it from the mon placement. 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> ceph orch ls mon --export > mon.yaml 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> sed /"$HOST_C"/d mon.yaml > mon_adjusted.yaml 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> ceph orch apply -i mon_adjusted.yaml 2026-02-19T11:24:22.095 DEBUG:teuthology.orchestra.run.trial010:> # now drain that host 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> ceph orch host drain $HOST_C --zap-osd-devices 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> # wait for drain to complete 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> while [ "$HOST_C_DAEMONS" != "No daemons reported" ]; do 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> sleep 15 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> HOST_C_DAEMONS=$(ceph orch ps --hostname $HOST_C) 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> done 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> # we want to check the ability to remove the host from 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> # the CRUSH map, so we should first verify the host is in 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> # the CRUSH map. 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> ceph osd getcrushmap -o compiled-crushmap 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> crushtool -d compiled-crushmap -o crushmap.txt 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> CRUSH_MAP=$(cat crushmap.txt) 2026-02-19T11:24:22.096 DEBUG:teuthology.orchestra.run.trial010:> if ! grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> printf "Expected to see $HOST_C in CRUSH map. Saw:\n\n$CRUSH_MAP" 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> exit 1 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> fi 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> # If the drain was successful, we should be able to remove the 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> # host without force with no issues. If there are still daemons 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> # we will get a response telling us to drain the host and a 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> # non-zero return code 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> ceph orch host rm $HOST_C --rm-crush-entry 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> # verify we'"'"'ve successfully removed the host from the CRUSH map 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> sleep 30 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> ceph osd getcrushmap -o compiled-crushmap 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> crushtool -d compiled-crushmap -o crushmap.txt 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> CRUSH_MAP=$(cat crushmap.txt) 2026-02-19T11:24:22.097 DEBUG:teuthology.orchestra.run.trial010:> if grep -q "$HOST_C" <<< "$CRUSH_MAP"; then 2026-02-19T11:24:22.098 DEBUG:teuthology.orchestra.run.trial010:> printf "Saw $HOST_C in CRUSH map after it should have been removed.\n\n$CRUSH_MAP" 2026-02-19T11:24:22.098 DEBUG:teuthology.orchestra.run.trial010:> exit 1 2026-02-19T11:24:22.098 DEBUG:teuthology.orchestra.run.trial010:> fi 2026-02-19T11:24:22.098 DEBUG:teuthology.orchestra.run.trial010:> ' 2026-02-19T11:24:22.215 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:24:22.273 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch host ls --format json 2026-02-19T11:24:22.274 INFO:teuthology.orchestra.run.trial010.stderr:++ jq -r '.[] | .hostname' 2026-02-19T11:24:22.433 INFO:teuthology.orchestra.run.trial010.stderr:+ HOSTNAMES='trial010 2026-02-19T11:24:22.433 INFO:teuthology.orchestra.run.trial010.stderr:trial132 2026-02-19T11:24:22.433 INFO:teuthology.orchestra.run.trial010.stderr:trial186' 2026-02-19T11:24:22.433 INFO:teuthology.orchestra.run.trial010.stderr:+ for host in $HOSTNAMES 2026-02-19T11:24:22.434 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch ps --hostname trial010 --format json 2026-02-19T11:24:22.434 INFO:teuthology.orchestra.run.trial010.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-19T11:24:22.596 INFO:teuthology.orchestra.run.trial010.stderr:+ HAS_MGRS=true 2026-02-19T11:24:22.596 INFO:teuthology.orchestra.run.trial010.stderr:+ '[' true == false ']' 2026-02-19T11:24:22.596 INFO:teuthology.orchestra.run.trial010.stderr:+ for host in $HOSTNAMES 2026-02-19T11:24:22.597 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch ps --hostname trial132 --format json 2026-02-19T11:24:22.597 INFO:teuthology.orchestra.run.trial010.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-19T11:24:22.757 INFO:teuthology.orchestra.run.trial010.stderr:+ HAS_MGRS=true 2026-02-19T11:24:22.758 INFO:teuthology.orchestra.run.trial010.stderr:+ '[' true == false ']' 2026-02-19T11:24:22.758 INFO:teuthology.orchestra.run.trial010.stderr:+ for host in $HOSTNAMES 2026-02-19T11:24:22.758 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch ps --hostname trial186 --format json 2026-02-19T11:24:22.758 INFO:teuthology.orchestra.run.trial010.stderr:++ jq 'any(.daemon_type == "mgr")' 2026-02-19T11:24:22.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:22 trial186 ceph-mon[24984]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:22.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:22 trial186 ceph-mon[24984]: from='client.? 10.20.193.10:0/4187546267' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-19T11:24:22.920 INFO:teuthology.orchestra.run.trial010.stderr:+ HAS_MGRS=false 2026-02-19T11:24:22.920 INFO:teuthology.orchestra.run.trial010.stderr:+ '[' false == false ']' 2026-02-19T11:24:22.920 INFO:teuthology.orchestra.run.trial010.stderr:+ HOST_C=trial186 2026-02-19T11:24:22.920 INFO:teuthology.orchestra.run.trial010.stderr:+ ceph orch ls mon --export 2026-02-19T11:24:22.921 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:22 trial010 ceph-mon[21676]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:22.921 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:22 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/4187546267' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-19T11:24:22.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:22 trial132 ceph-mon[25485]: from='client.14592 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:22.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:22 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/4187546267' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2026-02-19T11:24:23.089 INFO:teuthology.orchestra.run.trial010.stderr:+ sed /trial186/d mon.yaml 2026-02-19T11:24:23.090 INFO:teuthology.orchestra.run.trial010.stderr:+ ceph orch apply -i mon_adjusted.yaml 2026-02-19T11:24:23.252 INFO:teuthology.orchestra.run.trial010.stdout:Scheduled mon update... 2026-02-19T11:24:23.259 INFO:teuthology.orchestra.run.trial010.stderr:+ ceph orch host drain trial186 --zap-osd-devices 2026-02-19T11:24:23.416 INFO:teuthology.orchestra.run.trial010.stdout:Scheduled to remove the following daemons from host 'trial186' 2026-02-19T11:24:23.416 INFO:teuthology.orchestra.run.trial010.stdout:type id 2026-02-19T11:24:23.417 INFO:teuthology.orchestra.run.trial010.stdout:-------------------- --------------- 2026-02-19T11:24:23.417 INFO:teuthology.orchestra.run.trial010.stdout:mon c 2026-02-19T11:24:23.417 INFO:teuthology.orchestra.run.trial010.stdout:osd 4 2026-02-19T11:24:23.417 INFO:teuthology.orchestra.run.trial010.stdout:osd 5 2026-02-19T11:24:23.424 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch ps --hostname trial186 2026-02-19T11:24:23.589 INFO:teuthology.orchestra.run.trial010.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-19T11:24:23.589 INFO:teuthology.orchestra.run.trial010.stderr:mon.c trial186 running (83s) 15s ago 83s 42.5M 2048M 20.3.0-5314-g941b42ca 27cd8cc050fe 453ccbc33dea 2026-02-19T11:24:23.589 INFO:teuthology.orchestra.run.trial010.stderr:osd.4 trial186 running (25s) 15s ago 27s 34.6M 43.0G 20.3.0-5314-g941b42ca 27cd8cc050fe c8add9a84902 2026-02-19T11:24:23.589 INFO:teuthology.orchestra.run.trial010.stderr:osd.5 trial186 running (16s) 15s ago 18s 27.6M 43.0G 20.3.0-5314-g941b42ca 27cd8cc050fe 438168e35e24 ' 2026-02-19T11:24:23.589 INFO:teuthology.orchestra.run.trial010.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-19T11:24:23.590 INFO:teuthology.orchestra.run.trial010.stderr:mon.c trial186 running (83s) 15s ago 83s 42.5M 2048M 20.3.0-5314-g941b42ca 27cd8cc050fe 453ccbc33dea 2026-02-19T11:24:23.590 INFO:teuthology.orchestra.run.trial010.stderr:osd.4 trial186 running (25s) 15s ago 27s 34.6M 43.0G 20.3.0-5314-g941b42ca 27cd8cc050fe c8add9a84902 2026-02-19T11:24:23.590 INFO:teuthology.orchestra.run.trial010.stderr:osd.5 trial186 running (16s) 15s ago 18s 27.6M 43.0G 20.3.0-5314-g941b42ca 27cd8cc050fe 438168e35e24 ' '!=' 'No daemons reported' ']' 2026-02-19T11:24:23.590 INFO:teuthology.orchestra.run.trial010.stderr:+ sleep 15 2026-02-19T11:24:23.773 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial010", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial132", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-19T11:24:23.774 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:23 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-19T11:24:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial010", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial132", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:23.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:23.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:23.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:23.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-19T11:24:23.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:23 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='client.14604 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: pgmap v77: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='client.14610 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial010", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial132", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:24.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-19T11:24:24.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:23 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush tree", "format": "json"} : dispatch 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: Saving service mon spec with placement trial010:10.20.193.10=a;trial132:10.20.193.132=b;count:3 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial186", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: Added label _no_schedule to host trial186 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: Added label _no_conf_keyring to host trial186 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: osd.4 crush weight is 0.68359375 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: osd.5 crush weight is 0.68359375 2026-02-19T11:24:24.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-19T11:24:24.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:24 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: Saving service mon spec with placement trial010:10.20.193.10=a;trial132:10.20.193.132=b;count:3 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial186", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: Added label _no_schedule to host trial186 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: Added label _no_conf_keyring to host trial186 2026-02-19T11:24:24.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: osd.4 crush weight is 0.68359375 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: osd.5 crush weight is 0.68359375 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:24.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-19T11:24:24.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:24 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='client.14622 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='client.14628 -' entity='client.admin' cmd=[{"prefix": "orch ls", "service_type": "mon", "export": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='client.14634 -' entity='client.admin' cmd=[{"prefix": "orch apply", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: Saving service mon spec with placement trial010:10.20.193.10=a;trial132:10.20.193.132=b;count:3 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch host drain", "hostname": "trial186", "zap_osd_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: Added label _no_schedule to host trial186 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: Added label _no_conf_keyring to host trial186 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: osd.4 crush weight is 0.68359375 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: osd.5 crush weight is 0.68359375 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='client.14646 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd ok-to-stop", "ids": ["5"]} : dispatch 2026-02-19T11:24:25.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:24 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0} : dispatch 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: Removing trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: Removing trial186:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: Removing trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-19T11:24:25.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: osdmap e40: 6 total, 6 up, 6 in 2026-02-19T11:24:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-19T11:24:25.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:25 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-19T11:24:26.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-a[21672]: 2026-02-19T11:24:25.582+0000 7f26c75d6640 -1 mon.a@0(leader).osd e40 definitely_dead 0 2026-02-19T11:24:26.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:26.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: Removing trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:26.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: Removing trial186:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: Removing trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: osdmap e40: 6 total, 6 up, 6 in 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-19T11:24:26.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:25 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-19T11:24:26.094 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: pgmap v78: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: Removing trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: Removing trial186:/etc/ceph/ceph.client.admin.keyring 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: Removing trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.client.admin.keyring 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd ok-to-stop", "ids": ["5"]}]: dispatch 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd crush reweight", "name": "osd.5", "weight": 0.0}]': finished 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: osdmap e40: 6 total, 6 up, 6 in 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["4"]} : dispatch 2026-02-19T11:24:26.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:25 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["4"]} : dispatch 2026-02-19T11:24:26.879 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:26 trial186 ceph-mon[24984]: osd.5 weight is now 0.0 2026-02-19T11:24:26.879 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:26 trial186 ceph-mon[24984]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:26.879 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:26 trial186 ceph-mon[24984]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-19T11:24:26.880 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:26 trial186 ceph-mon[24984]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-19T11:24:26.880 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:26 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-19T11:24:26.880 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:26 trial186 ceph-mon[24984]: osdmap e41: 6 total, 5 up, 6 in 2026-02-19T11:24:26.880 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 systemd[1]: Stopping Ceph osd.4 for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:24:26.880 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4[30027]: 2026-02-19T11:24:26.794+0000 7fd966fe3640 -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-19T11:24:26.880 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4[30027]: 2026-02-19T11:24:26.794+0000 7fd966fe3640 -1 osd.4 40 *** Got signal Terminated *** 2026-02-19T11:24:26.880 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4[30027]: 2026-02-19T11:24:26.794+0000 7fd966fe3640 -1 osd.4 40 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-19T11:24:26.881 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 podman[46353]: 2026-02-19 11:24:26.866239778 +0000 UTC m=+0.083922515 container died c8add9a84902a6a58d112b2cfb5696945c1a09918194fbf863238998ed7d23c9 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, ceph=True, 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, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.41.3, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2) 2026-02-19T11:24:26.881 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 podman[46353]: 2026-02-19 11:24:26.874650944 +0000 UTC m=+0.092333671 container remove c8add9a84902a6a58d112b2cfb5696945c1a09918194fbf863238998ed7d23c9 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4, FROM_IMAGE=quay.io/centos/centos:stream9, 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/, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:24:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:26 trial132 ceph-mon[25485]: osd.5 weight is now 0.0 2026-02-19T11:24:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:26 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:26 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-19T11:24:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:26 trial132 ceph-mon[25485]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-19T11:24:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:26 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-19T11:24:26.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:26 trial132 ceph-mon[25485]: osdmap e41: 6 total, 5 up, 6 in 2026-02-19T11:24:27.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:26 trial010 ceph-mon[21676]: osd.5 weight is now 0.0 2026-02-19T11:24:27.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:26 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:27.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:26 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["4"]}]: dispatch 2026-02-19T11:24:27.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:26 trial010 ceph-mon[21676]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-19T11:24:27.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:26 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["4"]}]': finished 2026-02-19T11:24:27.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:26 trial010 ceph-mon[21676]: osdmap e41: 6 total, 5 up, 6 in 2026-02-19T11:24:27.172 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:26 trial186 bash[46353]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4 2026-02-19T11:24:27.172 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.007754385 +0000 UTC m=+0.015957507 container create de02a7cebee97d9d96c47bc089d8d8c0ebc1a37862f6c8c6c198c100904ff2bb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, 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=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.build-date=20260216, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-19T11:24:27.172 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.035121525 +0000 UTC m=+0.043324587 container init de02a7cebee97d9d96c47bc089d8d8c0ebc1a37862f6c8c6c198c100904ff2bb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4-deactivate, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.41.3, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0) 2026-02-19T11:24:27.172 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.037731865 +0000 UTC m=+0.045934917 container start de02a7cebee97d9d96c47bc089d8d8c0ebc1a37862f6c8c6c198c100904ff2bb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4-deactivate, org.opencontainers.image.authors=Ceph Release Team , ceph=True, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, OSD_FLAVOR=default, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-19T11:24:27.172 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.038137734 +0000 UTC m=+0.046340796 container attach de02a7cebee97d9d96c47bc089d8d8c0ebc1a37862f6c8c6c198c100904ff2bb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, OSD_FLAVOR=default, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:24:27.173 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.000928853 +0000 UTC m=+0.009131905 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:24:27.173 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.167255292 +0000 UTC m=+0.175458344 container died de02a7cebee97d9d96c47bc089d8d8c0ebc1a37862f6c8c6c198c100904ff2bb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4-deactivate, io.buildah.version=1.41.3, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2026-02-19T11:24:27.527 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 podman[46482]: 2026-02-19 11:24:27.178462787 +0000 UTC m=+0.186665829 container remove de02a7cebee97d9d96c47bc089d8d8c0ebc1a37862f6c8c6c198c100904ff2bb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-4-deactivate, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-shraddhaag-cephadm-seastore-support, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default) 2026-02-19T11:24:27.527 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 systemd[1]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.4.service: Deactivated successfully. 2026-02-19T11:24:27.527 INFO:journalctl@ceph.osd.4.trial186.stdout:Feb 19 11:24:27 trial186 systemd[1]: Stopped Ceph osd.4 for 3d5d7969-0d85-11f1-8034-d404e6e7d460. 2026-02-19T11:24:27.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:27.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: osd.4 now down 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: Removing daemon osd.4 from trial186 -- ports [] 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: Cluster is now healthy 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-19T11:24:27.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:27 trial186 ceph-mon[24984]: osdmap e42: 5 total, 5 up, 5 in 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: osd.4 now down 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: Removing daemon osd.4 from trial186 -- ports [] 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:24:27.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-19T11:24:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: Cluster is now healthy 2026-02-19T11:24:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-19T11:24:27.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:27 trial132 ceph-mon[25485]: osdmap e42: 5 total, 5 up, 5 in 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: pgmap v80: 1 pgs: 1 active+clean; 577 KiB data, 162 MiB used, 4.1 TiB / 4.1 TiB avail 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: osd.4 now down 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: Removing daemon osd.4 from trial186 -- ports [] 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.4"} : dispatch 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.4"}]': finished 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: Cluster is now healthy 2026-02-19T11:24:28.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 4, "yes_i_really_mean_it": true}]': finished 2026-02-19T11:24:28.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:27 trial010 ceph-mon[21676]: osdmap e42: 5 total, 5 up, 5 in 2026-02-19T11:24:29.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: Removing keyring for osd.4 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: Successfully removed osd.4 on trial186 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: Successfully purged osd.4 on trial186 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: Zapping devices for osd.4 on trial186 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: osdmap e43: 5 total, 5 up, 5 in 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:28 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: Removing keyring for osd.4 2026-02-19T11:24:29.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: Successfully removed osd.4 on trial186 2026-02-19T11:24:29.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: Successfully purged osd.4 on trial186 2026-02-19T11:24:29.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: Zapping devices for osd.4 on trial186 2026-02-19T11:24:29.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: osdmap e43: 5 total, 5 up, 5 in 2026-02-19T11:24:29.095 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:29.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:29.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.096 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:28 trial186 ceph-mon[24984]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: Removing keyring for osd.4 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: Successfully removed osd.4 on trial186 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: Successfully purged osd.4 on trial186 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: Zapping devices for osd.4 on trial186 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: osdmap e43: 5 total, 5 up, 5 in 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:28 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:29.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:29 trial186 podman[50170]: 2026-02-19 11:24:29.491757985 +0000 UTC m=+0.011251839 container died 453ccbc33deafe51b9225dbf29144f84044aaa2409a1ce4ae923071bbb72602d (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-c, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, OSD_FLAVOR=default, org.label-schema.schema-version=1.0, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.vendor=CentOS, 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 , org.label-schema.build-date=20260216, io.buildah.version=1.41.3, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.license=GPLv2) 2026-02-19T11:24:29.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:29 trial186 podman[50170]: 2026-02-19 11:24:29.500400594 +0000 UTC m=+0.019894448 container remove 453ccbc33deafe51b9225dbf29144f84044aaa2409a1ce4ae923071bbb72602d (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-c, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, org.label-schema.license=GPLv2, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:24:29.845 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:29 trial186 systemd[1]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.c.service: Deactivated successfully. 2026-02-19T11:24:29.846 INFO:journalctl@ceph.mon.c.trial186.stdout:Feb 19 11:24:29 trial186 systemd[1]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.c.service: Consumed 1.162s CPU time. 2026-02-19T11:24:31.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: purged_snaps scrub ok 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: Detected new or changed devices on trial186 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: Removing monitor c from monmap... 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: mon.b calling monitor election 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: mon.a calling monitor election 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: monmap epoch 4 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: last_changed 2026-02-19T11:24:29.467828+0000 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: min_mon_release 20 (tentacle) 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: election_strategy: 1 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: 1: [v2:10.20.193.132:3300/0,v1:10.20.193.132:6789/0] mon.b 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: fsmap 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: osdmap e44: 5 total, 5 up, 5 in 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: mgrmap e15: a(active, since 104s), standbys: b 2026-02-19T11:24:31.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:31 trial010 ceph-mon[21676]: overall HEALTH_OK 2026-02-19T11:24:31.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:24:31.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:24:31.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: purged_snaps scrub ok 2026-02-19T11:24:31.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: Detected new or changed devices on trial186 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: Safe to remove mon.c: new quorum should be ['a', 'b'] (from ['a', 'b']) 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: Removing monitor c from monmap... 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "mon rm", "name": "c"}]': finished 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "a"} : dispatch 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mon metadata", "id": "b"} : dispatch 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: mon.b calling monitor election 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: pgmap v86: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: mon.a calling monitor election 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: mon.a is new leader, mons a,b in quorum (ranks 0,1) 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: monmap epoch 4 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: last_changed 2026-02-19T11:24:29.467828+0000 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: created 2026-02-19T11:22:25.936658+0000 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: min_mon_release 20 (tentacle) 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: election_strategy: 1 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: 0: [v2:10.20.193.10:3300/0,v1:10.20.193.10:6789/0] mon.a 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: 1: [v2:10.20.193.132:3300/0,v1:10.20.193.132:6789/0] mon.b 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: fsmap 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: osdmap e44: 5 total, 5 up, 5 in 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: mgrmap e15: a(active, since 104s), standbys: b 2026-02-19T11:24:31.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:31 trial132 ceph-mon[25485]: overall HEALTH_OK 2026-02-19T11:24:32.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: Removing daemon mon.c from trial186 -- ports [] 2026-02-19T11:24:32.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: osdmap e45: 5 total, 5 up, 5 in 2026-02-19T11:24:32.790 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:32.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.791 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:32 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: Removing daemon mon.c from trial186 -- ports [] 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: osdmap e45: 5 total, 5 up, 5 in 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:32.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:32 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.786 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:33.786 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: osdmap e46: 5 total, 5 up, 5 in 2026-02-19T11:24:33.786 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.786 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.786 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:33.786 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:24:33.787 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:33 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:33.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: pgmap v88: 1 pgs: 1 remapped+peering; 577 KiB data, 135 MiB used, 3.4 TiB / 3.4 TiB avail 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: osdmap e46: 5 total, 5 up, 5 in 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:24:33.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:33 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:34.811 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Reconfiguring mon.a (monmap changed)... 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Reconfiguring daemon mon.a on trial010 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Reconfiguring mgr.a (monmap changed)... 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: Reconfiguring daemon mgr.a on trial010 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:24:34.812 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:24:34.813 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:34 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Updating trial010:/etc/ceph/ceph.conf 2026-02-19T11:24:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Updating trial132:/etc/ceph/ceph.conf 2026-02-19T11:24:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Updating trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:35.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Updating trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/config/ceph.conf 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Reconfiguring mon.a (monmap changed)... 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Reconfiguring daemon mon.a on trial010 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Reconfiguring mgr.a (monmap changed)... 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.a", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:24:35.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: Reconfiguring daemon mgr.a on trial010 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2026-02-19T11:24:35.044 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2026-02-19T11:24:35.044 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:34 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring osd.0 (monmap changed)... 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring daemon osd.0 on trial010 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring osd.1 (monmap changed)... 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring daemon osd.1 on trial010 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring mon.b (monmap changed)... 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring daemon mon.b on trial132 2026-02-19T11:24:35.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: pgmap v90: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring mgr.b (monmap changed)... 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: Reconfiguring daemon mgr.b on trial132 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.966 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:35.967 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:35 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring osd.0 (monmap changed)... 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring daemon osd.0 on trial010 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring osd.1 (monmap changed)... 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring daemon osd.1 on trial010 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring mon.b (monmap changed)... 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring daemon mon.b on trial132 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: pgmap v90: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 96 KiB/s, 0 objects/s recovering 2026-02-19T11:24:36.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring mgr.b (monmap changed)... 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get-or-create", "entity": "mgr.b", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "mgr services"} : dispatch 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: Reconfiguring daemon mgr.b on trial132 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:36.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2026-02-19T11:24:36.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:35 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:36.964 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: Reconfiguring osd.2 (monmap changed)... 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: Reconfiguring daemon osd.2 on trial132 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: Reconfiguring osd.3 (monmap changed)... 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: Reconfiguring daemon osd.3 on trial132 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: Reconfiguring osd.5 (monmap changed)... 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: Reconfiguring daemon osd.5 on trial186 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:36.965 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:36 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:37.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: Reconfiguring osd.2 (monmap changed)... 2026-02-19T11:24:37.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: Reconfiguring daemon osd.2 on trial132 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: Reconfiguring osd.3 (monmap changed)... 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: Reconfiguring daemon osd.3 on trial132 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: Reconfiguring osd.5 (monmap changed)... 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: Reconfiguring daemon osd.5 on trial186 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:37.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:36 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-a[21672]: 2026-02-19T11:24:36.879+0000 7f26c75d6640 -1 mon.a@0(leader).osd e46 definitely_dead 0 2026-02-19T11:24:38.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: pgmap v91: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 74 KiB/s, 0 objects/s recovering 2026-02-19T11:24:38.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:38.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-19T11:24:38.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:37 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-02-19T11:24:38.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: pgmap v91: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 74 KiB/s, 0 objects/s recovering 2026-02-19T11:24:38.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:38.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:38.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd df", "format": "json"} : dispatch 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd safe-to-destroy", "ids": ["5"]} : dispatch 2026-02-19T11:24:38.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:37 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd down", "ids": ["5"]} : dispatch 2026-02-19T11:24:38.300 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 systemd[1]: Stopping Ceph osd.5 for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:24:38.301 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5[38293]: 2026-02-19T11:24:38.090+0000 7f32e5546640 -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-19T11:24:38.301 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5[38293]: 2026-02-19T11:24:38.090+0000 7f32e5546640 -1 osd.5 47 *** Got signal Terminated *** 2026-02-19T11:24:38.301 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5[38293]: 2026-02-19T11:24:38.090+0000 7f32e5546640 -1 osd.5 47 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-19T11:24:38.301 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56663]: 2026-02-19 11:24:38.161537589 +0000 UTC m=+0.083960686 container died 438168e35e24c17108b4f5e64cb95335475822f052160b69a58a6150272318e6 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, 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.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS) 2026-02-19T11:24:38.301 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56663]: 2026-02-19 11:24:38.169953405 +0000 UTC m=+0.092376502 container remove 438168e35e24c17108b4f5e64cb95335475822f052160b69a58a6150272318e6 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, OSD_FLAVOR=default, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.documentation=https://docs.ceph.com/, io.buildah.version=1.41.3) 2026-02-19T11:24:38.301 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 bash[56663]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5 2026-02-19T11:24:38.591 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch ps --hostname trial186 2026-02-19T11:24:38.595 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.295660366 +0000 UTC m=+0.015523576 container create fe42f2cef1eedd32368fd323ea3ff1fa07d2a90498fe2feabddb7bb5de4d6988 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5-deactivate, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, 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/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2) 2026-02-19T11:24:38.595 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.328110369 +0000 UTC m=+0.047973519 container init fe42f2cef1eedd32368fd323ea3ff1fa07d2a90498fe2feabddb7bb5de4d6988 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5-deactivate, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3) 2026-02-19T11:24:38.595 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.330456526 +0000 UTC m=+0.050319676 container start fe42f2cef1eedd32368fd323ea3ff1fa07d2a90498fe2feabddb7bb5de4d6988 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.schema-version=1.0, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3) 2026-02-19T11:24:38.596 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.331119926 +0000 UTC m=+0.050983076 container attach fe42f2cef1eedd32368fd323ea3ff1fa07d2a90498fe2feabddb7bb5de4d6988 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.build-date=20260216, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS) 2026-02-19T11:24:38.596 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.289269046 +0000 UTC m=+0.009132186 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:24:38.596 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.450807923 +0000 UTC m=+0.170671073 container died fe42f2cef1eedd32368fd323ea3ff1fa07d2a90498fe2feabddb7bb5de4d6988 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5-deactivate, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.build-date=20260216, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, CEPH_REF=wip-shraddhaag-cephadm-seastore-support) 2026-02-19T11:24:38.596 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 podman[56791]: 2026-02-19 11:24:38.461030196 +0000 UTC m=+0.180893346 container remove fe42f2cef1eedd32368fd323ea3ff1fa07d2a90498fe2feabddb7bb5de4d6988 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-5-deactivate, org.label-schema.license=GPLv2, 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, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3) 2026-02-19T11:24:38.596 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 systemd[1]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.5.service: Deactivated successfully. 2026-02-19T11:24:38.596 INFO:journalctl@ceph.osd.5.trial186.stdout:Feb 19 11:24:38 trial186 systemd[1]: Stopped Ceph osd.5 for 3d5d7969-0d85-11f1-8034-d404e6e7d460. 2026-02-19T11:24:38.758 INFO:teuthology.orchestra.run.trial010.stderr:+ HOST_C_DAEMONS='NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-19T11:24:38.758 INFO:teuthology.orchestra.run.trial010.stderr:osd.5 trial186 running (31s) 2s ago 33s 38.9M 43.0G 20.3.0-5314-g941b42ca 27cd8cc050fe 438168e35e24 ' 2026-02-19T11:24:38.758 INFO:teuthology.orchestra.run.trial010.stderr:+ '[' 'NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2026-02-19T11:24:38.758 INFO:teuthology.orchestra.run.trial010.stderr:osd.5 trial186 running (31s) 2s ago 33s 38.9M 43.0G 20.3.0-5314-g941b42ca 27cd8cc050fe 438168e35e24 ' '!=' 'No daemons reported' ']' 2026-02-19T11:24:38.758 INFO:teuthology.orchestra.run.trial010.stderr:+ sleep 15 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-02-19T11:24:39.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-02-19T11:24:39.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: osdmap e47: 5 total, 4 up, 5 in 2026-02-19T11:24:39.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:38 trial010 ceph-mon[21676]: osd.5 marked itself dead as of e47 2026-02-19T11:24:39.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:39.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:39.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd df", "format": "json"}]: dispatch 2026-02-19T11:24:39.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: from='mon.0 -' entity='mon.' cmd=[{"prefix": "osd safe-to-destroy", "ids": ["5"]}]: dispatch 2026-02-19T11:24:39.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: Health check failed: 1 osds down (OSD_DOWN) 2026-02-19T11:24:39.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: Health check failed: 1 host (1 osds) down (OSD_HOST_DOWN) 2026-02-19T11:24:39.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd down", "ids": ["5"]}]': finished 2026-02-19T11:24:39.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: osdmap e47: 5 total, 4 up, 5 in 2026-02-19T11:24:39.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:38 trial132 ceph-mon[25485]: osd.5 marked itself dead as of e47 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: osd.5 now down 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Removing daemon osd.5 from trial186 -- ports [] 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: pgmap v93: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 82 KiB/s, 0 objects/s recovering 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Removing keyring for osd.5 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-02-19T11:24:40.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Successfully removed osd.5 on trial186 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Cluster is now healthy 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: osdmap e48: 4 total, 4 up, 4 in 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Successfully purged osd.5 on trial186 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: Zapping devices for osd.5 on trial186 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:40.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:40.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:40.043 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:39 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: osd.5 now down 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Removing daemon osd.5 from trial186 -- ports [] 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: pgmap v93: 1 pgs: 1 active+clean+wait; 577 KiB data, 136 MiB used, 3.4 TiB / 3.4 TiB avail; 82 KiB/s, 0 objects/s recovering 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='client.14650 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Removing keyring for osd.5 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth rm", "entity": "osd.5"} : dispatch 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "auth rm", "entity": "osd.5"}]': finished 2026-02-19T11:24:40.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Successfully removed osd.5 on trial186 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true} : dispatch 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Health check cleared: OSD_DOWN (was: 1 osds down) 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Health check cleared: OSD_HOST_DOWN (was: 1 host (1 osds) down) 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Cluster is now healthy 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd purge-actual", "id": 5, "yes_i_really_mean_it": true}]': finished 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: osdmap e48: 4 total, 4 up, 4 in 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Successfully purged osd.5 on trial186 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: Zapping devices for osd.5 on trial186 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:40.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:39 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: Successfully zapped devices for osd.5 on trial186 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:41.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:40 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: Successfully zapped devices for osd.5 on trial186 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:41.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:40 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: pgmap v95: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: Detected new or changed devices on trial186 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:42.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:42.042 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:41 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: pgmap v95: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail; 72 KiB/s, 0 objects/s recovering 2026-02-19T11:24:42.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: Detected new or changed devices on trial186 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:42.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:41 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:44.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:43 trial010 ceph-mon[21676]: pgmap v96: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:44.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:43 trial132 ceph-mon[25485]: pgmap v96: 1 pgs: 1 active+clean+wait; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:46.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:45 trial010 ceph-mon[21676]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:46.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:45 trial132 ceph-mon[25485]: pgmap v97: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:48.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:47 trial010 ceph-mon[21676]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:48.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:47 trial132 ceph-mon[25485]: pgmap v98: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:50.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:49 trial010 ceph-mon[21676]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:50.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:49 trial132 ceph-mon[25485]: pgmap v99: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:52.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:51 trial010 ceph-mon[21676]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:52.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:51 trial132 ceph-mon[25485]: pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:53.760 INFO:teuthology.orchestra.run.trial010.stderr:++ ceph orch ps --hostname trial186 2026-02-19T11:24:53.921 INFO:teuthology.orchestra.run.trial010.stderr:+ HOST_C_DAEMONS='No daemons reported' 2026-02-19T11:24:53.921 INFO:teuthology.orchestra.run.trial010.stderr:+ '[' 'No daemons reported' '!=' 'No daemons reported' ']' 2026-02-19T11:24:53.921 INFO:teuthology.orchestra.run.trial010.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-02-19T11:24:54.016 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:53 trial132 ceph-mon[25485]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:54.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:53 trial010 ceph-mon[21676]: pgmap v101: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:54.071 INFO:teuthology.orchestra.run.trial010.stderr:17 2026-02-19T11:24:54.079 INFO:teuthology.orchestra.run.trial010.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-02-19T11:24:54.087 INFO:teuthology.orchestra.run.trial010.stderr:++ cat crushmap.txt 2026-02-19T11:24:54.088 INFO:teuthology.orchestra.run.trial010.stderr:+ CRUSH_MAP='# begin crush map 2026-02-19T11:24:54.088 INFO:teuthology.orchestra.run.trial010.stderr:tunable choose_local_tries 0 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable choose_local_fallback_tries 0 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable choose_total_tries 50 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable chooseleaf_descend_once 1 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable chooseleaf_vary_r 1 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable chooseleaf_stable 1 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable straw_calc_version 1 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:tunable allowed_bucket_algs 54 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:# devices 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:device 0 osd.0 class ssd 2026-02-19T11:24:54.089 INFO:teuthology.orchestra.run.trial010.stderr:device 1 osd.1 class ssd 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:device 2 osd.2 class ssd 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:device 3 osd.3 class ssd 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:# types 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 0 osd 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 1 host 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 2 chassis 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 3 rack 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 4 row 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 5 pdu 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 6 pod 2026-02-19T11:24:54.090 INFO:teuthology.orchestra.run.trial010.stderr:type 7 room 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr:type 8 datacenter 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr:type 9 zone 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr:type 10 region 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr:type 11 root 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr:# buckets 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr:host trial010 { 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr: id -3 # do not change unnecessarily 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr: id -4 class ssd # do not change unnecessarily 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr: # weight 1.36719 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:24:54.091 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: item osd.0 weight 0.68359 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: item osd.1 weight 0.68359 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr:host trial132 { 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: id -5 # do not change unnecessarily 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: id -6 class ssd # do not change unnecessarily 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: # weight 1.36719 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:24:54.092 INFO:teuthology.orchestra.run.trial010.stderr: item osd.2 weight 0.68359 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: item osd.3 weight 0.68359 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr:host trial186 { 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: id -7 # do not change unnecessarily 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: id -8 class ssd # do not change unnecessarily 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: # weight 0.00000 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr:root default { 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: id -1 # do not change unnecessarily 2026-02-19T11:24:54.093 INFO:teuthology.orchestra.run.trial010.stderr: id -2 class ssd # do not change unnecessarily 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: # weight 2.73438 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: item trial010 weight 1.36719 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: item trial132 weight 1.36719 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: item trial186 weight 0.00000 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr:# rules 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr:rule replicated_rule { 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: id 0 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: type replicated 2026-02-19T11:24:54.094 INFO:teuthology.orchestra.run.trial010.stderr: step take default 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr: step choose firstn 0 type osd 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr: step emit 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr:# end crush map' 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr:+ grep -q trial186 2026-02-19T11:24:54.095 INFO:teuthology.orchestra.run.trial010.stderr:+ ceph orch host rm trial186 --rm-crush-entry 2026-02-19T11:24:54.747 INFO:teuthology.orchestra.run.trial010.stdout:Removed host 'trial186' 2026-02-19T11:24:54.757 INFO:teuthology.orchestra.run.trial010.stderr:+ sleep 30 2026-02-19T11:24:55.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:54 trial010 ceph-mon[21676]: from='client.? 10.20.193.10:0/2815599477' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-02-19T11:24:55.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:54 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "trial186"} : dispatch 2026-02-19T11:24:55.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:54 trial132 ceph-mon[25485]: from='client.? 10.20.193.10:0/2815599477' entity='client.admin' cmd={"prefix": "osd getcrushmap"} : dispatch 2026-02-19T11:24:55.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:54 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd crush remove", "name": "trial186"} : dispatch 2026-02-19T11:24:56.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:56.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "trial186", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:56.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "trial186"}]': finished 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: osdmap e49: 4 total, 4 up, 4 in 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.trial186"} : dispatch 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.trial186"}]': finished 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: Removed host trial186 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:56.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:55 trial010 ceph-mon[21676]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:56.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='client.14654 -' entity='client.admin' cmd=[{"prefix": "orch ps", "hostname": "trial186", "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='client.14662 -' entity='client.admin' cmd=[{"prefix": "orch host rm", "hostname": "trial186", "rm_crush_entry": true, "target": ["mon-mgr", ""]}]: dispatch 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix": "osd crush remove", "name": "trial186"}]': finished 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: osdmap e49: 4 total, 4 up, 4 in 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix":"config-key del","key":"mgr/cephadm/host.trial186"} : dispatch 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/host.trial186"}]': finished 2026-02-19T11:24:56.215 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: Removed host trial186 2026-02-19T11:24:56.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config dump", "format": "json"} : dispatch 2026-02-19T11:24:56.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2026-02-19T11:24:56.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2026-02-19T11:24:56.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' 2026-02-19T11:24:56.216 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:55 trial132 ceph-mon[25485]: from='mgr.14152 10.20.193.10:0/1221390545' entity='mgr.a' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2026-02-19T11:24:58.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:57 trial010 ceph-mon[21676]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:24:58.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:57 trial132 ceph-mon[25485]: pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:00.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:24:59 trial010 ceph-mon[21676]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:00.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:24:59 trial132 ceph-mon[25485]: pgmap v105: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:02.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:01 trial010 ceph-mon[21676]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:02.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:01 trial132 ceph-mon[25485]: pgmap v106: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:04.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:03 trial010 ceph-mon[21676]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:04.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:03 trial132 ceph-mon[25485]: pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:06.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:05 trial010 ceph-mon[21676]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:06.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:05 trial132 ceph-mon[25485]: pgmap v108: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:08.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:07 trial010 ceph-mon[21676]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:08.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:07 trial132 ceph-mon[25485]: pgmap v109: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:10.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:09 trial010 ceph-mon[21676]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:10.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:09 trial132 ceph-mon[25485]: pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:12.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:11 trial010 ceph-mon[21676]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:12.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:11 trial132 ceph-mon[25485]: pgmap v111: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:14.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:13 trial010 ceph-mon[21676]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:14.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:13 trial132 ceph-mon[25485]: pgmap v112: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:16.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:15 trial010 ceph-mon[21676]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:16.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:15 trial132 ceph-mon[25485]: pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:18.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:17 trial010 ceph-mon[21676]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:18.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:17 trial132 ceph-mon[25485]: pgmap v114: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:20.041 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:19 trial010 ceph-mon[21676]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:20.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:19 trial132 ceph-mon[25485]: pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:22.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:21 trial010 ceph-mon[21676]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:22.214 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:21 trial132 ceph-mon[25485]: pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:24.016 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:23 trial132 ceph-mon[25485]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:24.040 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:23 trial010 ceph-mon[21676]: pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 109 MiB used, 2.7 TiB / 2.7 TiB avail 2026-02-19T11:25:24.758 INFO:teuthology.orchestra.run.trial010.stderr:+ ceph osd getcrushmap -o compiled-crushmap 2026-02-19T11:25:24.911 INFO:teuthology.orchestra.run.trial010.stderr:18 2026-02-19T11:25:24.918 INFO:teuthology.orchestra.run.trial010.stderr:+ crushtool -d compiled-crushmap -o crushmap.txt 2026-02-19T11:25:24.926 INFO:teuthology.orchestra.run.trial010.stderr:++ cat crushmap.txt 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:+ CRUSH_MAP='# begin crush map 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable choose_local_tries 0 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable choose_local_fallback_tries 0 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable choose_total_tries 50 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable chooseleaf_descend_once 1 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable chooseleaf_vary_r 1 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable chooseleaf_stable 1 2026-02-19T11:25:24.929 INFO:teuthology.orchestra.run.trial010.stderr:tunable straw_calc_version 1 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:tunable allowed_bucket_algs 54 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:# devices 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:device 0 osd.0 class ssd 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:device 1 osd.1 class ssd 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:device 2 osd.2 class ssd 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:device 3 osd.3 class ssd 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:# types 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:type 0 osd 2026-02-19T11:25:24.930 INFO:teuthology.orchestra.run.trial010.stderr:type 1 host 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 2 chassis 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 3 rack 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 4 row 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 5 pdu 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 6 pod 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 7 room 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 8 datacenter 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 9 zone 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 10 region 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:type 11 root 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:25:24.931 INFO:teuthology.orchestra.run.trial010.stderr:# buckets 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr:host trial010 { 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: id -3 # do not change unnecessarily 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: id -4 class ssd # do not change unnecessarily 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: # weight 1.36719 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: item osd.0 weight 0.68359 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: item osd.1 weight 0.68359 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr:host trial132 { 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: id -5 # do not change unnecessarily 2026-02-19T11:25:24.932 INFO:teuthology.orchestra.run.trial010.stderr: id -6 class ssd # do not change unnecessarily 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: # weight 1.36719 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: item osd.2 weight 0.68359 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: item osd.3 weight 0.68359 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr:root default { 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: id -1 # do not change unnecessarily 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: id -2 class ssd # do not change unnecessarily 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: # weight 2.73438 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: alg straw2 2026-02-19T11:25:24.933 INFO:teuthology.orchestra.run.trial010.stderr: hash 0 # rjenkins1 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: item trial010 weight 1.36719 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: item trial132 weight 1.36719 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr:# rules 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr:rule replicated_rule { 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: id 0 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: type replicated 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: step take default 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: step choose firstn 0 type osd 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr: step emit 2026-02-19T11:25:24.934 INFO:teuthology.orchestra.run.trial010.stderr:} 2026-02-19T11:25:24.935 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:25:24.935 INFO:teuthology.orchestra.run.trial010.stderr:# end crush map' 2026-02-19T11:25:24.935 INFO:teuthology.orchestra.run.trial010.stderr:+ grep -q trial186 2026-02-19T11:25:24.959 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2026-02-19T11:25:24.975 INFO:tasks.cephadm:Teardown begin 2026-02-19T11:25:24.975 DEBUG:teuthology.orchestra.run.trial010:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:25:25.003 DEBUG:teuthology.orchestra.run.trial132:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:25:25.032 DEBUG:teuthology.orchestra.run.trial186:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:25:25.072 INFO:tasks.cephadm:Disabling cephadm mgr module 2026-02-19T11:25:25.072 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm --image quay.ceph.io/ceph-ci/ceph:941b42cabfa3c4e4d30b96a58cbe2fa653f560ec shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 -- ceph mgr module disable cephadm 2026-02-19T11:25:25.186 INFO:teuthology.orchestra.run.trial010.stderr:Inferring config /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/mon.a/config 2026-02-19T11:25:25.204 INFO:teuthology.orchestra.run.trial010.stderr:Error: statfs /etc/ceph/ceph.client.admin.keyring: no such file or directory 2026-02-19T11:25:25.222 DEBUG:teuthology.orchestra.run:got remote process result: 125 2026-02-19T11:25:25.223 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2026-02-19T11:25:25.223 DEBUG:teuthology.orchestra.run.trial010:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-19T11:25:25.239 DEBUG:teuthology.orchestra.run.trial132:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-19T11:25:25.257 DEBUG:teuthology.orchestra.run.trial186:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2026-02-19T11:25:25.284 INFO:tasks.cephadm:Stopping all daemons... 2026-02-19T11:25:25.284 INFO:tasks.cephadm.mon.a:Stopping mon.a... 2026-02-19T11:25:25.284 DEBUG:teuthology.orchestra.run.trial010:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a 2026-02-19T11:25:25.385 INFO:journalctl@ceph.mon.a.trial010.stdout:Feb 19 11:25:25 trial010 systemd[1]: Stopping Ceph mon.a for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:25.486 DEBUG:teuthology.orchestra.run.trial010:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.a.service' 2026-02-19T11:25:25.535 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:25.536 INFO:tasks.cephadm.mon.a:Stopped mon.a 2026-02-19T11:25:25.536 INFO:tasks.cephadm.mon.c:Stopping mon.b... 2026-02-19T11:25:25.536 DEBUG:teuthology.orchestra.run.trial132:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.b 2026-02-19T11:25:25.831 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:25 trial132 systemd[1]: Stopping Ceph mon.b for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:25.832 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:25 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-b[25478]: 2026-02-19T11:25:25.642+0000 7f9744691640 -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-19T11:25:25.832 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:25 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-b[25478]: 2026-02-19T11:25:25.642+0000 7f9744691640 -1 mon.b@1(peon) e4 *** Got Signal Terminated *** 2026-02-19T11:25:25.832 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:25 trial132 podman[51539]: 2026-02-19 11:25:25.755018191 +0000 UTC m=+0.124053296 container died 976250782d23169175ea4cd564ab2f1bd8ac40294ddece9f66aa79e72179efdb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-b, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, org.label-schema.vendor=CentOS, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, org.label-schema.build-date=20260216, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default) 2026-02-19T11:25:25.832 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:25 trial132 podman[51539]: 2026-02-19 11:25:25.764392967 +0000 UTC m=+0.133428072 container remove 976250782d23169175ea4cd564ab2f1bd8ac40294ddece9f66aa79e72179efdb (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-b, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.vendor=CentOS, io.buildah.version=1.41.3, org.label-schema.license=GPLv2, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.build-date=20260216, OSD_FLAVOR=default) 2026-02-19T11:25:25.832 INFO:journalctl@ceph.mon.b.trial132.stdout:Feb 19 11:25:25 trial132 bash[51539]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-mon-b 2026-02-19T11:25:25.847 DEBUG:teuthology.orchestra.run.trial132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.b.service' 2026-02-19T11:25:25.892 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:25.892 INFO:tasks.cephadm.mon.c:Stopped mon.b 2026-02-19T11:25:25.892 INFO:tasks.cephadm.mon.c:Stopping mon.c... 2026-02-19T11:25:25.892 DEBUG:teuthology.orchestra.run.trial186:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.c 2026-02-19T11:25:25.926 DEBUG:teuthology.orchestra.run.trial186:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mon.c.service' 2026-02-19T11:25:26.007 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:26.008 INFO:tasks.cephadm.mon.c:Stopped mon.c 2026-02-19T11:25:26.008 INFO:tasks.cephadm.mgr.a:Stopping mgr.a... 2026-02-19T11:25:26.008 DEBUG:teuthology.orchestra.run.trial010:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a 2026-02-19T11:25:26.236 DEBUG:teuthology.orchestra.run.trial010:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.a.service' 2026-02-19T11:25:26.278 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:26.278 INFO:tasks.cephadm.mgr.a:Stopped mgr.a 2026-02-19T11:25:26.279 INFO:tasks.cephadm.mgr.b:Stopping mgr.b... 2026-02-19T11:25:26.279 DEBUG:teuthology.orchestra.run.trial132:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.b 2026-02-19T11:25:26.405 INFO:journalctl@ceph.mgr.b.trial132.stdout:Feb 19 11:25:26 trial132 systemd[1]: Stopping Ceph mgr.b for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:26.500 DEBUG:teuthology.orchestra.run.trial132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@mgr.b.service' 2026-02-19T11:25:26.541 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:26.542 INFO:tasks.cephadm.mgr.b:Stopped mgr.b 2026-02-19T11:25:26.542 INFO:tasks.cephadm.osd.0:Stopping osd.0... 2026-02-19T11:25:26.542 DEBUG:teuthology.orchestra.run.trial010:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.0 2026-02-19T11:25:27.040 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:26 trial010 systemd[1]: Stopping Ceph osd.0 for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:27.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:26 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0[38899]: 2026-02-19T11:25:26.635+0000 7fd2079c2640 -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-19T11:25:27.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:26 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0[38899]: 2026-02-19T11:25:26.635+0000 7fd2079c2640 -1 osd.0 49 *** Got signal Terminated *** 2026-02-19T11:25:27.041 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:26 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0[38899]: 2026-02-19T11:25:26.635+0000 7fd2079c2640 -1 osd.0 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-19T11:25:31.995 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[60911]: 2026-02-19 11:25:31.696127357 +0000 UTC m=+5.072114144 container died 83f14b96bee42682f017e326a2bf66248c7111833ef13cd72678cc2fd1b7c607 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0, FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.41.3, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, org.label-schema.build-date=20260216, ceph=True, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default) 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[60911]: 2026-02-19 11:25:31.704578849 +0000 UTC m=+5.080565626 container remove 83f14b96bee42682f017e326a2bf66248c7111833ef13cd72678cc2fd1b7c607 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, ceph=True, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 bash[60911]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[61037]: 2026-02-19 11:25:31.831637696 +0000 UTC m=+0.016292958 container create 7a57e8dc35aa0df227617e8fbb2c1d66cc9872332ef743ec07dd19689a15f70b (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, OSD_FLAVOR=default, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[61037]: 2026-02-19 11:25:31.86096258 +0000 UTC m=+0.045617772 container init 7a57e8dc35aa0df227617e8fbb2c1d66cc9872332ef743ec07dd19689a15f70b (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0-deactivate, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, ceph=True, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[61037]: 2026-02-19 11:25:31.863362025 +0000 UTC m=+0.048017227 container start 7a57e8dc35aa0df227617e8fbb2c1d66cc9872332ef743ec07dd19689a15f70b (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3) 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[61037]: 2026-02-19 11:25:31.863898195 +0000 UTC m=+0.048553397 container attach 7a57e8dc35aa0df227617e8fbb2c1d66cc9872332ef743ec07dd19689a15f70b (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0-deactivate, org.label-schema.license=GPLv2, org.label-schema.build-date=20260216, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, OSD_FLAVOR=default, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-19T11:25:31.996 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[61037]: 2026-02-19 11:25:31.8250182 +0000 UTC m=+0.009673392 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:25:31.997 INFO:journalctl@ceph.osd.0.trial010.stdout:Feb 19 11:25:31 trial010 podman[61037]: 2026-02-19 11:25:31.989731557 +0000 UTC m=+0.174386749 container died 7a57e8dc35aa0df227617e8fbb2c1d66cc9872332ef743ec07dd19689a15f70b (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-0-deactivate, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, OSD_FLAVOR=default, org.label-schema.build-date=20260216, ceph=True, org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, 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/) 2026-02-19T11:25:32.025 DEBUG:teuthology.orchestra.run.trial010:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.0.service' 2026-02-19T11:25:32.070 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:32.071 INFO:tasks.cephadm.osd.0:Stopped osd.0 2026-02-19T11:25:32.071 INFO:tasks.cephadm.osd.1:Stopping osd.1... 2026-02-19T11:25:32.071 DEBUG:teuthology.orchestra.run.trial010:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.1 2026-02-19T11:25:32.290 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:32 trial010 systemd[1]: Stopping Ceph osd.1 for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:32.291 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:32 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1[46630]: 2026-02-19T11:25:32.201+0000 7ff9d7592640 -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-19T11:25:32.291 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:32 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1[46630]: 2026-02-19T11:25:32.201+0000 7ff9d7592640 -1 osd.1 49 *** Got signal Terminated *** 2026-02-19T11:25:32.291 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:32 trial010 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1[46630]: 2026-02-19T11:25:32.201+0000 7ff9d7592640 -1 osd.1 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-19T11:25:37.541 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61169]: 2026-02-19 11:25:37.271522032 +0000 UTC m=+5.081353633 container died b6598c6a63e0377dff2698500fd1fc12c951fb0a2c500de7b626417de268c8cf (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, org.label-schema.license=GPLv2, io.buildah.version=1.41.3, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, org.opencontainers.image.authors=Ceph Release Team , org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.name=CentOS Stream 9 Base Image) 2026-02-19T11:25:37.541 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61169]: 2026-02-19 11:25:37.279532763 +0000 UTC m=+5.089364364 container remove b6598c6a63e0377dff2698500fd1fc12c951fb0a2c500de7b626417de268c8cf (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, io.buildah.version=1.41.3, org.label-schema.build-date=20260216, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True) 2026-02-19T11:25:37.542 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 bash[61169]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1 2026-02-19T11:25:37.542 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61292]: 2026-02-19 11:25:37.394346873 +0000 UTC m=+0.014640327 container create 835e430d7316074b26bde5447c341ee7623d3542fd5288f025ddfa8656c20fc4 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1-deactivate, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, ceph=True, OSD_FLAVOR=default, io.buildah.version=1.41.3, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.authors=Ceph Release Team ) 2026-02-19T11:25:37.542 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61292]: 2026-02-19 11:25:37.427617305 +0000 UTC m=+0.047910769 container init 835e430d7316074b26bde5447c341ee7623d3542fd5288f025ddfa8656c20fc4 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1-deactivate, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-shraddhaag-cephadm-seastore-support, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3, org.label-schema.build-date=20260216, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, ceph=True) 2026-02-19T11:25:37.542 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61292]: 2026-02-19 11:25:37.430198059 +0000 UTC m=+0.050491523 container start 835e430d7316074b26bde5447c341ee7623d3542fd5288f025ddfa8656c20fc4 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1-deactivate, org.label-schema.license=GPLv2, org.label-schema.schema-version=1.0, OSD_FLAVOR=default, io.buildah.version=1.41.3, org.label-schema.build-date=20260216, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, ceph=True, CEPH_REF=wip-shraddhaag-cephadm-seastore-support) 2026-02-19T11:25:37.542 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61292]: 2026-02-19 11:25:37.43068691 +0000 UTC m=+0.050980374 container attach 835e430d7316074b26bde5447c341ee7623d3542fd5288f025ddfa8656c20fc4 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-1-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, io.buildah.version=1.41.3, ceph=True, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.label-schema.schema-version=1.0, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-19T11:25:37.542 INFO:journalctl@ceph.osd.1.trial010.stdout:Feb 19 11:25:37 trial010 podman[61292]: 2026-02-19 11:25:37.388843488 +0000 UTC m=+0.009136962 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:25:37.593 DEBUG:teuthology.orchestra.run.trial010:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.1.service' 2026-02-19T11:25:37.638 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:37.638 INFO:tasks.cephadm.osd.1:Stopped osd.1 2026-02-19T11:25:37.638 INFO:tasks.cephadm.osd.2:Stopping osd.2... 2026-02-19T11:25:37.638 DEBUG:teuthology.orchestra.run.trial132:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.2 2026-02-19T11:25:37.964 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:37 trial132 systemd[1]: Stopping Ceph osd.2 for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:37.964 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:37 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2[31104]: 2026-02-19T11:25:37.732+0000 7f1a7ffb6640 -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-19T11:25:37.964 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:37 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2[31104]: 2026-02-19T11:25:37.732+0000 7f1a7ffb6640 -1 osd.2 49 *** Got signal Terminated *** 2026-02-19T11:25:37.965 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:37 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2[31104]: 2026-02-19T11:25:37.732+0000 7f1a7ffb6640 -1 osd.2 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-19T11:25:43.126 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 podman[51853]: 2026-02-19 11:25:42.812434075 +0000 UTC m=+5.092625629 container died a121e453863a3cf4002a54d17c02440278cc9bd8b3927127a9977cf2a6ba9ae6 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2, ceph=True, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, OSD_FLAVOR=default, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec) 2026-02-19T11:25:43.126 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 podman[51853]: 2026-02-19 11:25:42.822718008 +0000 UTC m=+5.102909552 container remove a121e453863a3cf4002a54d17c02440278cc9bd8b3927127a9977cf2a6ba9ae6 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, io.buildah.version=1.41.3, FROM_IMAGE=quay.io/centos/centos:stream9, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.opencontainers.image.authors=Ceph Release Team , ceph=True, org.label-schema.build-date=20260216, org.label-schema.schema-version=1.0, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-02-19T11:25:43.126 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 bash[51853]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2 2026-02-19T11:25:43.127 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 podman[51984]: 2026-02-19 11:25:42.960346087 +0000 UTC m=+0.016374082 container create 551a0549656550ef86191e6638109406b8fd74fb4b3527ee76a9858889639af7 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2-deactivate, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.vendor=CentOS, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.license=GPLv2, ceph=True, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, io.buildah.version=1.41.3) 2026-02-19T11:25:43.127 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 podman[51984]: 2026-02-19 11:25:42.995566452 +0000 UTC m=+0.051594447 container init 551a0549656550ef86191e6638109406b8fd74fb4b3527ee76a9858889639af7 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.build-date=20260216, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.name=CentOS Stream 9 Base Image, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, ceph=True, org.label-schema.license=GPLv2, org.opencontainers.image.authors=Ceph Release Team , FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.opencontainers.image.documentation=https://docs.ceph.com/) 2026-02-19T11:25:43.127 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 podman[51984]: 2026-02-19 11:25:42.997941793 +0000 UTC m=+0.053969798 container start 551a0549656550ef86191e6638109406b8fd74fb4b3527ee76a9858889639af7 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2-deactivate, org.label-schema.vendor=CentOS, org.opencontainers.image.documentation=https://docs.ceph.com/, org.opencontainers.image.authors=Ceph Release Team , org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, io.buildah.version=1.41.3, OSD_FLAVOR=default, ceph=True, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-19T11:25:43.127 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:42 trial132 podman[51984]: 2026-02-19 11:25:42.99844577 +0000 UTC m=+0.054473775 container attach 551a0549656550ef86191e6638109406b8fd74fb4b3527ee76a9858889639af7 (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-2-deactivate, org.label-schema.schema-version=1.0, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.build-date=20260216, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, io.buildah.version=1.41.3, OSD_FLAVOR=default, org.label-schema.license=GPLv2, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, FROM_IMAGE=quay.io/centos/centos:stream9, 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=True) 2026-02-19T11:25:43.127 INFO:journalctl@ceph.osd.2.trial132.stdout:Feb 19 11:25:43 trial132 podman[51984]: 2026-02-19 11:25:42.954152024 +0000 UTC m=+0.010180029 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:25:43.154 DEBUG:teuthology.orchestra.run.trial132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.2.service' 2026-02-19T11:25:43.196 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:43.196 INFO:tasks.cephadm.osd.2:Stopped osd.2 2026-02-19T11:25:43.196 INFO:tasks.cephadm.osd.3:Stopping osd.3... 2026-02-19T11:25:43.196 DEBUG:teuthology.orchestra.run.trial132:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.3 2026-02-19T11:25:43.464 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:43 trial132 systemd[1]: Stopping Ceph osd.3 for 3d5d7969-0d85-11f1-8034-d404e6e7d460... 2026-02-19T11:25:43.464 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:43 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3[39199]: 2026-02-19T11:25:43.323+0000 7f50efc3f640 -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-19T11:25:43.465 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:43 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3[39199]: 2026-02-19T11:25:43.323+0000 7f50efc3f640 -1 osd.3 49 *** Got signal Terminated *** 2026-02-19T11:25:43.465 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:43 trial132 ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3[39199]: 2026-02-19T11:25:43.323+0000 7f50efc3f640 -1 osd.3 49 *** Immediate shutdown (osd_fast_shutdown=true) *** 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52117]: 2026-02-19 11:25:48.384214734 +0000 UTC m=+5.071886175 container died 203d5083a2452bf4be9c040fde354b7d58e64ce450dd8d8403066929f74d916c (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3, OSD_FLAVOR=default, org.label-schema.vendor=CentOS, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, ceph=True, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, 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/, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52117]: 2026-02-19 11:25:48.39421257 +0000 UTC m=+5.081884011 container remove 203d5083a2452bf4be9c040fde354b7d58e64ce450dd8d8403066929f74d916c (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3, org.label-schema.name=CentOS Stream 9 Base Image, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.label-schema.build-date=20260216, org.label-schema.license=GPLv2, org.label-schema.vendor=CentOS, ceph=True, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, io.buildah.version=1.41.3, org.opencontainers.image.authors=Ceph Release Team , GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git) 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 bash[52117]: ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52236]: 2026-02-19 11:25:48.527696186 +0000 UTC m=+0.015813179 container create 91b0f5d5f94463aaf2e8232997604ebb8a2178146947600e2520c169639febce (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3-deactivate, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.schema-version=1.0, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, OSD_FLAVOR=default, org.label-schema.name=CentOS Stream 9 Base Image, ceph=True, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, 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.vendor=CentOS, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3) 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52236]: 2026-02-19 11:25:48.556404751 +0000 UTC m=+0.044521744 container init 91b0f5d5f94463aaf2e8232997604ebb8a2178146947600e2520c169639febce (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3-deactivate, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, OSD_FLAVOR=default, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.license=GPLv2, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, ceph=True, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, org.label-schema.build-date=20260216, org.label-schema.name=CentOS Stream 9 Base Image, org.opencontainers.image.documentation=https://docs.ceph.com/, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, FROM_IMAGE=quay.io/centos/centos:stream9, org.label-schema.vendor=CentOS, org.label-schema.schema-version=1.0) 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52236]: 2026-02-19 11:25:48.559001307 +0000 UTC m=+0.047118290 container start 91b0f5d5f94463aaf2e8232997604ebb8a2178146947600e2520c169639febce (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3-deactivate, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.name=CentOS Stream 9 Base Image, org.label-schema.schema-version=1.0, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/, org.opencontainers.image.authors=Ceph Release Team , io.buildah.version=1.41.3, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.vendor=CentOS, OSD_FLAVOR=default, org.label-schema.build-date=20260216, FROM_IMAGE=quay.io/centos/centos:stream9) 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52236]: 2026-02-19 11:25:48.559479135 +0000 UTC m=+0.047596128 container attach 91b0f5d5f94463aaf2e8232997604ebb8a2178146947600e2520c169639febce (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3-deactivate, CEPH_GIT_REPO=https://github.com/ceph/ceph-ci.git, org.label-schema.schema-version=1.0, ceph=True, org.label-schema.license=GPLv2, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.vendor=CentOS, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, org.opencontainers.image.authors=Ceph Release Team , CEPH_REF=wip-shraddhaag-cephadm-seastore-support, org.label-schema.build-date=20260216, OSD_FLAVOR=default, io.buildah.version=1.41.3, org.label-schema.name=CentOS Stream 9 Base Image, FROM_IMAGE=quay.io/centos/centos:stream9, GANESHA_REPO_BASEURL=https://buildlogs.centos.org/centos/$releasever-stream/storage/$basearch/nfsganesha-5/) 2026-02-19T11:25:48.688 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52236]: 2026-02-19 11:25:48.521689996 +0000 UTC m=+0.009806999 image pull 27cd8cc050fe1bfdb61b07020d94f1f65ee9eaf587881422432f9c6dfcacca53 quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef 2026-02-19T11:25:48.689 INFO:journalctl@ceph.osd.3.trial132.stdout:Feb 19 11:25:48 trial132 podman[52236]: 2026-02-19 11:25:48.681524269 +0000 UTC m=+0.169641262 container died 91b0f5d5f94463aaf2e8232997604ebb8a2178146947600e2520c169639febce (image=quay.ceph.io/ceph-ci/ceph@sha256:d8cdebb5ad9d40e85239fe1245500a98e2729b0bf85f9699614980a1a87710ef, name=ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460-osd-3-deactivate, org.opencontainers.image.documentation=https://docs.ceph.com/, org.label-schema.build-date=20260216, org.label-schema.vendor=CentOS, org.label-schema.license=GPLv2, CEPH_REF=wip-shraddhaag-cephadm-seastore-support, ceph=True, CEPH_SHA1=941b42cabfa3c4e4d30b96a58cbe2fa653f560ec, OSD_FLAVOR=default, 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.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/, io.buildah.version=1.41.3) 2026-02-19T11:25:48.724 DEBUG:teuthology.orchestra.run.trial132:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.3.service' 2026-02-19T11:25:48.767 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:48.768 INFO:tasks.cephadm.osd.3:Stopped osd.3 2026-02-19T11:25:48.768 INFO:tasks.cephadm.osd.4:Stopping osd.4... 2026-02-19T11:25:48.768 DEBUG:teuthology.orchestra.run.trial186:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.4 2026-02-19T11:25:48.802 DEBUG:teuthology.orchestra.run.trial186:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.4.service' 2026-02-19T11:25:48.878 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:48.879 INFO:tasks.cephadm.osd.4:Stopped osd.4 2026-02-19T11:25:48.879 INFO:tasks.cephadm.osd.5:Stopping osd.5... 2026-02-19T11:25:48.879 DEBUG:teuthology.orchestra.run.trial186:> sudo systemctl stop ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.5 2026-02-19T11:25:48.951 DEBUG:teuthology.orchestra.run.trial186:> sudo pkill -f 'journalctl -f -n 0 -u ceph-3d5d7969-0d85-11f1-8034-d404e6e7d460@osd.5.service' 2026-02-19T11:25:49.027 DEBUG:teuthology.orchestra.run:got remote process result: None 2026-02-19T11:25:49.028 INFO:tasks.cephadm.osd.5:Stopped osd.5 2026-02-19T11:25:49.028 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 --force --keep-logs 2026-02-19T11:25:49.147 INFO:teuthology.orchestra.run.trial010.stdout:Deleting cluster with fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:25:50.084 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 --force --keep-logs 2026-02-19T11:25:50.204 INFO:teuthology.orchestra.run.trial132.stdout:Deleting cluster with fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:25:51.181 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 --force --keep-logs 2026-02-19T11:25:51.297 INFO:teuthology.orchestra.run.trial186.stdout:Deleting cluster with fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:25:51.573 DEBUG:teuthology.orchestra.run.trial010:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:25:51.600 DEBUG:teuthology.orchestra.run.trial132:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:25:51.627 DEBUG:teuthology.orchestra.run.trial186:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2026-02-19T11:25:51.653 INFO:tasks.cephadm:Archiving crash dumps... 2026-02-19T11:25:51.656 DEBUG:teuthology.misc:Transferring archived files from trial010:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial010/crash 2026-02-19T11:25:51.657 DEBUG:teuthology.orchestra.run.trial010:> sudo tar c -f - -C /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash -- . 2026-02-19T11:25:51.681 INFO:teuthology.orchestra.run.trial010.stderr:tar: /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-19T11:25:51.681 INFO:teuthology.orchestra.run.trial010.stderr:tar: Error is not recoverable: exiting now 2026-02-19T11:25:51.683 DEBUG:teuthology.misc:Transferring archived files from trial132:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial132/crash 2026-02-19T11:25:51.684 DEBUG:teuthology.orchestra.run.trial132:> sudo tar c -f - -C /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash -- . 2026-02-19T11:25:51.710 INFO:teuthology.orchestra.run.trial132.stderr:tar: /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-19T11:25:51.710 INFO:teuthology.orchestra.run.trial132.stderr:tar: Error is not recoverable: exiting now 2026-02-19T11:25:51.712 DEBUG:teuthology.misc:Transferring archived files from trial186:/var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial186/crash 2026-02-19T11:25:51.713 DEBUG:teuthology.orchestra.run.trial186:> sudo tar c -f - -C /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash -- . 2026-02-19T11:25:51.737 INFO:teuthology.orchestra.run.trial186.stderr:tar: /var/lib/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/crash: Cannot open: No such file or directory 2026-02-19T11:25:51.737 INFO:teuthology.orchestra.run.trial186.stderr:tar: Error is not recoverable: exiting now 2026-02-19T11:25:51.738 INFO:tasks.cephadm:Checking cluster log for badness... 2026-02-19T11:25:51.738 DEBUG:teuthology.orchestra.run.trial010:> sudo grep -E '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log | grep -E CEPHADM_ | grep -E -v '\(MDS_ALL_DOWN\)' | grep -E -v '\(MDS_UP_LESS_THAN_MAX\)' | grep -E -v MON_DOWN | grep -E -v 'mons down' | grep -E -v 'mon down' | grep -E -v 'out of quorum' | grep -E -v CEPHADM_STRAY_HOST | grep -E -v CEPHADM_STRAY_DAEMON | grep -E -v CEPHADM_FAILED_DAEMON | grep -E -v OSD_DOWN | grep -E -v OSD_HOST_DOWN | head -n 1 2026-02-19T11:25:51.762 INFO:tasks.cephadm:Compressing logs... 2026-02-19T11:25:51.762 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:25:51.804 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:25:51.806 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:25:51.824 INFO:teuthology.orchestra.run.trial010.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-19T11:25:51.824 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-19T11:25:51.825 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.a.log 2026-02-19T11:25:51.825 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.0.log 2026-02-19T11:25:51.825 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.a.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log 2026-02-19T11:25:51.826 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mgr.a.log 2026-02-19T11:25:51.826 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log 2026-02-19T11:25:51.826 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mgr.a.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log 2026-02-19T11:25:51.826 INFO:teuthology.orchestra.run.trial010.stderr: 83.3% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log.gz 2026-02-19T11:25:51.826 INFO:teuthology.orchestra.run.trial010.stderr: 89.1% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-19T11:25:51.826 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.1.log 2026-02-19T11:25:51.827 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log 2026-02-19T11:25:51.827 INFO:teuthology.orchestra.run.trial010.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.1.log: /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log: 90.4% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log.gz 2026-02-19T11:25:51.827 INFO:teuthology.orchestra.run.trial010.stderr: 84.7% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log.gz 2026-02-19T11:25:51.828 INFO:teuthology.orchestra.run.trial132.stderr:find: ‘/var/log/rbd-target-api’gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-19T11:25:51.828 INFO:teuthology.orchestra.run.trial132.stderr:: No such file or directory 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial186.stderr:find: ‘/var/log/rbd-target-api’: No such file or directory 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial132.stderr:gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.2.log 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.3.log 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial010.stderr: 94.0% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log.gz 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial132.stderr: 90.9% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-19T11:25:51.829 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mgr.b.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial186.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial186.stderr:gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.c.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial186.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.5.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial132.stderr: 83.8% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log.gz 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mgr.b.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.b.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log 2026-02-19T11:25:51.830 INFO:teuthology.orchestra.run.trial186.stderr:gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial186.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.c.log: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial186.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.4.log 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial132.stderr:gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.b.log: /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log: 90.7% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log.gz 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial186.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial186.stderr: 82.8% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.cephadm.log.gz 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial186.stderr:gzip -5 --verbose --/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.4.log: /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log 2026-02-19T11:25:51.831 INFO:teuthology.orchestra.run.trial132.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log: 84.3% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log.gz 2026-02-19T11:25:51.832 INFO:teuthology.orchestra.run.trial186.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log: gzip -5 --verbose -- /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log 2026-02-19T11:25:51.832 INFO:teuthology.orchestra.run.trial132.stderr: 89.6% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mgr.b.log.gz 2026-02-19T11:25:51.832 INFO:teuthology.orchestra.run.trial186.stderr:/var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log: /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log: 90.5% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.audit.log.gz 2026-02-19T11:25:51.832 INFO:teuthology.orchestra.run.trial186.stderr: 82.9% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph.log.gz 2026-02-19T11:25:51.833 INFO:teuthology.orchestra.run.trial132.stderr: 93.9% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log.gz 2026-02-19T11:25:51.834 INFO:teuthology.orchestra.run.trial186.stderr: 93.9% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-volume.log.gz 2026-02-19T11:25:51.841 INFO:teuthology.orchestra.run.trial186.stderr: 92.9% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.5.log.gz 2026-02-19T11:25:51.842 INFO:teuthology.orchestra.run.trial186.stderr: 93.1% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.4.log.gz 2026-02-19T11:25:51.844 INFO:teuthology.orchestra.run.trial010.stderr: 93.6% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.1.log.gz 2026-02-19T11:25:51.847 INFO:teuthology.orchestra.run.trial010.stderr: 93.4% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.0.log.gz 2026-02-19T11:25:51.854 INFO:teuthology.orchestra.run.trial132.stderr: 93.2% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.3.log.gz 2026-02-19T11:25:51.854 INFO:teuthology.orchestra.run.trial186.stderr: 92.5% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.c.log.gz 2026-02-19T11:25:51.855 INFO:teuthology.orchestra.run.trial186.stderr: 2026-02-19T11:25:51.855 INFO:teuthology.orchestra.run.trial186.stderr:real 0m0.034s 2026-02-19T11:25:51.855 INFO:teuthology.orchestra.run.trial186.stderr:user 0m0.053s 2026-02-19T11:25:51.855 INFO:teuthology.orchestra.run.trial186.stderr:sys 0m0.019s 2026-02-19T11:25:51.862 INFO:teuthology.orchestra.run.trial010.stderr: 89.6% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mgr.a.log.gz 2026-02-19T11:25:51.863 INFO:teuthology.orchestra.run.trial132.stderr: 92.5% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.b.log.gz 2026-02-19T11:25:51.867 INFO:teuthology.orchestra.run.trial132.stderr: 93.8% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-osd.2.log.gz 2026-02-19T11:25:51.868 INFO:teuthology.orchestra.run.trial132.stderr: 2026-02-19T11:25:51.868 INFO:teuthology.orchestra.run.trial132.stderr:real 0m0.049s 2026-02-19T11:25:51.868 INFO:teuthology.orchestra.run.trial132.stderr:user 0m0.101s 2026-02-19T11:25:51.868 INFO:teuthology.orchestra.run.trial132.stderr:sys 0m0.021s 2026-02-19T11:25:51.932 INFO:teuthology.orchestra.run.trial010.stderr: 91.4% -- replaced with /var/log/ceph/3d5d7969-0d85-11f1-8034-d404e6e7d460/ceph-mon.a.log.gz 2026-02-19T11:25:51.933 INFO:teuthology.orchestra.run.trial010.stderr: 2026-02-19T11:25:51.933 INFO:teuthology.orchestra.run.trial010.stderr:real 0m0.116s 2026-02-19T11:25:51.933 INFO:teuthology.orchestra.run.trial010.stderr:user 0m0.185s 2026-02-19T11:25:51.933 INFO:teuthology.orchestra.run.trial010.stderr:sys 0m0.024s 2026-02-19T11:25:51.933 INFO:tasks.cephadm:Archiving logs... 2026-02-19T11:25:51.934 DEBUG:teuthology.misc:Transferring archived files from trial010:/var/log/ceph to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial010/log 2026-02-19T11:25:51.935 DEBUG:teuthology.orchestra.run.trial010:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-19T11:25:52.023 DEBUG:teuthology.misc:Transferring archived files from trial132:/var/log/ceph to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial132/log 2026-02-19T11:25:52.023 DEBUG:teuthology.orchestra.run.trial132:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-19T11:25:52.060 DEBUG:teuthology.misc:Transferring archived files from trial186:/var/log/ceph to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial186/log 2026-02-19T11:25:52.061 DEBUG:teuthology.orchestra.run.trial186:> sudo tar c -f - -C /var/log/ceph -- . 2026-02-19T11:25:52.094 INFO:tasks.cephadm:Removing cluster... 2026-02-19T11:25:52.094 DEBUG:teuthology.orchestra.run.trial010:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 --force 2026-02-19T11:25:52.212 INFO:teuthology.orchestra.run.trial010.stdout:Deleting cluster with fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:25:52.381 DEBUG:teuthology.orchestra.run.trial132:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 --force 2026-02-19T11:25:52.498 INFO:teuthology.orchestra.run.trial132.stdout:Deleting cluster with fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:25:52.665 DEBUG:teuthology.orchestra.run.trial186:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 3d5d7969-0d85-11f1-8034-d404e6e7d460 --force 2026-02-19T11:25:52.786 INFO:teuthology.orchestra.run.trial186.stdout:Deleting cluster with fsid: 3d5d7969-0d85-11f1-8034-d404e6e7d460 2026-02-19T11:25:52.942 INFO:tasks.cephadm:Removing cephadm ... 2026-02-19T11:25:52.942 DEBUG:teuthology.orchestra.run.trial010:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-19T11:25:52.961 DEBUG:teuthology.orchestra.run.trial132:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-19T11:25:52.980 DEBUG:teuthology.orchestra.run.trial186:> rm -rf /home/ubuntu/cephtest/cephadm 2026-02-19T11:25:52.998 INFO:tasks.cephadm:Teardown complete 2026-02-19T11:25:52.998 DEBUG:teuthology.run_tasks:Unwinding manager install 2026-02-19T11:25:53.017 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-19T11:25:53.018 DEBUG:teuthology.orchestra.run.trial010:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-19T11:25:53.020 DEBUG:teuthology.orchestra.run.trial132:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-19T11:25:53.023 DEBUG:teuthology.orchestra.run.trial186:> sudo rm -f -- /home/ubuntu/cephtest/valgrind.supp /usr/bin/daemon-helper /usr/bin/adjust-ulimits /usr/bin/stdin-killer 2026-02-19T11:25:53.284 DEBUG:teuthology.run_tasks:Unwinding manager clock 2026-02-19T11:25:53.295 INFO:teuthology.task.clock:Checking final clock skew... 2026-02-19T11:25:53.295 DEBUG:teuthology.orchestra.run.trial010:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-19T11:25:53.296 DEBUG:teuthology.orchestra.run.trial132:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-19T11:25:53.298 DEBUG:teuthology.orchestra.run.trial186:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2026-02-19T11:25:53.310 INFO:teuthology.orchestra.run.trial010.stderr:bash: line 1: ntpq: command not found 2026-02-19T11:25:53.313 INFO:teuthology.orchestra.run.trial132.stderr:bash: line 1: ntpq: command not found 2026-02-19T11:25:53.314 INFO:teuthology.orchestra.run.trial186.stderr:bash: line 1: ntpq: command not found 2026-02-19T11:25:53.332 INFO:teuthology.orchestra.run.trial010.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-19T11:25:53.333 INFO:teuthology.orchestra.run.trial010.stdout:=============================================================================== 2026-02-19T11:25:53.333 INFO:teuthology.orchestra.run.trial010.stdout:^+ lax1.us.ntp.li 2 6 377 34 +277us[ +213us] +/- 39ms 2026-02-19T11:25:53.333 INFO:teuthology.orchestra.run.trial010.stdout:^+ 172-232-15-202.ip.linode> 2 6 377 34 -6152us[-6216us] +/- 76ms 2026-02-19T11:25:53.333 INFO:teuthology.orchestra.run.trial010.stdout:^+ LAX.CALTICK.NET 2 6 377 33 +2315us[+2250us] +/- 36ms 2026-02-19T11:25:53.333 INFO:teuthology.orchestra.run.trial010.stdout:^* ip212-227-240-160.pbiaas> 2 6 377 33 -371us[ -436us] +/- 40ms 2026-02-19T11:25:53.347 INFO:teuthology.orchestra.run.trial186.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-19T11:25:53.347 INFO:teuthology.orchestra.run.trial186.stdout:=============================================================================== 2026-02-19T11:25:53.347 INFO:teuthology.orchestra.run.trial186.stdout:^* pool-138-89-14-60.mad.ea> 1 6 377 98 +8745ns[ +46us] +/- 2911us 2026-02-19T11:25:53.347 INFO:teuthology.orchestra.run.trial186.stdout:^- us-east-2.clearnet.pw 2 6 377 97 +1814us[+1814us] +/- 70ms 2026-02-19T11:25:53.347 INFO:teuthology.orchestra.run.trial186.stdout:^- vps5.drown.org 2 6 377 32 +274us[ +274us] +/- 23ms 2026-02-19T11:25:53.347 INFO:teuthology.orchestra.run.trial186.stdout:^- ntp.maxhost.io 2 6 373 98 +259us[ +297us] +/- 55ms 2026-02-19T11:25:53.369 INFO:teuthology.orchestra.run.trial132.stdout:MS Name/IP address Stratum Poll Reach LastRx Last sample 2026-02-19T11:25:53.369 INFO:teuthology.orchestra.run.trial132.stdout:=============================================================================== 2026-02-19T11:25:53.369 INFO:teuthology.orchestra.run.trial132.stdout:^+ 44.190.5.123 2 6 377 33 +995us[ +995us] +/- 33ms 2026-02-19T11:25:53.369 INFO:teuthology.orchestra.run.trial132.stdout:^+ io.psychotron.org 2 6 377 33 -869us[ -869us] +/- 36ms 2026-02-19T11:25:53.369 INFO:teuthology.orchestra.run.trial132.stdout:^* as393746.mci.trtnw.net 2 6 377 34 -756us[-1052us] +/- 23ms 2026-02-19T11:25:53.369 INFO:teuthology.orchestra.run.trial132.stdout:^+ 216.82.35.115 2 6 377 34 +2639us[+2639us] +/- 32ms 2026-02-19T11:25:53.370 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2026-02-19T11:25:53.381 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2026-02-19T11:25:53.381 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2026-02-19T11:25:53.396 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:25:53.442 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:25:53.488 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:25:53.534 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:25:53.561 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:25:53.561 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:25:53.587 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:25:53.587 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:25:53.614 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:25:53.615 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2026-02-19T11:25:53.631 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2026-02-19T11:25:53.646 INFO:teuthology.task.internal:Duration was 369.881765 seconds 2026-02-19T11:25:53.646 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2026-02-19T11:25:53.661 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2026-02-19T11:25:53.661 DEBUG:teuthology.orchestra.run.trial010:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-19T11:25:53.664 DEBUG:teuthology.orchestra.run.trial132:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-19T11:25:53.667 DEBUG:teuthology.orchestra.run.trial186:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2026-02-19T11:25:53.699 INFO:teuthology.orchestra.run.trial010.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-19T11:25:53.703 INFO:teuthology.orchestra.run.trial132.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-19T11:25:53.704 INFO:teuthology.orchestra.run.trial186.stderr:Redirecting to /bin/systemctl restart rsyslog.service 2026-02-19T11:25:54.068 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2026-02-19T11:25:54.069 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial010.front.sepia.ceph.com 2026-02-19T11:25:54.069 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:25:54.126 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial132.front.sepia.ceph.com 2026-02-19T11:25:54.127 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:25:54.148 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@trial186.front.sepia.ceph.com 2026-02-19T11:25:54.148 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:25:54.168 INFO:teuthology.task.internal.syslog:Gathering journactl... 2026-02-19T11:25:54.169 DEBUG:teuthology.orchestra.run.trial010:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-19T11:25:54.171 DEBUG:teuthology.orchestra.run.trial132:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-19T11:25:54.190 DEBUG:teuthology.orchestra.run.trial186:> sudo journalctl > /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-19T11:25:54.281 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2026-02-19T11:25:54.281 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:25:54.284 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:25:54.286 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:25:54.304 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:25:54.306 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:25:54.306 INFO:teuthology.orchestra.run.trial010.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-19T11:25:54.306 INFO:teuthology.orchestra.run.trial010.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-19T11:25:54.306 INFO:teuthology.orchestra.run.trial010.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-19T11:25:54.308 INFO:teuthology.orchestra.run.trial132.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:25:54.309 INFO:teuthology.orchestra.run.trial132.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:25:54.309 INFO:teuthology.orchestra.run.trial132.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-19T11:25:54.309 INFO:teuthology.orchestra.run.trial132.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-19T11:25:54.309 INFO:teuthology.orchestra.run.trial132.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-19T11:25:54.311 INFO:teuthology.orchestra.run.trial186.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/misc.log 2026-02-19T11:25:54.312 INFO:teuthology.orchestra.run.trial186.stderr:gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/kern.log 2026-02-19T11:25:54.312 INFO:teuthology.orchestra.run.trial186.stderr:/home/ubuntu/cephtest/archive/syslog/misc.log: gzip -5 --verbose -- /home/ubuntu/cephtest/archive/syslog/journalctl.log 2026-02-19T11:25:54.312 INFO:teuthology.orchestra.run.trial186.stderr: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/misc.log.gz 2026-02-19T11:25:54.312 INFO:teuthology.orchestra.run.trial186.stderr:/home/ubuntu/cephtest/archive/syslog/kern.log: 0.0% -- replaced with /home/ubuntu/cephtest/archive/syslog/kern.log.gz 2026-02-19T11:25:54.317 INFO:teuthology.orchestra.run.trial132.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.5% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-19T11:25:54.320 INFO:teuthology.orchestra.run.trial010.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.9% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-19T11:25:54.321 INFO:teuthology.orchestra.run.trial186.stderr:/home/ubuntu/cephtest/archive/syslog/journalctl.log: 89.8% -- replaced with /home/ubuntu/cephtest/archive/syslog/journalctl.log.gz 2026-02-19T11:25:54.323 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2026-02-19T11:25:54.339 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2026-02-19T11:25:54.340 DEBUG:teuthology.orchestra.run.trial010:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-19T11:25:54.387 DEBUG:teuthology.orchestra.run.trial132:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-19T11:25:54.413 DEBUG:teuthology.orchestra.run.trial186:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2026-02-19T11:25:54.439 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2026-02-19T11:25:54.456 DEBUG:teuthology.orchestra.run.trial010:> 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-19T11:25:54.459 DEBUG:teuthology.orchestra.run.trial132:> 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-19T11:25:54.462 DEBUG:teuthology.orchestra.run.trial186:> 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-19T11:25:54.481 INFO:teuthology.orchestra.run.trial010.stdout:kernel.core_pattern = core 2026-02-19T11:25:54.483 INFO:teuthology.orchestra.run.trial132.stdout:kernel.core_pattern = core 2026-02-19T11:25:54.505 INFO:teuthology.orchestra.run.trial186.stdout:kernel.core_pattern = core 2026-02-19T11:25:54.519 DEBUG:teuthology.orchestra.run.trial010:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-19T11:25:54.551 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:25:54.551 DEBUG:teuthology.orchestra.run.trial132:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-19T11:25:54.567 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:25:54.567 DEBUG:teuthology.orchestra.run.trial186:> test -e /home/ubuntu/cephtest/archive/coredump 2026-02-19T11:25:54.582 DEBUG:teuthology.orchestra.run:got remote process result: 1 2026-02-19T11:25:54.583 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2026-02-19T11:25:54.600 INFO:teuthology.task.internal:Transferring archived files... 2026-02-19T11:25:54.601 DEBUG:teuthology.misc:Transferring archived files from trial010:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial010 2026-02-19T11:25:54.602 DEBUG:teuthology.orchestra.run.trial010:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-19T11:25:54.637 DEBUG:teuthology.misc:Transferring archived files from trial132:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial132 2026-02-19T11:25:54.637 DEBUG:teuthology.orchestra.run.trial132:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-19T11:25:54.670 DEBUG:teuthology.misc:Transferring archived files from trial186:/home/ubuntu/cephtest/archive to /home/teuthworker/mnt/teuthology/shraddhaag-2026-02-19_09:54:34-orch:cephadm-main-distro-default-trial/58004/remote/trial186 2026-02-19T11:25:54.671 DEBUG:teuthology.orchestra.run.trial186:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2026-02-19T11:25:54.704 INFO:teuthology.task.internal:Removing archive directory... 2026-02-19T11:25:54.705 DEBUG:teuthology.orchestra.run.trial010:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-19T11:25:54.707 DEBUG:teuthology.orchestra.run.trial132:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-19T11:25:54.710 DEBUG:teuthology.orchestra.run.trial186:> rm -rf -- /home/ubuntu/cephtest/archive 2026-02-19T11:25:54.754 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2026-02-19T11:25:54.773 INFO:teuthology.task.internal:Not uploading archives. 2026-02-19T11:25:54.773 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2026-02-19T11:25:54.789 INFO:teuthology.task.internal:Tidying up after the test... 2026-02-19T11:25:54.790 DEBUG:teuthology.orchestra.run.trial010:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-19T11:25:54.792 DEBUG:teuthology.orchestra.run.trial132:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-19T11:25:54.795 DEBUG:teuthology.orchestra.run.trial186:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2026-02-19T11:25:54.808 INFO:teuthology.orchestra.run.trial010.stdout: 917521 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 11:25 /home/ubuntu/cephtest 2026-02-19T11:25:54.810 INFO:teuthology.orchestra.run.trial132.stdout: 917572 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 11:25 /home/ubuntu/cephtest 2026-02-19T11:25:54.812 INFO:teuthology.orchestra.run.trial186.stdout: 917521 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 19 11:25 /home/ubuntu/cephtest 2026-02-19T11:25:54.813 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2026-02-19T11:25:54.830 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2026-02-19T11:25:54.866 INFO:teuthology.run:Summary data: description: orch:cephadm/workunits/{0-distro/centos_9.stream agent/off mon_election/classic task/test_host_drain} duration: 369.88176465034485 flavor: default owner: scheduled_shraddhaag@soko04.front.sepia.ceph.com success: true 2026-02-19T11:25:54.866 DEBUG:teuthology.report:Pushing job info to https://paddles-paddles.apps.pok.os.sepia.ceph.com 2026-02-19T11:25:54.991 INFO:teuthology.run:pass